This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert CSS files to SCSS in order to better structure the stylesheets and remove duplicate code.
- Loading branch information
Showing
13 changed files
with
254 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
@import "mixins"; | ||
@import "variables"; | ||
|
||
tags-input .autocomplete { | ||
margin-top: 5px; | ||
position: absolute; | ||
padding: 5px 0; | ||
z-index: $suggestion-box-z-index; | ||
width: $suggestion-box-width; | ||
background-color: $suggestion-box-color; | ||
border: $suggestion-box-border; | ||
@include box-shadow($suggestion-box-shadow); | ||
|
||
.suggestion-list { | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
} | ||
|
||
.suggestion-item { | ||
padding: 5px 10px; | ||
cursor: pointer; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
font: $suggestion-font; | ||
color: $suggestion-color; | ||
background-color: $suggestion-bgcolor; | ||
|
||
&.selected { | ||
color: $suggestion-color-selected; | ||
background-color: $suggestion-bgcolor-selected; | ||
|
||
em { | ||
color: $suggestion-highlight-color-selected; | ||
background-color: $suggestion-highlight-bgcolor-selected; | ||
} | ||
} | ||
|
||
em { | ||
font: $suggestion-highlight-font; | ||
color: $suggestion-highlight-color; | ||
background-color: $suggestion-highlight-bgcolor; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
tags-input *, *:before, *:after { | ||
-moz-box-sizing: border-box; | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
tags-input { | ||
.host { | ||
position: relative; | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
|
||
&:active { | ||
outline: none; | ||
} | ||
} | ||
} | ||
|
||
@import "tags-input"; | ||
@import "auto-complete"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@mixin gradient($steps...) { | ||
background: -webkit-linear-gradient(top, $steps); | ||
background: linear-gradient(to bottom, $steps); | ||
} | ||
|
||
@mixin box-shadow($args...) { | ||
-webkit-box-shadow: $args; | ||
-moz-box-shadow: $args; | ||
box-shadow: $args; | ||
} |
Oops, something went wrong.