This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
/
options.css
135 lines (123 loc) · 2.51 KB
/
options.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
/* Common styles? */
body, td, div {
font-size: 14px;
font-family: "Helvetica Neue", Arial, sans-serif;
color: #212F40;
}
.close-x {
display: block;
cursor: pointer;
width: 14px;
height: 14px;
background-image: url(sprite.png);
background-position: 0px -100px;
background-repeat: no-repeat;
}
.close-x:hover {
background-position: -50px -100px;
}
.button {
border-radius: 3px 3px 3px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
box-shadow: inset 0px -1px rgba(0,0,0,0.12);
-webkit-box-shadow: inset 0px -1px rgba(0,0,0,0.12);
display:inline-block;
padding: 4px 10px 5px;
font-size: 14px;
font-weight: 600;
line-height: 100%;
white-space: nowrap;
cursor: pointer;
text-align: center;
}
.button .button-text {
display: inline-block;
}
.primary-button {
color: white;
text-shadow: 0px -1px #114D97;
border: 1px solid #114D97;
background-color: #1F8DD6;
background-image: -webkit-gradient(linear,left top,left bottom,from(#74C1ED), color-stop(10%, #1F8DD6));
}
.primary-button:hover {
background-color: #1F8DD6;
background-image: -webkit-gradient(linear,left top,left bottom,from(#74C1ED), color-stop(100%, #1F8DD6));
border: 1px solid #114D97;
}
.primary-button:hover .button-text {
color: white;
text-shadow: 0px -1px #114D97;
}
.primary-button:focus {
box-shadow: 0px 0px 6px 3px rgba(31,141,214,0.3);
-webkit-box-shadow: 0px 0px 6px 3px rgba(31,141,214,0.3);
outline: none;
}
.primary-button.disabled, .primary-button.disabled:hover {
background: #F2F2F2;
border-color: #CCCCCC;
outline: none;
box-shadow: none;
-webkit-box-shadow: none;
}
.primary-button.disabled .button-text, .primary-button.disabled:hover .button-text {
color: #999999;
text-shadow: none;
}
a:link, a:visited {
color: #1F8DD6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Styles for options.html */
body {
padding: 0;
margin: 0;
background-color: #DDE4EA;
}
body, td, div {
font-size: 13px;
}
#layout {
width: 100%;
}
#options {
width: 600px;
min-width: 600px;
max-width: 600px;
}
#status {
height: 30px;
}
.v-spacer {
height: 100px;
}
.form {
border: 0;
margin: 0;
padding: 0;
}
td.field-name {
width: 150px;
padding: 2px 2px 2px 0;
vertical-align: top;
}
td.field-value {
padding: 2px 0 2px 2px;
vertical-align: top;
}
td.field-notes {
font-size: 11px;
margin-top: 12px;
padding: 2px 0 2px 2px;
vertical-align: top;
}
td.field-spacer {
height: 12px;
}
#reset_button {
margin-left: 10px;
}