Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add find variable -icons to designer tool markup #299

Merged
merged 1 commit into from
Dec 1, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 25 additions & 8 deletions lib/app/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -969,28 +969,45 @@ $mobile: new-breakpoint(max-width 480px);
// <h3>All variables</h3>
// <ul>
// <li>
// <label>normal-variable</label>
// <label>
// <a class="sg" href="#" title="find where normal-variable is used">
// normal-variable
// <i class="fa fa-eye"></i>
// </a>
// </label>
// <input class="sg" type="text" value="30px">
// </li>
// <li>
// <label>color-variable1</label>
// <label>
// <a class="sg" href="#" title="find where color-variable is used">
// color-variable
// <i class="fa fa-eye"></i>
// </a>
// </label>
// <input class="sg" type="color" value="#FF0000">
// <input class="sg" type="text" value="#FF0000">
// </li>
// <li>
// <label>color-variable2</label>
// <label>
// <a class="sg" href="#" title="find where color-variable2 is used">
// color-variable2
// <i class="fa fa-eye"></i>
// </a>
// </label>
// <input class="sg" type="color" value="#00FF00">
// <input class="sg" type="text" value="#00FF00">
// </li>
// <li>
// <label>unsaved-color-variable<i class="fa fa-asterisk"></i></label>
// <label>
// <a class="sg" href="#" title="find where unsaved-color-variable is used">
// unsaved-color-variable
// <i class="fa fa-eye"></i>
// </a>
// <i class="fa fa-asterisk"></i>
// </label>
// <input class="sg" type="color" value="#0000FF">
// <input class="sg" type="text" value="#0000FF">
// </li>
// <li>
// <label>variable related section icon <i class="fa fa-eye"></i></label>
// <input class="sg" type="text" placeholder="mouse over the eye">
// </li>
// </ul>
// </div>
//
Expand Down