summaryrefslogtreecommitdiff
path: root/skins/Vector/skinStyles/jquery.ui/jquery.ui.button.css
blob: 8c2286d1272785b2c86bc80fdc371961e7371da2 (plain)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/* Button
----------------------------------*/

.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	margin-right: .1em;
	text-decoration: none !important;
	cursor: pointer;
	text-align: center;
	zoom: 1;
	overflow: visible; /* the overflow property removes extra width in IE */
}

/*button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: 1.4;
	text-shadow: 0 1px 1px #fff;
}
.ui-button-text-only .ui-button-text {
	padding: 0.3em 1em 0.25em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: 0.3em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: 0.3em 1em 0.25em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: 0.3em 2.1em 0.25em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: 0.3em 1em;
}

/*button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-text-icon .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -9px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icon .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: 0.5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icon .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: 0.5em;
}

/*button sets*/
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.4em;
}

/* workarounds */
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0; /* reset extra padding in Firefox */
}
/* Disables the annoying dashed border Firefox puts on active buttons */
body button.ui-button::-moz-focus-inner {
	border: 0;
}
/* Give large buttons some extra padding */
body .ui-button-large {
	padding: 5px;
}
/* Use white icons for colored buttons */
.ui-button-green .ui-icon,
.ui-button-blue .ui-icon,
.ui-button-red .ui-icon,
.ui-button-orange .ui-icon {
	/* @embed */
	background-image: url(images/ui-icons_ffffff_256x240.png) !important;
}

/* Corner radius */
/* This is normally handled in jquery.ui.theme.css, but in our case, the corner
   styling of our buttons doesn't match our default widget corner styling */
.ui-button.ui-corner-all,
.ui-button.ui-corner-top,
.ui-button.ui-corner-left,
.ui-button.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-button.ui-corner-all,
.ui-button.ui-corner-top,

.ui-button.ui-corner-right,
.ui-button.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-button.ui-corner-all,
.ui-button.ui-corner-bottom,
.ui-button.ui-corner-left,
.ui-button.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-button.ui-corner-all,
.ui-button.ui-corner-bottom,
.ui-button.ui-corner-right,
.ui-button.ui-corner-br {
	border-bottom-right-radius: 4px;
}

