| 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:$5; | 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: $8; | 12 color: $8; |
| 13 height:100%; | 13 height:100%; |
| 14 overflow:auto; | 14 overflow:auto; |
| 15 } | 15 } |
| 16 #main { | 16 #main { |
| 17 background: url(chrome://theme/product_logo?$1) no-repeat 0 8px; | 17 background: url(chrome://theme/product_logo?$1) no-repeat 0 8px; |
| 18 } | 18 } |
| 19 .thumbnail { |
| 20 border-color: $$1; /* COLOR_NTP_SECTION */ |
| 21 } |
| 19 .thumbnail-container, | 22 .thumbnail-container, |
| 20 .list > .thumbnail-container > .title, | 23 .list > .thumbnail-container > .title, |
| 21 .list .title > div, | 24 .list .title > div, |
| 22 .thumbnail-container > .title { | 25 .thumbnail-container > .title { |
| 23 color: $8; | 26 color: $9; |
| 24 } | 27 } |
| 25 .thumbnail-container:focus .thumbnail, | 28 .thumbnail-container:focus .thumbnail, |
| 26 .thumbnail-container:hover .thumbnail { | 29 .thumbnail-container:hover .thumbnail { |
| 27 border-color: $6; | 30 border-color: $6; |
| 28 } | 31 } |
| 29 .thumbnail-container:focus .edit-bar, | 32 .thumbnail-container:focus .edit-bar, |
| 30 .thumbnail-container:hover .edit-bar { | 33 .thumbnail-container:hover .edit-bar { |
| 31 background-color: $6; | 34 background-color: $6; |
| 32 background-image: -webkit-gradient(linear, left top, left bottom, | 35 background-image: -webkit-gradient(linear, left top, left bottom, |
| 33 from($7), | 36 from($7), |
| 34 to($6)); | 37 to($6)); |
| 35 } | 38 } |
| 36 .thumbnail-container:hover > .edit-mode-border { | 39 .thumbnail-container:hover > .edit-mode-border { |
| 37 background-color: $6; | 40 background-color: $6; |
| 38 } | 41 } |
| 39 | 42 |
| 40 #view-toolbar > input { | 43 #view-toolbar > input { |
| 41 background-color: $7; | 44 background-color: $7; |
| 42 -webkit-mask-image: url(chrome://theme/newtab_menu_mask); | 45 -webkit-mask-image: url(chrome://theme/newtab_menu_mask); |
| 43 } | 46 } |
| 44 #option-menu > [selected] { | 47 #option-menu > [selected] { |
| 45 background-color: $7; | 48 background-color: $7; |
| 46 color: white; | 49 color: white; |
| 47 } | 50 } |
| 48 .tips-title { | 51 |
| 49 color: $$1; | 52 #recently-closed { |
| 53 border-color: $$2; /* color_section_border */ |
| 54 background-color: $$1; /* COLOR_NTP_SECTION */ |
| 55 color: $$3; /* COLOR_NTP_SECTION_TEXT */ |
| 50 } | 56 } |
| 51 | 57 #recently-closed span, |
| 52 /* TODO(arv): The theme does not have the thumbnail outline color in non hover | 58 #recently-closed a, |
| 53 mode | 59 #recently-closed a:link { |
| 54 #recently-closed { | 60 color: $$4; /* COLOR_NTP_SECTION_LINK */ |
| 55 border-color: | 61 text-decoration:underline; |
| 56 background-color: | |
| 57 } | 62 } |
| 58 */ | |
| OLD | NEW |