semantic-ui-sass 2.1.6.0 → 2.1.8.0
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/CHANGELOG.md +4 -0
- data/README.md +2 -0
- data/app/assets/javascripts/semantic-ui/api.js +22 -16
- data/app/assets/javascripts/semantic-ui/checkbox.js +4 -4
- data/app/assets/javascripts/semantic-ui/popup.js +7 -3
- data/app/assets/javascripts/semantic-ui/search.js +36 -11
- data/app/assets/javascripts/semantic-ui/transition.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +42 -47
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +32 -32
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +75 -74
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +51 -51
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +61 -61
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +284 -284
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +10 -2
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +41 -41
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +55 -55
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +13 -13
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +115 -115
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +47 -47
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +19 -19
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +20 -20
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +14 -14
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +45 -45
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +47 -14
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +16 -18
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +5 -5
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +26 -26
- data/app/helpers/semantic_icon_helper.rb +2 -2
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/spec/helpers/semantic_icon_helper_spec.rb +16 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d7d2cb7ad2fb2864e040018e1844727a68af080
|
4
|
+
data.tar.gz: 4bfcf6ed10d135db95e5621f2a5fe36e7ad5aa6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c4fcafb26a30fd938b9f0bf37e4936008a17fb1de12d832ae2a166f8eab720d48cd192c92483f23b30ad0282bfdc582be045a51ae233918a589e15778491d1e
|
7
|
+
data.tar.gz: d2d2113744b7a264e085e8d000c5fab953cfffa26bf217cb2af71840fe6e005e14721f885adf24986ab9c7bc38658ba4eba484ac48cba14ded2f5f6a97071cb2
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -213,12 +213,12 @@ $.api = $.fn.api = function(parameters) {
|
|
213
213
|
|
214
214
|
// replace variables
|
215
215
|
url = module.add.urlData( url );
|
216
|
-
|
217
216
|
// missing url parameters
|
218
217
|
if( !url && !module.is.mocked()) {
|
219
218
|
return;
|
220
219
|
}
|
221
220
|
|
221
|
+
requestSettings.url = settings.base + url;
|
222
222
|
|
223
223
|
// look for jQuery ajax parameters in settings
|
224
224
|
ajaxSettings = $.extend(true, {}, settings, {
|
@@ -280,7 +280,7 @@ $.api = $.fn.api = function(parameters) {
|
|
280
280
|
return $module.is('form') || $context.is('form');
|
281
281
|
},
|
282
282
|
mocked: function() {
|
283
|
-
return (settings.mockResponse || settings.mockResponseAsync);
|
283
|
+
return (settings.mockResponse || settings.mockResponseAsync || settings.response || settings.responseAsync);
|
284
284
|
},
|
285
285
|
input: function() {
|
286
286
|
return $module.is('input');
|
@@ -592,9 +592,11 @@ $.api = $.fn.api = function(parameters) {
|
|
592
592
|
mockedXHR: function () {
|
593
593
|
var
|
594
594
|
// xhr does not simulate these properties of xhr but must return them
|
595
|
-
textStatus
|
596
|
-
status
|
597
|
-
httpMessage
|
595
|
+
textStatus = false,
|
596
|
+
status = false,
|
597
|
+
httpMessage = false,
|
598
|
+
responder = settings.mockResponse || settings.response,
|
599
|
+
asyncResponder = settings.mockResponseAsync || settings.responseAsync,
|
598
600
|
asyncCallback,
|
599
601
|
response,
|
600
602
|
mockedXHR
|
@@ -606,19 +608,19 @@ $.api = $.fn.api = function(parameters) {
|
|
606
608
|
.fail(module.event.xhr.fail)
|
607
609
|
;
|
608
610
|
|
609
|
-
if(
|
610
|
-
if( $.isFunction(
|
611
|
-
module.debug('Using
|
612
|
-
response =
|
611
|
+
if(responder) {
|
612
|
+
if( $.isFunction(responder) ) {
|
613
|
+
module.debug('Using specified synchronous callback', responder);
|
614
|
+
response = responder.call(context, requestSettings);
|
613
615
|
}
|
614
616
|
else {
|
615
|
-
module.debug('Using specified response',
|
616
|
-
response =
|
617
|
+
module.debug('Using settings specified response', responder);
|
618
|
+
response = responder;
|
617
619
|
}
|
618
620
|
// simulating response
|
619
621
|
mockedXHR.resolveWith(context, [ response, textStatus, { responseText: response }]);
|
620
622
|
}
|
621
|
-
else if( $.isFunction(
|
623
|
+
else if( $.isFunction(asyncResponder) ) {
|
622
624
|
asyncCallback = function(response) {
|
623
625
|
module.debug('Async callback returned response', response);
|
624
626
|
|
@@ -629,8 +631,8 @@ $.api = $.fn.api = function(parameters) {
|
|
629
631
|
mockedXHR.rejectWith(context, [{ responseText: response }, status, httpMessage]);
|
630
632
|
}
|
631
633
|
};
|
632
|
-
module.debug('Using async
|
633
|
-
|
634
|
+
module.debug('Using specified async response callback', asyncResponder);
|
635
|
+
asyncResponder.call(context, requestSettings, asyncCallback);
|
634
636
|
}
|
635
637
|
return mockedXHR;
|
636
638
|
},
|
@@ -722,8 +724,8 @@ $.api = $.fn.api = function(parameters) {
|
|
722
724
|
module.error(error.noReturnedValue);
|
723
725
|
}
|
724
726
|
return (runSettings !== undefined)
|
725
|
-
? runSettings
|
726
|
-
: settings
|
727
|
+
? $.extend(true, {}, runSettings)
|
728
|
+
: $.extend(true, {}, settings)
|
727
729
|
;
|
728
730
|
},
|
729
731
|
urlEncodedValue: function(value) {
|
@@ -1066,6 +1068,10 @@ $.api.settings = {
|
|
1066
1068
|
mockResponse : false,
|
1067
1069
|
mockResponseAsync : false,
|
1068
1070
|
|
1071
|
+
// aliases for mock
|
1072
|
+
response : false,
|
1073
|
+
responseAsync : false,
|
1074
|
+
|
1069
1075
|
// callbacks before request
|
1070
1076
|
beforeSend : function(settings) { return settings; },
|
1071
1077
|
beforeXHR : function(xhr) {},
|
@@ -268,7 +268,7 @@ $.fn.checkbox = function(parameters) {
|
|
268
268
|
}
|
269
269
|
module.debug('Enabling checkbox');
|
270
270
|
module.set.enabled();
|
271
|
-
settings.
|
271
|
+
settings.onEnabled.call(input);
|
272
272
|
},
|
273
273
|
|
274
274
|
disable: function() {
|
@@ -278,7 +278,7 @@ $.fn.checkbox = function(parameters) {
|
|
278
278
|
}
|
279
279
|
module.debug('Disabling checkbox');
|
280
280
|
module.set.disabled();
|
281
|
-
settings.
|
281
|
+
settings.onDisabled.call(input);
|
282
282
|
},
|
283
283
|
|
284
284
|
get: {
|
@@ -781,8 +781,8 @@ $.fn.checkbox.settings = {
|
|
781
781
|
onDeterminate : function() {},
|
782
782
|
onIndeterminate : function() {},
|
783
783
|
|
784
|
-
|
785
|
-
|
784
|
+
onEnable : function(){},
|
785
|
+
onDisable : function(){},
|
786
786
|
|
787
787
|
className : {
|
788
788
|
checked : 'checked',
|
@@ -841,6 +841,7 @@ $.fn.popup = function(parameters) {
|
|
841
841
|
module.remove.attempts();
|
842
842
|
module.remove.loading();
|
843
843
|
module.reset();
|
844
|
+
settings.onUnplaceable.call($popup, element);
|
844
845
|
return false;
|
845
846
|
}
|
846
847
|
}
|
@@ -1011,13 +1012,13 @@ $.fn.popup = function(parameters) {
|
|
1011
1012
|
return $module.hasClass(className.active);
|
1012
1013
|
},
|
1013
1014
|
animating: function() {
|
1014
|
-
return (
|
1015
|
+
return ($popup !== undefined && $popup.hasClass(className.animating) );
|
1015
1016
|
},
|
1016
1017
|
fluid: function() {
|
1017
|
-
return (
|
1018
|
+
return ($popup !== undefined && $popup.hasClass(className.fluid));
|
1018
1019
|
},
|
1019
1020
|
visible: function() {
|
1020
|
-
return $popup && $popup.hasClass(className.visible);
|
1021
|
+
return ($popup !== undefined && $popup.hasClass(className.visible));
|
1021
1022
|
},
|
1022
1023
|
dropdown: function() {
|
1023
1024
|
return $module.hasClass(className.dropdown);
|
@@ -1244,6 +1245,9 @@ $.fn.popup.settings = {
|
|
1244
1245
|
// callback before hide animation
|
1245
1246
|
onHide : function(){},
|
1246
1247
|
|
1248
|
+
// callback when popup cannot be positioned in visible screen
|
1249
|
+
onUnplaceable: function(){},
|
1250
|
+
|
1247
1251
|
// callback after hide animation
|
1248
1252
|
onHidden : function(){},
|
1249
1253
|
|
@@ -134,12 +134,29 @@ $.fn.search = function(parameters) {
|
|
134
134
|
},
|
135
135
|
blur: function(event) {
|
136
136
|
var
|
137
|
-
pageLostFocus = (document.activeElement === this)
|
137
|
+
pageLostFocus = (document.activeElement === this),
|
138
|
+
callback = function() {
|
139
|
+
module.cancel.query();
|
140
|
+
module.remove.focus();
|
141
|
+
module.timer = setTimeout(module.hideResults, settings.hideDelay);
|
142
|
+
}
|
138
143
|
;
|
139
|
-
if(
|
140
|
-
|
141
|
-
|
142
|
-
|
144
|
+
if(pageLostFocus) {
|
145
|
+
return;
|
146
|
+
}
|
147
|
+
if(module.resultsClicked) {
|
148
|
+
module.debug('Determining if user action caused search to close');
|
149
|
+
$module
|
150
|
+
.one('click', selector.results, function(event) {
|
151
|
+
if( !module.is.animating() && !module.is.hidden() ) {
|
152
|
+
callback();
|
153
|
+
}
|
154
|
+
})
|
155
|
+
;
|
156
|
+
}
|
157
|
+
else {
|
158
|
+
module.debug('Input blurred without user action, closing results');
|
159
|
+
callback();
|
143
160
|
}
|
144
161
|
},
|
145
162
|
result: {
|
@@ -298,6 +315,12 @@ $.fn.search = function(parameters) {
|
|
298
315
|
},
|
299
316
|
|
300
317
|
is: {
|
318
|
+
animating: function() {
|
319
|
+
return $results.hasClass(className.animating);
|
320
|
+
},
|
321
|
+
hidden: function() {
|
322
|
+
return $results.hasClass(className.hidden);
|
323
|
+
},
|
301
324
|
empty: function() {
|
302
325
|
return ($results.html() === '');
|
303
326
|
},
|
@@ -1106,12 +1129,14 @@ $.fn.search.settings = {
|
|
1106
1129
|
onResultsClose : function(){},
|
1107
1130
|
|
1108
1131
|
className: {
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1132
|
+
animating : 'animating',
|
1133
|
+
active : 'active',
|
1134
|
+
empty : 'empty',
|
1135
|
+
focus : 'focus',
|
1136
|
+
hidden : 'hidden',
|
1137
|
+
loading : 'loading',
|
1138
|
+
results : 'results',
|
1139
|
+
pressed : 'down'
|
1115
1140
|
},
|
1116
1141
|
|
1117
1142
|
error : {
|
@@ -1062,7 +1062,7 @@ $.fn.transition.settings = {
|
|
1062
1062
|
|
1063
1063
|
// possible errors
|
1064
1064
|
error: {
|
1065
|
-
noAnimation : '
|
1065
|
+
noAnimation : 'Element is no longer attached to DOM. Unable to animate.',
|
1066
1066
|
repeated : 'That animation is already occurring, cancelling repeated animation',
|
1067
1067
|
method : 'The method you called is not defined',
|
1068
1068
|
support : 'This browser does not support CSS animations'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.1.
|
2
|
+
* # Semantic UI 2.1.7 - Breadcrumb
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -45,7 +45,7 @@
|
|
45
45
|
|
46
46
|
/* Link */
|
47
47
|
.ui.breadcrumb a {
|
48
|
-
color: #
|
48
|
+
color: #4183c4;
|
49
49
|
}
|
50
50
|
.ui.breadcrumb a:hover {
|
51
51
|
color: #1e70bf;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.1.
|
2
|
+
* # Semantic UI 2.1.7 - Form
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -106,7 +106,7 @@
|
|
106
106
|
line-height: 1.2142em;
|
107
107
|
padding: 0.67861429em 1em;
|
108
108
|
font-size: 1em;
|
109
|
-
background: #
|
109
|
+
background: #ffffff;
|
110
110
|
border: 1px solid rgba(34, 36, 38, 0.15);
|
111
111
|
color: rgba(0, 0, 0, 0.87);
|
112
112
|
border-radius: 0.28571429rem;
|
@@ -121,7 +121,7 @@
|
|
121
121
|
-webkit-appearance: none;
|
122
122
|
tap-highlight-color: rgba(255, 255, 255, 0);
|
123
123
|
padding: 0.78571429em 1em;
|
124
|
-
background: #
|
124
|
+
background: #ffffff;
|
125
125
|
border: 1px solid rgba(34, 36, 38, 0.15);
|
126
126
|
outline: none;
|
127
127
|
color: rgba(0, 0, 0, 0.87);
|
@@ -159,7 +159,7 @@
|
|
159
159
|
display: block;
|
160
160
|
height: auto;
|
161
161
|
width: 100%;
|
162
|
-
background: #
|
162
|
+
background: #ffffff;
|
163
163
|
border: 1px solid rgba(34, 36, 38, 0.15);
|
164
164
|
border-radius: 0.28571429rem;
|
165
165
|
box-shadow: 0em 0em 0em 0em transparent inset;
|
@@ -256,9 +256,9 @@
|
|
256
256
|
|
257
257
|
.ui.form .field .prompt.label {
|
258
258
|
white-space: normal;
|
259
|
-
background: #
|
260
|
-
border: 1px solid #
|
261
|
-
color: #
|
259
|
+
background: #ffffff !important;
|
260
|
+
border: 1px solid #e0b4b4 !important;
|
261
|
+
color: #9f3a38 !important;
|
262
262
|
}
|
263
263
|
.ui.form .inline.fields .field .prompt,
|
264
264
|
.ui.form .inline.field .prompt {
|
@@ -285,20 +285,20 @@
|
|
285
285
|
---------------------*/
|
286
286
|
|
287
287
|
.ui.form .field.field input:-webkit-autofill {
|
288
|
-
box-shadow: 0px 0px 0px 100px #
|
289
|
-
border-color: #
|
288
|
+
box-shadow: 0px 0px 0px 100px #fffff0 inset !important;
|
289
|
+
border-color: #e5dfa1 !important;
|
290
290
|
}
|
291
291
|
|
292
292
|
/* Focus */
|
293
293
|
.ui.form .field.field input:-webkit-autofill:focus {
|
294
|
-
box-shadow: 0px 0px 0px 100px #
|
295
|
-
border-color: #
|
294
|
+
box-shadow: 0px 0px 0px 100px #fffff0 inset !important;
|
295
|
+
border-color: #d5c315 !important;
|
296
296
|
}
|
297
297
|
|
298
298
|
/* Error */
|
299
299
|
.ui.form .error.error input:-webkit-autofill {
|
300
|
-
box-shadow: 0px 0px 0px 100px #
|
301
|
-
border-color: #
|
300
|
+
box-shadow: 0px 0px 0px 100px #fffaf0 inset !important;
|
301
|
+
border-color: #e0b4b4 !important;
|
302
302
|
}
|
303
303
|
|
304
304
|
/*--------------------
|
@@ -362,16 +362,16 @@
|
|
362
362
|
.ui.form input[type="text"]:focus,
|
363
363
|
.ui.form input[type="url"]:focus {
|
364
364
|
color: rgba(0, 0, 0, 0.95);
|
365
|
-
border-color: #
|
365
|
+
border-color: #85b7d9;
|
366
366
|
border-radius: 0.28571429rem;
|
367
|
-
background: #
|
367
|
+
background: #ffffff;
|
368
368
|
box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
|
369
369
|
}
|
370
370
|
.ui.form textarea:focus {
|
371
371
|
color: rgba(0, 0, 0, 0.95);
|
372
|
-
border-color: #
|
372
|
+
border-color: #85b7d9;
|
373
373
|
border-radius: 0.28571429rem;
|
374
|
-
background: #
|
374
|
+
background: #ffffff;
|
375
375
|
box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
|
376
376
|
-webkit-appearance: none;
|
377
377
|
}
|
@@ -429,12 +429,12 @@
|
|
429
429
|
.ui.form .field.error label,
|
430
430
|
.ui.form .fields.error .field .input,
|
431
431
|
.ui.form .field.error .input {
|
432
|
-
color: #
|
432
|
+
color: #9f3a38;
|
433
433
|
}
|
434
434
|
.ui.form .fields.error .field .corner.label,
|
435
435
|
.ui.form .field.error .corner.label {
|
436
|
-
border-color: #
|
437
|
-
color: #
|
436
|
+
border-color: #9f3a38;
|
437
|
+
color: #ffffff;
|
438
438
|
}
|
439
439
|
.ui.form .fields.error .field textarea,
|
440
440
|
.ui.form .fields.error .field select,
|
@@ -462,9 +462,9 @@
|
|
462
462
|
.ui.form .field.error input[type="time"],
|
463
463
|
.ui.form .field.error input[type="text"],
|
464
464
|
.ui.form .field.error input[type="url"] {
|
465
|
-
background: #
|
466
|
-
border-color: #
|
467
|
-
color: #
|
465
|
+
background: #fff6f6;
|
466
|
+
border-color: #e0b4b4;
|
467
|
+
color: #9f3a38;
|
468
468
|
border-radius: '';
|
469
469
|
box-shadow: none;
|
470
470
|
}
|
@@ -481,9 +481,9 @@
|
|
481
481
|
.ui.form .field.error input[type="time"]:focus,
|
482
482
|
.ui.form .field.error input[type="text"]:focus,
|
483
483
|
.ui.form .field.error input[type="url"]:focus {
|
484
|
-
background: #
|
485
|
-
border-color: #
|
486
|
-
color: #
|
484
|
+
background: #fff6f6;
|
485
|
+
border-color: #e0b4b4;
|
486
|
+
color: #9f3a38;
|
487
487
|
-webkit-appearance: none;
|
488
488
|
box-shadow: none;
|
489
489
|
}
|
@@ -502,43 +502,43 @@
|
|
502
502
|
.ui.form .field.error .ui.dropdown,
|
503
503
|
.ui.form .field.error .ui.dropdown .text,
|
504
504
|
.ui.form .field.error .ui.dropdown .item {
|
505
|
-
background: #
|
506
|
-
color: #
|
505
|
+
background: #fff6f6;
|
506
|
+
color: #9f3a38;
|
507
507
|
}
|
508
508
|
.ui.form .fields.error .field .ui.dropdown,
|
509
509
|
.ui.form .field.error .ui.dropdown {
|
510
|
-
border-color: #
|
510
|
+
border-color: #e0b4b4 !important;
|
511
511
|
}
|
512
512
|
.ui.form .fields.error .field .ui.dropdown:hover,
|
513
513
|
.ui.form .field.error .ui.dropdown:hover {
|
514
|
-
border-color: #
|
514
|
+
border-color: #e0b4b4 !important;
|
515
515
|
}
|
516
516
|
.ui.form .fields.error .field .ui.dropdown:hover .menu,
|
517
517
|
.ui.form .field.error .ui.dropdown:hover .menu {
|
518
|
-
border-color: #
|
518
|
+
border-color: #e0b4b4;
|
519
519
|
}
|
520
520
|
.ui.form .fields.error .field .ui.multiple.selection.dropdown > .label,
|
521
521
|
.ui.form .field.error .ui.multiple.selection.dropdown > .label {
|
522
|
-
background-color: #
|
523
|
-
color: #
|
522
|
+
background-color: #eacbcb;
|
523
|
+
color: #9f3a38;
|
524
524
|
}
|
525
525
|
|
526
526
|
/* Hover */
|
527
527
|
.ui.form .fields.error .field .ui.dropdown .menu .item:hover,
|
528
528
|
.ui.form .field.error .ui.dropdown .menu .item:hover {
|
529
|
-
background-color: #
|
529
|
+
background-color: #fbe7e7;
|
530
530
|
}
|
531
531
|
|
532
532
|
/* Selected */
|
533
533
|
.ui.form .fields.error .field .ui.dropdown .menu .selected.item,
|
534
534
|
.ui.form .field.error .ui.dropdown .menu .selected.item {
|
535
|
-
background-color: #
|
535
|
+
background-color: #fbe7e7;
|
536
536
|
}
|
537
537
|
|
538
538
|
/* Active */
|
539
539
|
.ui.form .fields.error .field .ui.dropdown .menu .active.item,
|
540
540
|
.ui.form .field.error .ui.dropdown .menu .active.item {
|
541
|
-
background-color: #
|
541
|
+
background-color: #fdcfcf !important;
|
542
542
|
}
|
543
543
|
|
544
544
|
/*--------------------
|
@@ -549,20 +549,20 @@
|
|
549
549
|
.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,
|
550
550
|
.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,
|
551
551
|
.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box {
|
552
|
-
color: #
|
552
|
+
color: #9f3a38;
|
553
553
|
}
|
554
554
|
.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before,
|
555
555
|
.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,
|
556
556
|
.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,
|
557
557
|
.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before {
|
558
|
-
background: #
|
559
|
-
border-color: #
|
558
|
+
background: #fff6f6;
|
559
|
+
border-color: #e0b4b4;
|
560
560
|
}
|
561
561
|
.ui.form .fields.error .field .checkbox label:after,
|
562
562
|
.ui.form .field.error .checkbox label:after,
|
563
563
|
.ui.form .fields.error .field .checkbox .box:after,
|
564
564
|
.ui.form .field.error .checkbox .box:after {
|
565
|
-
color: #
|
565
|
+
color: #9f3a38;
|
566
566
|
}
|
567
567
|
|
568
568
|
/*--------------------
|
@@ -590,11 +590,6 @@
|
|
590
590
|
position: relative;
|
591
591
|
cursor: default;
|
592
592
|
point-events: none;
|
593
|
-
text-shadow: none !important;
|
594
|
-
color: transparent !important;
|
595
|
-
-webkit-transition: all 0s linear;
|
596
|
-
transition: all 0s linear;
|
597
|
-
z-index: 100;
|
598
593
|
}
|
599
594
|
.ui.loading.form:before {
|
600
595
|
position: absolute;
|
@@ -664,7 +659,7 @@
|
|
664
659
|
.ui.form .required.field > .checkbox:after {
|
665
660
|
margin: -0.2em 0em 0em 0.2em;
|
666
661
|
content: '*';
|
667
|
-
color: #
|
662
|
+
color: #db2828;
|
668
663
|
}
|
669
664
|
.ui.form .required.fields:not(.grouped) > .field > label:after,
|
670
665
|
.ui.form .required.fields.grouped > label:after,
|
@@ -710,7 +705,7 @@
|
|
710
705
|
.ui.inverted.form input[type="time"],
|
711
706
|
.ui.inverted.form input[type="text"],
|
712
707
|
.ui.inverted.form input[type="url"] {
|
713
|
-
background: #
|
708
|
+
background: #ffffff;
|
714
709
|
border-color: rgba(255, 255, 255, 0.1);
|
715
710
|
color: rgba(0, 0, 0, 0.87);
|
716
711
|
box-shadow: none;
|