body .ui-button {
	color: #2779aa;
	margin: 0.5em 0 0.5em 0.4em;
	border: 1px solid #aaa !important;
	background: #f0f0f0 !important;
	background: -moz-linear-gradient(top, #fff 0%, #ddd 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #fff 0%, #ddd 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%, #ddd 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%, #ddd 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%, #ddd 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd', GradientType=0); /* IE6-8 */
	cursor: pointer;
	font-size: 1em;
	line-height: 1.4em;
	width: auto;
	overflow: visible;
	box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

body .ui-button-icon-only {
	width: 2.2em;
}

body .ui-button-icons-only {
	width: 3.4em;
}

body .ui-button:hover {
	color: #2779aa;
	border-color: #bbb !important;
	background: #fff !important;
	background: -moz-linear-gradient(top, #fff 0%, #eee 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #fff 0%, #eee 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #fff 0%, #eee 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff 0%, #eee 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #fff 0%, #eee 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
body .ui-button:active,
body .ui-button:focus {
	border-color: #8ad !important;
	box-shadow: 0 0 1px 1px rgba(167,215,249,.5);
}
body .ui-button:active {
	background: #e0e0e0 !important;
	background: -moz-linear-gradient(top, #f0f0f0 0%, #d0d0d0 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #f0f0f0 0%, #d0d0d0 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #f0f0f0 0%, #d0d0d0 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f0f0f0 0%, #d0d0d0 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #f0f0f0 0%, #d0d0d0 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0f0f0', endColorstr='#d0d0d0', GradientType=0); /* IE6-8 */
}

/* Green buttons */
body .ui-button-green,
body .ui-button-green .ui-button-text {
	color: white;
	text-shadow: 0 -1px 1px #072;
}
body .ui-button.ui-button-green {
	border-color: #294 !important;
	background: #295 !important;
	background: -moz-linear-gradient(top, #3c8 0%, #295 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #3c8 0%, #295 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #3c8 0%, #295 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #3c8 0%, #295 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #3c8 0%, #295 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33cc88', endColorstr='#229955', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
body .ui-button.ui-button-green:hover {
	background: #33a055 !important;
	background: -moz-linear-gradient(top, #44d388 0%, #33a055 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #44d388 0%, #33a055 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #44d388 0%, #33a055 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #44d388 0%, #33a055 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #44d388 0%, #33a055 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44d388', endColorstr='#33a055', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
body .ui-button.ui-button-green:active,
body .ui-button.ui-button-green:focus {
	border-color: #172 !important;
	box-shadow: 0 0 2px 2px rgba(167,215,249,.75);
}
body .ui-button.ui-button-green:active {
	background: #338855 !important;
	background: -moz-linear-gradient(top, #30c080 0%, #338855 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #30c080 0%, #338855 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #30c080 0%, #338855 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #30c080 0%, #338855 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #30c080 0%, #338855 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30c080', endColorstr='#338855', GradientType=0); /* IE6-8 */
}

/* Blue buttons */
body .ui-button-blue,
body .ui-button-blue .ui-button-text {
	color: white;
	text-shadow: 0 -1px 1px #037;
}
body .ui-button.ui-button-blue {
	border-color: #468 !important;
	background: #36b !important;
	background: -moz-linear-gradient(top, #48e 0%, #36b 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #48e 0%, #36b 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #48e 0%, #36b 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #48e 0%, #36b 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #48e 0%, #36b 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4488ee', endColorstr='#3366bb', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,.35);
}
body .ui-button.ui-button-blue:hover {
	background: #36c !important;
	background: -moz-linear-gradient(top, #59e 0%, #36c 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #59e 0%, #36c 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #59e 0%, #36c 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #59e 0%, #36c 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #59e 0%, #36c 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5599ee', endColorstr='#3366cc', GradientType=0); /* IE6-8 */
}
body .ui-button.ui-button-blue:active,
body .ui-button.ui-button-blue:focus {
	border-color: #357 !important;
	box-shadow: 0 0 2px 2px rgba(167,215,249,.75);
}
body .ui-button.ui-button-blue:active {
	background: #3060a0 !important;
	background: -moz-linear-gradient(top, #4080e0 0%, #3060a0 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #4080e0 0%, #3060a0 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #4080e0 0%, #3060a0 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #4080e0 0%, #3060a0 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #4080e0 0%, #3060a0 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4080e0', endColorstr='#3060a0', GradientType=0); /* IE6-8 */
}

/* Red buttons */
body .ui-button-red,
body .ui-button-red .ui-button-text {
	color: white;
	text-shadow: 0 -1px 1px #700;
}
body .ui-button.ui-button-red {
	border-color: #944 !important;
	background: #a22 !important;
	background: -moz-linear-gradient(top, #d44 0%, #a22 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #d44 0%, #a22 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #d44 0%, #a22 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #d44 0%, #a22 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #d44 0%, #a22 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dd4444', endColorstr='#aa2222', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,.35);
}
body .ui-button.ui-button-red:hover {
	border-color: #a44 !important;
	background: #b03333 !important;
	background: -moz-linear-gradient(top, #ee4646 0%, #b03333 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #ee4646 0%, #b03333 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #ee4646 0%, #b03333 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ee4646 0%, #b03333 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #ee4646 0%, #b03333 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee4646', endColorstr='#b03333', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
body .ui-button.ui-button-red:active,
body .ui-button.ui-button-red:focus {
	border-color: #747 !important;
	box-shadow: 0 0 2px 2px rgba(167,215,249,.7);
}
body .ui-button.ui-button-red:active {
	background: #952020 !important;
	background: -moz-linear-gradient(top, #d04545 0%, #952020 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #d04545 0%, #952020 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #d04545 0%, #952020 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #d04545 0%, #952020 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #d04545 0%, #952020 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d04545', endColorstr='#952020', GradientType=0); /* IE6-8 */
}

/* Disabled buttons */
body .ui-button-green.disabled,
body .ui-button-green.disabled:hover,
body .ui-button-green.disabled:active,
body .ui-button-green.disabled:focus,
body .ui-button-blue.disabled,
body .ui-button-blue.disabled:hover,
body .ui-button-blue.disabled:active,
body .ui-button-blue.disabled:focus,
body .ui-button-red.disabled,
body .ui-button-red.disabled:hover,
body .ui-button-red.disabled:active,
body .ui-button-red.disabled:focus,
body .ui-button.disabled,
body .ui-button.disabled:hover {
	color: #aaa;
	border-color: #ccc !important;
	background: #eee !important;
	background: -moz-linear-gradient(top, #f6f6f6 0%, #eee 90%) !important; /* FF3.6+ */
	background: -webkit-linear-gradient(top, #f6f6f6 0%, #eee 90%) !important; /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top, #f6f6f6 0%, #eee 90%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f6f6f6 0%, #eee 90%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #f6f6f6 0%, #eee 90%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#eeeeee', GradientType=0); /* IE6-8 */
	box-shadow: 0 1px 3px rgba(0,0,0,0);
}
body .ui-button-green.disabled .ui-button-text,
body .ui-button-blue.disabled .ui-button-text,
body .ui-button-red.disabled .ui-button-text {
	color: #aaa;
	text-shadow: 0 1px 1px #fff;
}