Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeInnes committed May 24, 2014
1 parent dfcda9b commit cf99c3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions css/dark-autocomplete.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ div.Codemirror-hints {
color: inherit; }
div.Codemirror-hints ul li.selected {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #12355c), color-stop(50%, #185282), color-stop(51%, #134979), color-stop(100%, #1e5daa));
/* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,93,170,1)), color-stop(100%,rgba(18,53,92,1))); */
color: white; }
div.Codemirror-hints ul li.selected em {
font-weight: bold;
Expand Down
6 changes: 5 additions & 1 deletion sass/dark-autocomplete.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ div.Codemirror-hints {
}

&.selected {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(18,53,92,1)), color-stop(50%,rgba(24,82,130,1)), color-stop(51%,rgba(19,73,121,1)), color-stop(100%,rgba(30,93,170,1)));
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(18,53,92,1)),
color-stop(50%,rgba(24,82,130,1)),
color-stop(51%,rgba(19,73,121,1)),
color-stop(100%,rgba(30,93,170,1)));
/* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,93,170,1)), color-stop(100%,rgba(18,53,92,1))); */
color: white;

em {
Expand Down

0 comments on commit cf99c3e

Please sign in to comment.