semantic-ui-rails 0.6.5 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -0
- data/lib/semantic/ui/rails/version.rb +1 -1
- data/vendor/assets/javascripts/semantic-ui/modules/accordion.js +13 -16
- data/vendor/assets/javascripts/semantic-ui/modules/behavior/api.js +18 -22
- data/vendor/assets/javascripts/semantic-ui/modules/behavior/form.js +18 -24
- data/vendor/assets/javascripts/semantic-ui/modules/behavior/state.js +8 -8
- data/vendor/assets/javascripts/semantic-ui/modules/chatroom.js +18 -14
- data/vendor/assets/javascripts/semantic-ui/modules/checkbox.js +26 -24
- data/vendor/assets/javascripts/semantic-ui/modules/dimmer.js +70 -48
- data/vendor/assets/javascripts/semantic-ui/modules/dropdown.js +47 -46
- data/vendor/assets/javascripts/semantic-ui/modules/modal.js +44 -30
- data/vendor/assets/javascripts/semantic-ui/modules/nag.js +13 -16
- data/vendor/assets/javascripts/semantic-ui/modules/popup.js +347 -261
- data/vendor/assets/javascripts/semantic-ui/modules/rating.js +18 -22
- data/vendor/assets/javascripts/semantic-ui/modules/search.js +18 -24
- data/vendor/assets/javascripts/semantic-ui/modules/shape.js +182 -173
- data/vendor/assets/javascripts/semantic-ui/modules/sidebar.js +65 -42
- data/vendor/assets/javascripts/semantic-ui/modules/tab.js +47 -30
- data/vendor/assets/javascripts/semantic-ui/modules/transition.js +23 -23
- data/vendor/assets/javascripts/semantic-ui/modules/video.js +18 -22
- data/vendor/assets/stylesheets/semantic-ui/collections/grid.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/collections/menu.less +8 -3
- data/vendor/assets/stylesheets/semantic-ui/collections/message.less +6 -7
- data/vendor/assets/stylesheets/semantic-ui/collections/table.less +76 -23
- data/vendor/assets/stylesheets/semantic-ui/elements/button.less +163 -167
- data/vendor/assets/stylesheets/semantic-ui/elements/header.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/elements/icon.less +8 -10
- data/vendor/assets/stylesheets/semantic-ui/elements/input.less +0 -2
- data/vendor/assets/stylesheets/semantic-ui/elements/label.less +54 -5
- data/vendor/assets/stylesheets/semantic-ui/elements/segment.less +0 -9
- data/vendor/assets/stylesheets/semantic-ui/modules/accordion.less +197 -198
- data/vendor/assets/stylesheets/semantic-ui/modules/checkbox.less +17 -21
- data/vendor/assets/stylesheets/semantic-ui/modules/dimmer.less +4 -27
- data/vendor/assets/stylesheets/semantic-ui/modules/dropdown.less +28 -28
- data/vendor/assets/stylesheets/semantic-ui/modules/popup.less +255 -255
- data/vendor/assets/stylesheets/semantic-ui/modules/rating.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/modules/shape.less +81 -7
- data/vendor/assets/stylesheets/semantic-ui/modules/sidebar.less +129 -28
- data/vendor/assets/stylesheets/semantic-ui/modules/transition.less +12 -10
- data/vendor/assets/stylesheets/semantic-ui/views/list.less +6 -6
- metadata +2 -2
@@ -24,7 +24,7 @@ $.fn.video = function(parameters) {
|
|
24
24
|
methodInvoked = (typeof query == 'string'),
|
25
25
|
queryArguments = [].slice.call(arguments, 1),
|
26
26
|
|
27
|
-
|
27
|
+
returnedValue
|
28
28
|
;
|
29
29
|
|
30
30
|
$allModules
|
@@ -231,26 +231,22 @@ $.fn.video = function(parameters) {
|
|
231
231
|
},
|
232
232
|
|
233
233
|
setting: function(name, value) {
|
234
|
-
if(
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
settings[name] = value;
|
240
|
-
}
|
234
|
+
if( $.isPlainObject(name) ) {
|
235
|
+
$.extend(true, settings, name);
|
236
|
+
}
|
237
|
+
else if(value !== undefined) {
|
238
|
+
settings[name] = value;
|
241
239
|
}
|
242
240
|
else {
|
243
241
|
return settings[name];
|
244
242
|
}
|
245
243
|
},
|
246
244
|
internal: function(name, value) {
|
247
|
-
if(
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
module[name] = value;
|
253
|
-
}
|
245
|
+
if( $.isPlainObject(name) ) {
|
246
|
+
$.extend(true, module, name);
|
247
|
+
}
|
248
|
+
else if(value !== undefined) {
|
249
|
+
module[name] = value;
|
254
250
|
}
|
255
251
|
else {
|
256
252
|
return module[name];
|
@@ -378,14 +374,14 @@ $.fn.video = function(parameters) {
|
|
378
374
|
else if(found !== undefined) {
|
379
375
|
response = found;
|
380
376
|
}
|
381
|
-
if($.isArray(
|
382
|
-
|
377
|
+
if($.isArray(returnedValue)) {
|
378
|
+
returnedValue.push(response);
|
383
379
|
}
|
384
|
-
else if(
|
385
|
-
|
380
|
+
else if(returnedValue !== undefined) {
|
381
|
+
returnedValue = [returnedValue, response];
|
386
382
|
}
|
387
383
|
else if(response !== undefined) {
|
388
|
-
|
384
|
+
returnedValue = response;
|
389
385
|
}
|
390
386
|
return found;
|
391
387
|
}
|
@@ -405,8 +401,8 @@ $.fn.video = function(parameters) {
|
|
405
401
|
}
|
406
402
|
})
|
407
403
|
;
|
408
|
-
return (
|
409
|
-
?
|
404
|
+
return (returnedValue !== undefined)
|
405
|
+
? returnedValue
|
410
406
|
: this
|
411
407
|
;
|
412
408
|
};
|
@@ -301,6 +301,9 @@
|
|
301
301
|
min-width: calc(100% - 1px);
|
302
302
|
box-shadow: 0 1px 1px 1px #DDDDDD;
|
303
303
|
}
|
304
|
+
.ui.menu .pointing.dropdown.item .menu {
|
305
|
+
margin-top: 0.75em;
|
306
|
+
}
|
304
307
|
.ui.menu .simple.dropdown.item .menu {
|
305
308
|
margin: 0px !important;
|
306
309
|
}
|
@@ -495,7 +498,6 @@
|
|
495
498
|
|
496
499
|
.ui.vertical.menu .item > .label {
|
497
500
|
float: right;
|
498
|
-
min-width: 2.5;
|
499
501
|
text-align: center;
|
500
502
|
}
|
501
503
|
.ui.vertical.menu .item > .icon:not(.input) {
|
@@ -688,6 +690,8 @@
|
|
688
690
|
background-color: transparent;
|
689
691
|
border-bottom: 1px solid #DCDDDE;
|
690
692
|
|
693
|
+
border-radius: 0em;
|
694
|
+
|
691
695
|
-webkit-box-shadow: none !important;
|
692
696
|
-moz-box-shadow: none !important;
|
693
697
|
box-shadow: none !important;
|
@@ -716,14 +720,15 @@
|
|
716
720
|
/* Active */
|
717
721
|
.ui.tabular.menu .active.item {
|
718
722
|
position: relative;
|
719
|
-
top: 1px;
|
720
723
|
|
721
724
|
background-color: #FFFFFF;
|
722
725
|
color: rgba(0, 0, 0, 0.8);
|
723
726
|
|
724
727
|
border-color: #DCDDDE;
|
728
|
+
font-weight: bold;
|
725
729
|
|
726
|
-
|
730
|
+
margin-bottom: -1px;
|
731
|
+
border-bottom: 1px solid #FFFFFF;
|
727
732
|
|
728
733
|
-webkit-box-shadow: none;
|
729
734
|
-moz-box-shadow: none;
|
@@ -116,7 +116,7 @@
|
|
116
116
|
.ui.message ul.list li {
|
117
117
|
position: relative;
|
118
118
|
list-style-type: none;
|
119
|
-
margin: 0em 0em
|
119
|
+
margin: 0em 0em 0.3em 1em;
|
120
120
|
padding: 0em;
|
121
121
|
}
|
122
122
|
.ui.message ul.list li:before {
|
@@ -233,7 +233,7 @@
|
|
233
233
|
display: table-cell;
|
234
234
|
vertical-align: middle;
|
235
235
|
font-size: 3.8em;
|
236
|
-
opacity: 0.
|
236
|
+
opacity: 0.5;
|
237
237
|
}
|
238
238
|
.ui.icon.message > .icon + .content {
|
239
239
|
padding-left: 1em;
|
@@ -308,21 +308,20 @@
|
|
308
308
|
/* Red Text Block */
|
309
309
|
.ui.red.message {
|
310
310
|
background-color: #F1D7D7;
|
311
|
-
|
312
311
|
color: #A95252;
|
313
312
|
}
|
314
313
|
|
315
314
|
/* Success Text Block */
|
316
315
|
.ui.success.message,
|
317
316
|
.ui.positive.message {
|
318
|
-
background-color: #
|
319
|
-
color: #
|
317
|
+
background-color: #DEFCD5;
|
318
|
+
color: #52A954;
|
320
319
|
}
|
321
320
|
/* Error Text Block */
|
322
321
|
.ui.error.message,
|
323
322
|
.ui.negative.message {
|
324
|
-
background-color: #
|
325
|
-
color: #
|
323
|
+
background-color: #F1D7D7;
|
324
|
+
color: #A95252;
|
326
325
|
}
|
327
326
|
|
328
327
|
|
@@ -41,10 +41,13 @@
|
|
41
41
|
.ui.table thead {
|
42
42
|
border-bottom: 1px solid rgba(0, 0, 0, 0.03);
|
43
43
|
}
|
44
|
+
.ui.table tfoot th {
|
45
|
+
background-color: rgba(0, 0, 0, 0.03);
|
46
|
+
}
|
44
47
|
.ui.table th {
|
45
48
|
cursor: auto;
|
46
49
|
|
47
|
-
background-color: rgba(0, 0, 0, 0.
|
50
|
+
background-color: rgba(0, 0, 0, 0.05);
|
48
51
|
|
49
52
|
text-align: left;
|
50
53
|
color: rgba(0, 0, 0, 0.8);
|
@@ -100,6 +103,53 @@
|
|
100
103
|
display: block;
|
101
104
|
}
|
102
105
|
|
106
|
+
|
107
|
+
/* Responsive */
|
108
|
+
|
109
|
+
@media only screen and (max-width : 768px) {
|
110
|
+
.ui.table {
|
111
|
+
display: block;
|
112
|
+
padding: 0em;
|
113
|
+
}
|
114
|
+
.ui.table thead,
|
115
|
+
.ui.table tfoot {
|
116
|
+
display: none;
|
117
|
+
}
|
118
|
+
.ui.table tbody {
|
119
|
+
display: block;
|
120
|
+
}
|
121
|
+
.ui.table tr {
|
122
|
+
display: block;
|
123
|
+
}
|
124
|
+
|
125
|
+
.ui.table tr > td {
|
126
|
+
width: 100% !important;
|
127
|
+
display: block;
|
128
|
+
border: none !important;
|
129
|
+
padding: 0.25em 0.75em;
|
130
|
+
box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05) !important;
|
131
|
+
}
|
132
|
+
.ui.table td:first-child {
|
133
|
+
font-weight: bold;
|
134
|
+
padding-top: 1em;
|
135
|
+
}
|
136
|
+
.ui.table td:last-child {
|
137
|
+
box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
|
138
|
+
padding-bottom: 1em;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* Clear BG Colors */
|
142
|
+
.ui.table tr > td.warning,
|
143
|
+
.ui.table tr > td.error,
|
144
|
+
.ui.table tr > td.active,
|
145
|
+
.ui.table tr > td.positive,
|
146
|
+
.ui.table tr > td.negative {
|
147
|
+
background-color: transparent !important;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
|
152
|
+
|
103
153
|
/*******************************
|
104
154
|
States
|
105
155
|
*******************************/
|
@@ -109,19 +159,23 @@
|
|
109
159
|
---------------*/
|
110
160
|
|
111
161
|
/* Sortable */
|
112
|
-
.ui.sortable.table thead th:hover {
|
113
|
-
background-image: none;
|
114
|
-
color: rgba(0, 0, 0, 0.8);
|
115
|
-
}
|
116
162
|
.ui.sortable.table th.disabled:hover {
|
117
163
|
cursor: auto;
|
118
|
-
background-color: rgba(0, 0, 0, 0.1);
|
119
|
-
|
120
164
|
text-align: left;
|
121
165
|
font-weight: bold;
|
122
166
|
color: #333333;
|
123
167
|
color: rgba(0, 0, 0, 0.8);
|
124
168
|
}
|
169
|
+
.ui.sortable.table thead th:hover {
|
170
|
+
background-color: rgba(0, 0, 0, 0.13);
|
171
|
+
color: rgba(0, 0, 0, 0.8);
|
172
|
+
}
|
173
|
+
|
174
|
+
/* Inverted Sortable */
|
175
|
+
.ui.inverted.sortable.table thead th:hover {
|
176
|
+
background-color: rgba(255, 255, 255, 0.13);
|
177
|
+
color: rgba(255, 255, 255, 1);
|
178
|
+
}
|
125
179
|
|
126
180
|
|
127
181
|
/*--------------
|
@@ -168,8 +222,8 @@
|
|
168
222
|
.ui.table tr.negative:hover td,
|
169
223
|
.ui.table td:hover.negative,
|
170
224
|
.ui.table th:hover.negative {
|
171
|
-
background-color: #F2E8E8
|
172
|
-
color: #CD2929
|
225
|
+
background-color: #F2E8E8;
|
226
|
+
color: #CD2929;
|
173
227
|
}
|
174
228
|
|
175
229
|
/*--------------
|
@@ -185,16 +239,16 @@
|
|
185
239
|
.ui.table tr.error td,
|
186
240
|
.ui.table td.error,
|
187
241
|
.ui.table th.error {
|
188
|
-
background-color: #F9F4F4
|
189
|
-
color: #CD2929
|
242
|
+
background-color: #F9F4F4;
|
243
|
+
color: #CD2929;
|
190
244
|
}
|
191
245
|
.ui.celled.table tr.error:hover td,
|
192
246
|
.ui.celled.table tr:hover td.error,
|
193
247
|
.ui.table tr.error:hover td,
|
194
248
|
.ui.table td:hover.error,
|
195
249
|
.ui.table th:hover.error {
|
196
|
-
background-color: #F2E8E8
|
197
|
-
color: #CD2929
|
250
|
+
background-color: #F2E8E8;
|
251
|
+
color: #CD2929;
|
198
252
|
}
|
199
253
|
|
200
254
|
/*--------------
|
@@ -211,15 +265,15 @@
|
|
211
265
|
.ui.table td.warning,
|
212
266
|
.ui.table th.warning {
|
213
267
|
background-color: #FBF6E9;
|
214
|
-
color: #7D6C00
|
268
|
+
color: #7D6C00;
|
215
269
|
}
|
216
270
|
.ui.celled.table tr.warning:hover td,
|
217
271
|
.ui.celled.table tr:hover td.warning,
|
218
272
|
.ui.table tr.warning:hover td,
|
219
273
|
.ui.table td:hover.warning,
|
220
274
|
.ui.table th:hover.warning {
|
221
|
-
background-color: #F3EDDC
|
222
|
-
color: #7D6C00
|
275
|
+
background-color: #F3EDDC;
|
276
|
+
color: #7D6C00;
|
223
277
|
}
|
224
278
|
|
225
279
|
|
@@ -236,7 +290,7 @@
|
|
236
290
|
|
237
291
|
.ui.table tr.active td,
|
238
292
|
.ui.table tr td.active {
|
239
|
-
background-color: #E0E0E0
|
293
|
+
background-color: #E0E0E0;
|
240
294
|
color: rgba(50, 50, 50, 0.9);
|
241
295
|
/* border-color: rgba(0, 0, 0, 0.15) !important; */
|
242
296
|
}
|
@@ -385,18 +439,17 @@
|
|
385
439
|
border: none;
|
386
440
|
}
|
387
441
|
.ui.celled.table th,
|
388
|
-
.ui.celled.table
|
442
|
+
.ui.celled.table td {
|
389
443
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
390
444
|
}
|
391
445
|
|
392
446
|
/* Coupling with segment */
|
393
|
-
.ui.celled.table.segment th
|
394
|
-
|
395
|
-
}
|
396
|
-
.ui.celled.table.segment tbody td:first-child {
|
447
|
+
.ui.celled.table.segment th:first-child,
|
448
|
+
.ui.celled.table.segment td:first-child {
|
397
449
|
border-left: none;
|
398
450
|
}
|
399
|
-
.ui.celled.table.segment
|
451
|
+
.ui.celled.table.segment th:last-child,
|
452
|
+
.ui.celled.table.segment td:last-child {
|
400
453
|
border-right: none;
|
401
454
|
}
|
402
455
|
|
@@ -24,10 +24,11 @@
|
|
24
24
|
|
25
25
|
outline: none;
|
26
26
|
border: none;
|
27
|
-
background-color: #
|
28
|
-
color: #
|
27
|
+
background-color: #FAFAFA;
|
28
|
+
color: #808080;
|
29
29
|
|
30
|
-
|
30
|
+
margin: 0em;
|
31
|
+
padding: 0.8em 1.5em 0.875em;
|
31
32
|
|
32
33
|
font-size: 1rem;
|
33
34
|
text-transform: uppercase;
|
@@ -37,18 +38,15 @@
|
|
37
38
|
text-align: center;
|
38
39
|
text-decoration: none;
|
39
40
|
|
40
|
-
-
|
41
|
-
|
42
|
-
border-radius: 0.
|
41
|
+
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
|
42
|
+
|
43
|
+
-webkit-border-radius: 0.25em;
|
44
|
+
-moz-border-radius: 0.25em;
|
45
|
+
border-radius: 0.25em;
|
43
46
|
|
44
|
-
-webkit-box-shadow:
|
45
|
-
0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
|
46
|
-
;
|
47
|
-
-moz-box-shadow:
|
48
|
-
0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
|
49
|
-
;
|
50
47
|
box-shadow:
|
51
|
-
|
48
|
+
0px 0px 0px 1px rgba(0, 0, 0, 0.08) inset,
|
49
|
+
0px -0.133em 0px 0px rgba(0, 0, 0, 0.1) inset
|
52
50
|
;
|
53
51
|
|
54
52
|
-webkit-user-select: none;
|
@@ -125,19 +123,17 @@
|
|
125
123
|
.ui.primary.buttons .button,
|
126
124
|
.ui.primary.button {
|
127
125
|
background-color: #D95C5C;
|
128
|
-
color: #FFFFFF;
|
126
|
+
color: #FFFFFF !important;
|
129
127
|
}
|
130
128
|
.ui.primary.buttons .button:hover,
|
131
129
|
.ui.primary.button:hover,
|
132
130
|
.ui.primary.buttons .active.button,
|
133
131
|
.ui.primary.button.active {
|
134
132
|
background-color: #E75859;
|
135
|
-
color: #FFFFFF;
|
136
133
|
}
|
137
134
|
.ui.primary.buttons .button:active,
|
138
135
|
.ui.primary.button:active {
|
139
136
|
background-color: #D24B4C;
|
140
|
-
color: #FFFFFF;
|
141
137
|
}
|
142
138
|
|
143
139
|
/*-------------------
|
@@ -147,19 +143,17 @@
|
|
147
143
|
.ui.secondary.buttons .button,
|
148
144
|
.ui.secondary.button {
|
149
145
|
background-color: #00B5AD;
|
150
|
-
color: #FFFFFF;
|
146
|
+
color: #FFFFFF !important;
|
151
147
|
}
|
152
148
|
.ui.secondary.buttons .button:hover,
|
153
149
|
.ui.secondary.button:hover,
|
154
150
|
.ui.secondary.buttons .active.button,
|
155
151
|
.ui.secondary.button.active {
|
156
152
|
background-color: #009A93;
|
157
|
-
color: #FFFFFF;
|
158
153
|
}
|
159
154
|
.ui.secondary.buttons .button:active,
|
160
155
|
.ui.secondary.button:active {
|
161
156
|
background-color: #00847E;
|
162
|
-
color: #FFFFFF;
|
163
157
|
}
|
164
158
|
|
165
159
|
/*-------------------
|
@@ -169,7 +163,7 @@
|
|
169
163
|
/* Facebook */
|
170
164
|
.ui.facebook.button {
|
171
165
|
background-color: #3B579D;
|
172
|
-
color: #FFFFFF;
|
166
|
+
color: #FFFFFF !important;
|
173
167
|
}
|
174
168
|
.ui.facebook.button:hover {
|
175
169
|
background-color: #3A59A9;
|
@@ -180,13 +174,74 @@
|
|
180
174
|
|
181
175
|
/* Twitter */
|
182
176
|
.ui.twitter.button {
|
183
|
-
background-color: #
|
184
|
-
color: #FFFFFF;
|
177
|
+
background-color: #4092CC;
|
178
|
+
color: #FFFFFF !important;
|
185
179
|
}
|
186
180
|
.ui.twitter.button:hover {
|
187
|
-
background-color: #
|
181
|
+
background-color: #399ADE;
|
188
182
|
}
|
189
183
|
.ui.twitter.button:active {
|
184
|
+
background-color: #3283BC;
|
185
|
+
}
|
186
|
+
|
187
|
+
/* Google Plus */
|
188
|
+
.ui.google.plus.button {
|
189
|
+
background-color: #D34836;
|
190
|
+
color: #FFFFFF !important;
|
191
|
+
}
|
192
|
+
.ui.google.plus.button:hover {
|
193
|
+
background-color: #E3432E;
|
194
|
+
}
|
195
|
+
.ui.google.plus.button:active {
|
196
|
+
background-color: #CA3A27;
|
197
|
+
}
|
198
|
+
|
199
|
+
/* Linked In */
|
200
|
+
.ui.linkedin.button {
|
201
|
+
background-color: #1F88BE;
|
202
|
+
color: #FFFFFF !important;
|
203
|
+
}
|
204
|
+
.ui.linkedin.button:hover {
|
205
|
+
background-color: #1394D6;
|
206
|
+
}
|
207
|
+
.ui.linkedin.button:active {
|
208
|
+
background-color: #1179AE;
|
209
|
+
}
|
210
|
+
|
211
|
+
/* YouTube */
|
212
|
+
.ui.youtube.button {
|
213
|
+
background-color: #CC181E;
|
214
|
+
color: #FFFFFF !important;
|
215
|
+
}
|
216
|
+
.ui.youtube.button:hover {
|
217
|
+
background-color: #DF0209;
|
218
|
+
}
|
219
|
+
.ui.youtube.button:active {
|
220
|
+
background-color: #A50006;
|
221
|
+
}
|
222
|
+
|
223
|
+
/* Instagram */
|
224
|
+
.ui.instagram.button {
|
225
|
+
background-color: #49769C;
|
226
|
+
color: #FFFFFF !important;
|
227
|
+
}
|
228
|
+
.ui.instagram.button:hover {
|
229
|
+
background-color: #4781B1;
|
230
|
+
}
|
231
|
+
.ui.instagram.button:active {
|
232
|
+
background-color: #38658A;
|
233
|
+
}
|
234
|
+
|
235
|
+
|
236
|
+
/* Pinterest */
|
237
|
+
.ui.pinterest.button {
|
238
|
+
background-color: #00ACED;
|
239
|
+
color: #FFFFFF !important;
|
240
|
+
}
|
241
|
+
.ui.pinterest.button:hover {
|
242
|
+
background-color: #00B9FF;
|
243
|
+
}
|
244
|
+
.ui.pinterest.button:active {
|
190
245
|
background-color: #009EDA;
|
191
246
|
}
|
192
247
|
|
@@ -195,7 +250,7 @@
|
|
195
250
|
---------------*/
|
196
251
|
|
197
252
|
.ui.button > .icon {
|
198
|
-
margin-right: 0.
|
253
|
+
margin-right: 0.6em;
|
199
254
|
|
200
255
|
line-height: 1;
|
201
256
|
|
@@ -219,7 +274,7 @@
|
|
219
274
|
|
220
275
|
|
221
276
|
/*******************************
|
222
|
-
|
277
|
+
States
|
223
278
|
*******************************/
|
224
279
|
|
225
280
|
|
@@ -229,26 +284,10 @@
|
|
229
284
|
|
230
285
|
.ui.buttons .active.button,
|
231
286
|
.ui.active.button {
|
232
|
-
|
233
|
-
background-
|
234
|
-
|
235
|
-
|
236
|
-
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
|
237
|
-
background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
|
238
|
-
background-image: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
|
239
|
-
background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
|
240
|
-
|
241
|
-
color: #FFFFFF;
|
242
|
-
|
243
|
-
-webkit-box-shadow:
|
244
|
-
0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
|
245
|
-
;
|
246
|
-
-moz-box-shadow:
|
247
|
-
0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
|
248
|
-
;
|
249
|
-
box-shadow:
|
250
|
-
0px 0px 0.3em 0px rgba(0, 0, 0, 0.3) inset
|
251
|
-
;
|
287
|
+
background-color: #EAEAEA;
|
288
|
+
background-image: none;
|
289
|
+
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;
|
290
|
+
color: rgba(0, 0, 0, 0.7);
|
252
291
|
}
|
253
292
|
|
254
293
|
|
@@ -256,13 +295,14 @@
|
|
256
295
|
Hover
|
257
296
|
---------------*/
|
258
297
|
|
259
|
-
.ui.button:hover
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
298
|
+
.ui.button:hover {
|
299
|
+
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
|
300
|
+
color: rgba(0, 0, 0, 0.7);
|
301
|
+
}
|
302
|
+
.ui.button.active:hover {
|
303
|
+
background-image: none;
|
265
304
|
}
|
305
|
+
|
266
306
|
.ui.button:hover .icon,
|
267
307
|
.ui.button.hover .icon {
|
268
308
|
opacity: 0.85;
|
@@ -274,14 +314,9 @@
|
|
274
314
|
|
275
315
|
.ui.button:active,
|
276
316
|
.ui.active.button:active {
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
color: #FFFFFF;
|
281
|
-
|
282
|
-
-webkit-box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
|
283
|
-
-moz-box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
|
284
|
-
box-shadow: 0px 1px 0.2em 0px rgba(0, 0, 0, 0.3) inset;
|
317
|
+
background-color: #F1F1F1;
|
318
|
+
color: rgba(0, 0, 0, 0.7);
|
319
|
+
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;
|
285
320
|
}
|
286
321
|
|
287
322
|
/*--------------
|
@@ -372,25 +407,16 @@
|
|
372
407
|
.ui.buttons.mini .button,
|
373
408
|
.ui.mini.button {
|
374
409
|
font-size: 0.8125rem;
|
375
|
-
padding: 0.6em 0.8em;
|
376
|
-
-webkit-box-shadow: none;
|
377
|
-
-moz-box-shadow: none;
|
378
|
-
box-shadow: none;
|
410
|
+
padding: 0.6em 0.8em 0.73em;
|
379
411
|
}
|
380
412
|
.ui.tiny.buttons .button,
|
381
413
|
.ui.tiny.button {
|
382
414
|
font-size: 0.875rem;
|
383
|
-
padding: 0.6em 0.8em;
|
384
|
-
-webkit-box-shadow: none;
|
385
|
-
-moz-box-shadow: none;
|
386
|
-
box-shadow: none;
|
415
|
+
padding: 0.6em 0.8em 0.73em;
|
387
416
|
}
|
388
417
|
.ui.small.buttons .button,
|
389
418
|
.ui.small.button {
|
390
419
|
font-size: 0.875rem;
|
391
|
-
-webkit-box-shadow: none;
|
392
|
-
-moz-box-shadow: none;
|
393
|
-
box-shadow: none;
|
394
420
|
}
|
395
421
|
|
396
422
|
.ui.large.buttons .button,
|
@@ -440,9 +466,10 @@
|
|
440
466
|
/*--------------
|
441
467
|
Icon Only
|
442
468
|
---------------*/
|
469
|
+
|
443
470
|
.ui.icon.buttons .button,
|
444
471
|
.ui.icon.button {
|
445
|
-
padding: 0.8em;
|
472
|
+
padding: 0.8em 0.8em 0.875em;
|
446
473
|
}
|
447
474
|
.ui.icon.buttons .button > .icon,
|
448
475
|
.ui.icon.button > .icon {
|
@@ -461,7 +488,7 @@
|
|
461
488
|
.ui.basic.button {
|
462
489
|
background-color: transparent !important;
|
463
490
|
background-image: none;
|
464
|
-
color: #
|
491
|
+
color: #808080 !important;
|
465
492
|
font-weight: normal;
|
466
493
|
text-transform: none;
|
467
494
|
|
@@ -474,9 +501,9 @@
|
|
474
501
|
-moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
|
475
502
|
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
|
476
503
|
|
477
|
-
-webkit-border-radius: 0.
|
478
|
-
-moz-border-radius: 0.
|
479
|
-
border-radius: 0.
|
504
|
+
-webkit-border-radius: 0.25em;
|
505
|
+
-moz-border-radius: 0.25em;
|
506
|
+
border-radius: 0.25em;
|
480
507
|
}
|
481
508
|
|
482
509
|
.ui.basic.buttons .button:hover,
|
@@ -511,7 +538,7 @@
|
|
511
538
|
|
512
539
|
/* Basic Group */
|
513
540
|
.ui.basic.buttons .button {
|
514
|
-
border:
|
541
|
+
border-left: 1px solid rgba(0, 0, 0, 0.1);
|
515
542
|
|
516
543
|
-webkit-box-shadow: none;
|
517
544
|
-moz-box-shadow: none;
|
@@ -523,10 +550,11 @@
|
|
523
550
|
-moz-box-shadow: none;
|
524
551
|
box-shadow: none;
|
525
552
|
}
|
526
|
-
.ui.basic.buttons .button.active
|
527
|
-
|
528
|
-
-
|
529
|
-
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.
|
553
|
+
.ui.basic.buttons .button.active,
|
554
|
+
.ui.basic.buttons .button.active:hover {
|
555
|
+
-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
|
556
|
+
-moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
|
557
|
+
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
|
530
558
|
}
|
531
559
|
|
532
560
|
|
@@ -555,19 +583,19 @@
|
|
555
583
|
|
556
584
|
width: 2.75em;
|
557
585
|
height: 100%;
|
558
|
-
padding-top: 0.
|
586
|
+
padding-top: 0.85em;
|
559
587
|
background-color: rgba(0, 0, 0, 0.05);
|
560
588
|
text-align: center;
|
561
589
|
|
562
|
-
-webkit-border-radius: 0.
|
563
|
-
-moz-border-radius: 0.
|
564
|
-
border-radius: 0.
|
590
|
+
-webkit-border-radius: 0.25em 0px 0px 0.25em;
|
591
|
+
-moz-border-radius: 0.25em 0px 0px 0.25em;
|
592
|
+
border-radius: 0.25em 0px 0px 0.25em;
|
565
593
|
|
566
594
|
line-height: 1;
|
567
595
|
|
568
|
-
-webkit-box-shadow: -
|
569
|
-
-moz-box-shadow: -
|
570
|
-
box-shadow: -
|
596
|
+
-webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
|
597
|
+
-moz-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
|
598
|
+
box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
|
571
599
|
}
|
572
600
|
|
573
601
|
.ui.labeled.icon.buttons .button > .icon {
|
@@ -576,24 +604,24 @@
|
|
576
604
|
border-radius: 0em;
|
577
605
|
}
|
578
606
|
.ui.labeled.icon.buttons .button:first-child > .icon {
|
579
|
-
border-top-left-radius: 0.
|
580
|
-
border-bottom-left-radius: 0.
|
607
|
+
border-top-left-radius: 0.25em;
|
608
|
+
border-bottom-left-radius: 0.25em;
|
581
609
|
}
|
582
610
|
.ui.labeled.icon.buttons .button:last-child > .icon {
|
583
|
-
border-top-right-radius: 0.
|
584
|
-
border-bottom-right-radius: 0.
|
611
|
+
border-top-right-radius: 0.25em;
|
612
|
+
border-bottom-right-radius: 0.25em;
|
585
613
|
}
|
586
614
|
.ui.vertical.labeled.icon.buttons .button:first-child > .icon {
|
587
615
|
-webkit-border-radius: 0em;
|
588
616
|
-moz-border-radius: 0em;
|
589
617
|
border-radius: 0em;
|
590
|
-
border-top-left-radius: 0.
|
618
|
+
border-top-left-radius: 0.25em;
|
591
619
|
}
|
592
620
|
.ui.vertical.labeled.icon.buttons .button:last-child > .icon {
|
593
621
|
-webkit-border-radius: 0em;
|
594
622
|
-moz-border-radius: 0em;
|
595
623
|
border-radius: 0em;
|
596
|
-
border-bottom-left-radius: 0.
|
624
|
+
border-bottom-left-radius: 0.25em;
|
597
625
|
}
|
598
626
|
|
599
627
|
.ui.right.labeled.icon.button {
|
@@ -610,13 +638,13 @@
|
|
610
638
|
left: auto;
|
611
639
|
right: 0em;
|
612
640
|
|
613
|
-
-webkit-border-radius: 0em 0.
|
614
|
-
-moz-border-radius: 0em 0.
|
615
|
-
border-radius: 0em 0.
|
641
|
+
-webkit-border-radius: 0em 0.25em 0.25em 0em;
|
642
|
+
-moz-border-radius: 0em 0.25em 0.25em 0em;
|
643
|
+
border-radius: 0em 0.25em 0.25em 0em;
|
616
644
|
|
617
|
-
-webkit-box-shadow:
|
618
|
-
-moz-box-shadow:
|
619
|
-
box-shadow:
|
645
|
+
-webkit-box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
|
646
|
+
-moz-box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
|
647
|
+
box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
|
620
648
|
}
|
621
649
|
|
622
650
|
|
@@ -630,14 +658,16 @@
|
|
630
658
|
.ui.button.toggle.active {
|
631
659
|
background-color: #5BBD72 !important;
|
632
660
|
color: #FFFFFF !important;
|
661
|
+
box-shadow: none !important;
|
633
662
|
}
|
634
663
|
.ui.button.toggle.active:hover {
|
635
664
|
background-color: #58CB73 !important;
|
636
665
|
color: #FFFFFF !important;
|
666
|
+
box-shadow: none !important;
|
637
667
|
}
|
638
668
|
|
639
669
|
/*--------------
|
640
|
-
|
670
|
+
Circular
|
641
671
|
---------------*/
|
642
672
|
|
643
673
|
.ui.circular.button {
|
@@ -659,14 +689,14 @@
|
|
659
689
|
}
|
660
690
|
.ui.attached.top.button {
|
661
691
|
|
662
|
-
-webkit-border-radius: 0.
|
663
|
-
-moz-border-radius: 0.
|
664
|
-
border-radius: 0.
|
692
|
+
-webkit-border-radius: 0.25em 0.25em 0em 0em;
|
693
|
+
-moz-border-radius: 0.25em 0.25em 0em 0em;
|
694
|
+
border-radius: 0.25em 0.25em 0em 0em;
|
665
695
|
}
|
666
696
|
.ui.attached.bottom.button {
|
667
|
-
-webkit-border-radius: 0em 0em 0.
|
668
|
-
-moz-border-radius: 0em 0em 0.
|
669
|
-
border-radius: 0em 0em 0.
|
697
|
+
-webkit-border-radius: 0em 0em 0.25em 0.25em;
|
698
|
+
-moz-border-radius: 0em 0em 0.25em 0.25em;
|
699
|
+
border-radius: 0em 0em 0.25em 0.25em;
|
670
700
|
}
|
671
701
|
.ui.attached.left.button {
|
672
702
|
display: inline-block;
|
@@ -675,9 +705,9 @@
|
|
675
705
|
padding-right: 0.75em;
|
676
706
|
text-align: right;
|
677
707
|
|
678
|
-
-webkit-border-radius: 0.
|
679
|
-
-moz-border-radius: 0.
|
680
|
-
border-radius: 0.
|
708
|
+
-webkit-border-radius: 0.25em 0em 0em 0.25em;
|
709
|
+
-moz-border-radius: 0.25em 0em 0em 0.25em;
|
710
|
+
border-radius: 0.25em 0em 0em 0.25em;
|
681
711
|
}
|
682
712
|
.ui.attached.right.button {
|
683
713
|
display: inline-block;
|
@@ -685,9 +715,9 @@
|
|
685
715
|
padding-left: 0.75em;
|
686
716
|
text-align: left;
|
687
717
|
|
688
|
-
-webkit-border-radius: 0em 0.
|
689
|
-
-moz-border-radius: 0em 0.
|
690
|
-
border-radius: 0em 0.
|
718
|
+
-webkit-border-radius: 0em 0.25em 0.25em 0em;
|
719
|
+
-moz-border-radius: 0em 0.25em 0.25em 0em;
|
720
|
+
border-radius: 0em 0.25em 0.25em 0em;
|
691
721
|
}
|
692
722
|
|
693
723
|
|
@@ -722,10 +752,6 @@
|
|
722
752
|
font-weight: normal;
|
723
753
|
text-align: center;
|
724
754
|
|
725
|
-
-moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
|
726
|
-
-webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
|
727
|
-
box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
|
728
|
-
|
729
755
|
-moz-border-radius: 500px;
|
730
756
|
-webkit-border-radius: 500px;
|
731
757
|
border-radius: 500px;
|
@@ -884,6 +910,7 @@
|
|
884
910
|
/* Fluid Vertical Buttons */
|
885
911
|
.ui.fluid.vertical.buttons,
|
886
912
|
.ui.fluid.vertical.buttons > .button {
|
913
|
+
display: block;
|
887
914
|
width: auto;
|
888
915
|
-webkit-box-sizing: border-box;
|
889
916
|
-moz-box-sizing: border-box;
|
@@ -929,146 +956,122 @@
|
|
929
956
|
Colors
|
930
957
|
--------------------*/
|
931
958
|
|
932
|
-
/*--- White ---*/
|
933
|
-
.ui.white.buttons .button,
|
934
|
-
.ui.white.button {
|
935
|
-
background-color: #FFFFFF;
|
936
|
-
}
|
937
|
-
|
938
|
-
.ui.white.buttons .button:hover,
|
939
|
-
.ui.white.button:hover {
|
940
|
-
background-color: #A4A4A4;
|
941
|
-
}
|
942
959
|
|
943
960
|
/*--- Black ---*/
|
944
961
|
.ui.black.buttons .button,
|
945
962
|
.ui.black.button {
|
946
963
|
background-color: #5C6166;
|
947
|
-
color: #FFFFFF;
|
964
|
+
color: #FFFFFF !important;
|
948
965
|
}
|
949
966
|
.ui.black.buttons .button:hover,
|
950
967
|
.ui.black.button:hover {
|
951
968
|
background-color: #4C4C4C;
|
952
|
-
color: #FFFFFF;
|
953
969
|
}
|
954
970
|
.ui.black.buttons .button:active,
|
955
971
|
.ui.black.button:active {
|
956
972
|
background-color: #333333;
|
957
|
-
color: #FFFFFF;
|
958
973
|
}
|
959
974
|
|
960
975
|
/*--- Green ---*/
|
961
976
|
.ui.green.buttons .button,
|
962
977
|
.ui.green.button {
|
963
978
|
background-color: #5BBD72;
|
964
|
-
color: #FFFFFF;
|
979
|
+
color: #FFFFFF !important;
|
965
980
|
}
|
966
981
|
.ui.green.buttons .button:hover,
|
967
982
|
.ui.green.button:hover,
|
968
983
|
.ui.green.buttons .active.button,
|
969
984
|
.ui.green.button.active {
|
970
985
|
background-color: #58cb73;
|
971
|
-
color: #FFFFFF;
|
972
986
|
}
|
973
987
|
.ui.green.buttons .button:active,
|
974
988
|
.ui.green.button:active {
|
975
989
|
background-color: #4CB164;
|
976
|
-
color: #FFFFFF;
|
977
990
|
}
|
978
991
|
|
979
992
|
/*--- Red ---*/
|
980
993
|
.ui.red.buttons .button,
|
981
994
|
.ui.red.button {
|
982
995
|
background-color: #D95C5C;
|
983
|
-
color: #FFFFFF;
|
996
|
+
color: #FFFFFF !important;
|
984
997
|
}
|
985
998
|
.ui.red.buttons .button:hover,
|
986
999
|
.ui.red.button:hover,
|
987
1000
|
.ui.red.buttons .active.button,
|
988
1001
|
.ui.red.button.active {
|
989
1002
|
background-color: #E75859;
|
990
|
-
color: #FFFFFF;
|
991
1003
|
}
|
992
1004
|
.ui.red.buttons .button:active,
|
993
1005
|
.ui.red.button:active {
|
994
1006
|
background-color: #D24B4C;
|
995
|
-
color: #FFFFFF;
|
996
1007
|
}
|
997
1008
|
|
998
1009
|
/*--- Orange ---*/
|
999
1010
|
.ui.orange.buttons .button,
|
1000
1011
|
.ui.orange.button {
|
1001
1012
|
background-color: #E96633;
|
1002
|
-
color: #FFFFFF;
|
1013
|
+
color: #FFFFFF !important;
|
1003
1014
|
}
|
1004
1015
|
.ui.orange.buttons .button:hover,
|
1005
1016
|
.ui.orange.button:hover,
|
1006
1017
|
.ui.orange.buttons .active.button,
|
1007
1018
|
.ui.orange.button.active {
|
1008
1019
|
background-color: #FF7038;
|
1009
|
-
color: #FFFFFF;
|
1010
1020
|
}
|
1011
1021
|
.ui.orange.buttons .button:active,
|
1012
1022
|
.ui.orange.button:active {
|
1013
1023
|
background-color: #DA683B;
|
1014
|
-
color: #FFFFFF;
|
1015
1024
|
}
|
1016
1025
|
|
1017
1026
|
/*--- Blue ---*/
|
1018
1027
|
.ui.blue.buttons .button,
|
1019
1028
|
.ui.blue.button {
|
1020
1029
|
background-color: #6ECFF5;
|
1021
|
-
color: #FFFFFF;
|
1030
|
+
color: #FFFFFF !important;
|
1022
1031
|
}
|
1023
1032
|
.ui.blue.buttons .button:hover,
|
1024
1033
|
.ui.blue.button:hover,
|
1025
1034
|
.ui.blue.buttons .active.button,
|
1026
1035
|
.ui.blue.button.active {
|
1027
1036
|
background-color: #1AB8F3;
|
1028
|
-
color: #FFFFFF;
|
1029
1037
|
}
|
1030
1038
|
.ui.blue.buttons .button:active,
|
1031
1039
|
.ui.blue.button:active {
|
1032
1040
|
background-color: #0AA5DF;
|
1033
|
-
color: #FFFFFF;
|
1034
1041
|
}
|
1035
1042
|
|
1036
1043
|
/*--- Purple ---*/
|
1037
1044
|
.ui.purple.buttons .button,
|
1038
1045
|
.ui.purple.button {
|
1039
1046
|
background-color: #564F8A;
|
1040
|
-
color: #FFFFFF;
|
1047
|
+
color: #FFFFFF !important;
|
1041
1048
|
}
|
1042
1049
|
.ui.purple.buttons .button:hover,
|
1043
1050
|
.ui.purple.button:hover,
|
1044
1051
|
.ui.purple.buttons .active.button,
|
1045
1052
|
.ui.purple.button.active {
|
1046
1053
|
background-color: #3E3773;
|
1047
|
-
color: #FFFFFF;
|
1048
1054
|
}
|
1049
1055
|
.ui.purple.buttons .button:active,
|
1050
1056
|
.ui.purple.button:active {
|
1051
1057
|
background-color: #2E2860;
|
1052
|
-
color: #FFFFFF;
|
1053
1058
|
}
|
1054
1059
|
|
1055
1060
|
/*--- Teal ---*/
|
1056
1061
|
.ui.teal.buttons .button,
|
1057
1062
|
.ui.teal.button {
|
1058
1063
|
background-color: #00B5AD;
|
1059
|
-
color: #FFFFFF;
|
1064
|
+
color: #FFFFFF !important;
|
1060
1065
|
}
|
1061
1066
|
.ui.teal.buttons .button:hover,
|
1062
1067
|
.ui.teal.button:hover,
|
1063
1068
|
.ui.teal.buttons .active.button,
|
1064
1069
|
.ui.teal.button.active {
|
1065
1070
|
background-color: #009A93;
|
1066
|
-
color: #FFFFFF;
|
1067
1071
|
}
|
1068
1072
|
.ui.teal.buttons .button:active,
|
1069
1073
|
.ui.teal.button:active {
|
1070
1074
|
background-color: #00847E;
|
1071
|
-
color: #FFFFFF;
|
1072
1075
|
}
|
1073
1076
|
|
1074
1077
|
/*---------------
|
@@ -1078,19 +1081,17 @@
|
|
1078
1081
|
.ui.positive.buttons .button,
|
1079
1082
|
.ui.positive.button {
|
1080
1083
|
background-color: #5BBD72 !important;
|
1081
|
-
color: #FFFFFF;
|
1084
|
+
color: #FFFFFF !important;
|
1082
1085
|
}
|
1083
1086
|
.ui.positive.buttons .button:hover,
|
1084
1087
|
.ui.positive.button:hover,
|
1085
1088
|
.ui.positive.buttons .active.button,
|
1086
1089
|
.ui.positive.button.active {
|
1087
1090
|
background-color: #58CB73 !important;
|
1088
|
-
color: #FFFFFF;
|
1089
1091
|
}
|
1090
1092
|
.ui.positive.buttons .button:active,
|
1091
1093
|
.ui.positive.button:active {
|
1092
1094
|
background-color: #4CB164 !important;
|
1093
|
-
color: #FFFFFF;
|
1094
1095
|
}
|
1095
1096
|
|
1096
1097
|
|
@@ -1100,19 +1101,17 @@
|
|
1100
1101
|
.ui.negative.buttons .button,
|
1101
1102
|
.ui.negative.button {
|
1102
1103
|
background-color: #D95C5C !important;
|
1103
|
-
color: #FFFFFF;
|
1104
|
+
color: #FFFFFF !important;
|
1104
1105
|
}
|
1105
1106
|
.ui.negative.buttons .button:hover,
|
1106
1107
|
.ui.negative.button:hover,
|
1107
1108
|
.ui.negative.buttons .active.button,
|
1108
1109
|
.ui.negative.button.active {
|
1109
1110
|
background-color: #E75859 !important;
|
1110
|
-
color: #FFFFFF;
|
1111
1111
|
}
|
1112
1112
|
.ui.negative.buttons .button:active,
|
1113
1113
|
.ui.negative.button:active {
|
1114
1114
|
background-color: #D24B4C !important;
|
1115
|
-
color: #FFFFFF;
|
1116
1115
|
}
|
1117
1116
|
|
1118
1117
|
|
@@ -1140,16 +1139,15 @@
|
|
1140
1139
|
-webkit-border-radius: 0em;
|
1141
1140
|
-moz-border-radius: 0em;
|
1142
1141
|
border-radius: 0em;
|
1143
|
-
border-left: 1px solid rgba(0, 0, 0, 0.05);
|
1144
1142
|
}
|
1145
1143
|
.ui.buttons .button:first-child {
|
1146
1144
|
margin-left: 0em;
|
1147
|
-
border-top-left-radius: 0.
|
1148
|
-
border-bottom-left-radius: 0.
|
1145
|
+
border-top-left-radius: 0.25em;
|
1146
|
+
border-bottom-left-radius: 0.25em;
|
1149
1147
|
}
|
1150
1148
|
.ui.buttons .button:last-child {
|
1151
|
-
border-top-right-radius: 0.
|
1152
|
-
border-bottom-right-radius: 0.
|
1149
|
+
border-top-right-radius: 0.25em;
|
1150
|
+
border-bottom-right-radius: 0.25em;
|
1153
1151
|
}
|
1154
1152
|
|
1155
1153
|
/* Vertical Style */
|
@@ -1159,9 +1157,7 @@
|
|
1159
1157
|
.ui.vertical.buttons .button {
|
1160
1158
|
display: block;
|
1161
1159
|
float: none;
|
1162
|
-
|
1163
|
-
border-left: none;
|
1164
|
-
box-shadow: none;
|
1160
|
+
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
|
1165
1161
|
}
|
1166
1162
|
.ui.vertical.buttons .button:first-child,
|
1167
1163
|
.ui.vertical.buttons .mini.button:first-child,
|
@@ -1170,9 +1166,9 @@
|
|
1170
1166
|
.ui.vertical.buttons .massive.button:first-child,
|
1171
1167
|
.ui.vertical.buttons .huge.button:first-child {
|
1172
1168
|
margin-top: 0px;
|
1173
|
-
-moz-border-radius: 0.
|
1174
|
-
-webkit-border-radius: 0.
|
1175
|
-
border-radius: 0.
|
1169
|
+
-moz-border-radius: 0.25em 0.25em 0px 0px;
|
1170
|
+
-webkit-border-radius: 0.25em 0.25em 0px 0px;
|
1171
|
+
border-radius: 0.25em 0.25em 0px 0px;
|
1176
1172
|
}
|
1177
1173
|
.ui.vertical.buttons .button:last-child,
|
1178
1174
|
.ui.vertical.buttons .mini.button:last-child,
|
@@ -1181,7 +1177,7 @@
|
|
1181
1177
|
.ui.vertical.buttons .massive.button:last-child,
|
1182
1178
|
.ui.vertical.buttons .huge.button:last-child,
|
1183
1179
|
.ui.vertical.buttons .gigantic.button:last-child {
|
1184
|
-
-moz-border-radius: 0px 0px 0.
|
1185
|
-
-webkit-border-radius: 0px 0px 0.
|
1186
|
-
border-radius: 0px 0px 0.
|
1180
|
+
-moz-border-radius: 0px 0px 0.25em 0.25em;
|
1181
|
+
-webkit-border-radius: 0px 0px 0.25em 0.25em;
|
1182
|
+
border-radius: 0px 0px 0.25em 0.25em;
|
1187
1183
|
}
|