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