forked from mac-cain13/xdebug-helper-for-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
executable file
·144 lines (119 loc) · 2.07 KB
/
options.css
File metadata and controls
executable file
·144 lines (119 loc) · 2.07 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Base styles */
html,
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 14px;
line-height: 1.4em;
background-color: #e2e1e0;
}
::selection {
background: #4285f4;
color: #fff;
text-shadow: none;
}
a {
text-decoration: none;
color: #4285f4;
}
/* Fade transition */
.fade {
opacity: 0;
transition: opacity .15s linear;
}
.fade.show {
opacity: 1;
}
/* Page styles */
.contentTxt {
margin-bottom: 5px;
}
#heading {
background-color: #4285f4;
margin: -20px -20px 20px;
color: #ffffff;
padding: 20px;
}
.inlineicon {
vertical-align: bottom;
width: 16px;
height: 16px;
}
#content, #footer {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
#content {
background: #fff;
border-radius: 2px;
padding: 20px;
position: relative;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
#footer {
border-top: 1px solid #cccccc;
padding: 20px;
margin: 0 -20px;
}
#footer img {
margin-right: -7px;
}
.hint {
display: inline-block;
margin: 10px 0;
color: #ffffff;
padding: 10px;
background-color: #4285f4;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}
.hint img {
vertical-align: bottom;
}
.contribute {
font-size: 10px;
color: #808080;
float: left;
text-decoration: none;
}
.contribute span {
text-decoration: underline;
}
.color--green {
color: #4CAF50;
}
.color--blue {
color: #039BE5;
}
.color--deep-purple {
color: #673AB7;
}
.color--gray {
color: #6D6D6D;
}
/* Icon indicators for options page */
.icon-indicator {
display: inline-block;
width: 16px;
height: 16px;
margin-right: 8px;
vertical-align: text-bottom;
border-radius: 50%;
}
.icon-green {
background-color: #4CAF50;
}
.icon-blue {
background-color: #039BE5;
}
.icon-purple {
background-color: #673AB7;
}
.icon-gray {
background-color: #6D6D6D;
}
/* Disable Popup */
.disable-popup-saved {
color: #5cb85c;
font-weight: bold;
margin-left: 5px;
}