OLD | NEW |
1 html { | 1 html { |
2 background-image:url(chrome://theme/theme_ntp_background?$1); | 2 background-image:url(chrome://theme/theme_ntp_background?$1); |
3 background-color:$2; | 3 background-color:$2; |
4 background-position:$3; | 4 background-position:$3; |
5 background-repeat:$$1; | 5 background-repeat:$5; |
6 overflow:hidden; | 6 overflow:hidden; |
7 } | 7 } |
8 html[bookmarkbarattached='true'] { | 8 html[bookmarkbarattached='true'] { |
9 background-position:$4; | 9 background-position:$4; |
10 } | 10 } |
11 body { | 11 body { |
12 color: $5; | 12 color: $8; |
13 height:100%; | 13 height:100%; |
14 overflow:auto; | 14 overflow:auto; |
15 } | 15 } |
16 a { | 16 .thumbnail-container, |
17 color: $6; | 17 .list > .thumbnail-container > .title, |
18 } | 18 .thumbnail-container > .title { |
19 .sidebar.themed { | |
20 background-color: $7; | |
21 color: $8; | 19 color: $8; |
22 } | 20 } |
23 .sidebar.themed a { | 21 .thumbnail-container:focus .thumbnail, |
24 color: $9; | 22 .thumbnail-container:hover .thumbnail { |
| 23 border-color: $6; |
| 24 } |
| 25 .thumbnail-container:focus .edit-bar, |
| 26 .thumbnail-container:hover .edit-bar { |
| 27 background-color: $6; |
| 28 background-image: -webkit-gradient(linear, left top, left bottom, |
| 29 from($7), |
| 30 to($6)); |
| 31 } |
| 32 .thumbnail-container:hover > .edit-mode-border { |
| 33 background-color: $6; |
| 34 } |
| 35 :visited, |
| 36 .link { |
| 37 cursor: pointer; |
| 38 text-decoration: underline; |
| 39 color: $8; |
| 40 } |
| 41 .edit-mode-border { |
| 42 background-color: $7; |
| 43 } |
| 44 .section { |
| 45 border: 1px solid $7; |
| 46 } |
| 47 .section > h2 { |
| 48 background-color: $7; |
| 49 background-image: -webkit-gradient(linear, left top, left bottom, |
| 50 from($7), |
| 51 to($6)); |
| 52 color: $$1; |
| 53 } |
| 54 #view-toolbar input { |
| 55 background-color: $7; |
| 56 -webkit-mask-image: url(chrome://theme/newtab_menu_mask); |
| 57 } |
| 58 #option-menu > [selected] { |
| 59 background-color: $7; |
| 60 color: white; |
| 61 } |
| 62 .tips-title { |
| 63 color: $$1; |
25 } | 64 } |
OLD | NEW |