-
Notifications
You must be signed in to change notification settings - Fork 0
/
grep_for.txt
44 lines (31 loc) · 1.01 KB
/
grep_for.txt
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
# chrome.pak
# chrome.dll
grep 'IDR_THEME_NTP_BACKGROUND?$1' *
grep '.dot .selection-bar' *
grep '.dot.selected .selection-bar' *
background:
html {
=> background-size: contain;
background-size: cover;;
footer:
#footer {
background-image: -webkit-linear-gradient(
# #rgba(242, 242, 242, 0.9), rgba(222, 222, 222, 0.9)
=> rgba(242, 242, 242, 0.15), rgba(222, 222, 222, 0.15));
.dot .selection-bar {
# #border-color: rgba(0, 0, 0, 0.1)
=> border-color: rgba(0, 0, 0, 0.07);
.dot.selected .selection-bar
# #border-color: #7f7f7f;
=> border-color: rgba(127, 127, 127, 0.18);
.dot:focus input,
.dot:hover input,
.dot.selected input {
color: #7f7f7f;
}
.dot:focus .selection-bar,
.dot:hover .selection-bar,
.dot.drag-target .selection-bar {
# #border-color: #b2b2b2;
=> border-color: #121212;
}