-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconex-options-ui.css
150 lines (124 loc) · 3.16 KB
/
conex-options-ui.css
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
145
146
147
148
149
150
/* remove body when https://bugzilla.mozilla.org/show_bug.cgi?id=1382953 is fixed */
body {
font-family: Helvetica, Arial, sans-serif;
padding: 5em;
}
p, h1, label {
-moz-user-select: text;
}
#missing-tab-container-support {
display: none;
}
#missing-tab-container-support h1 {
color: red;
}
input[type="file"] {
display: none;
}
.custom-file-upload {
display: inline;
padding: 6px 12px;
cursor: pointer;
border: solid 1px rgb(229, 229, 232);
}
li {
list-style: none;
margin-top: 0.7em;
}
.custom-file-upload:hover, .custom-file-upload:focus {
background-color: rgb(235, 235, 235);
}
tt {
font-size: large;
background-color:rgb(240,240,240);
}
.keys.keyboard-shortcut-help {
font-size: smaller;
color: gray;
text-align: center;
margin-right: 0px;
}
input.keyboard-shortcut {
font-family: monospace;
cursor: pointer;
font-size: large;
border: 2px solid black;
padding: 4px;
background-color: rgb(240,240,240);
}
input.keyboard-shortcut:focus {
background-color: lightpink;
}
.keys {
width: 12em;
display: inline-block;
margin-right: 1em;
}
h2 {
border-top: 1px solid rgb(232, 232, 234);
padding-top: 1em;
width: 100%;
margin-top: 2em;
font-weight: 100;
}
h3 {
font-weight: 100;
text-decoration: underline;
}
.option-toggle {
position: absolute;
margin-left: -9999px;
visibility: hidden;
}
.option-toggle+label {
display: inline-block;
position: relative;
cursor: pointer;
outline: none;
user-select: none;
}
input.option-toggle-round+label {
padding: 2px;
margin: 0.5em 0 0 0;
width: 2em;
height: 1em;
background-color: #dddddd;
border-radius: 1em;
}
input.option-toggle-round+label:before, input.option-toggle-round+label:after {
display: block;
position: absolute;
top: 1px;
left: 1px;
bottom: 1px;
content: "";
}
input.option-toggle-round+label:before {
right: 1px;
background-color: #f1f1f1;
border-radius: 1em;
transition: background 0.4s;
}
input.option-toggle-round+label:after {
width: 1em;
/* change to 0.65em when moving settings back to about:addons page ... currently blocked by https://bugzilla.mozilla.org/show_bug.cgi?id=1382953 */
background-color: #fff;
border-radius: 100%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
transition: margin 0.4s;
}
input.option-toggle-round:checked+label:before {
background-color: #8ce196;
}
input.option-toggle-round:checked+label:after {
margin-left: 1.15em;
}
.checkbox-label {
padding-left: 1em;
}
em {
font-weight: bold;
}
#moving-tabs-explanation {
margin-top: 30em;
}