@transferwise/neptune-css 0.0.0-experimental-b2666ac → 0.0.0-experimental-d2bc8ee
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.
- package/dist/css/accordion.css +6 -5
- package/dist/css/alerts.css +14 -142
- package/dist/css/background.css +2 -2
- package/dist/css/badge.css +1 -3
- package/dist/css/breadcrumbs.css +1 -1
- package/dist/css/button-groups.css +2 -6
- package/dist/css/buttons.css +151 -176
- package/dist/css/chevron.css +1 -1
- package/dist/css/circles.css +10 -11
- package/dist/css/close.css +2 -3
- package/dist/css/column-layout.css +0 -1
- package/dist/css/currency-flags.css +1 -1
- package/dist/css/decision.css +5 -4
- package/dist/css/dropdowns.css +8 -26
- package/dist/css/droppable.css +12 -9
- package/dist/css/footer.css +8 -43
- package/dist/css/input-groups.css +142 -137
- package/dist/css/list-group.css +8 -31
- package/dist/css/modals.css +3 -4
- package/dist/css/navbar.css +37 -142
- package/dist/css/navs.css +8 -20
- package/dist/css/neptune-addons.css +4 -83
- package/dist/css/neptune-core.css +33 -119
- package/dist/css/neptune.css +655 -1245
- package/dist/css/popovers.css +6 -10
- package/dist/css/process.css +8 -8
- package/dist/css/progress-bars.css +2 -7
- package/dist/css/ring.css +2 -2
- package/dist/css/select.css +2 -2
- package/dist/css/sequences.css +39 -95
- package/dist/css/table.css +14 -48
- package/dist/css/tick.css +0 -1
- package/dist/css/tooltip.css +1 -2
- package/dist/css/wells.css +5 -5
- package/dist/less/neptune-tokens.less +82 -174
- package/dist/props/neptune-tokens.css +80 -40
- package/package.json +2 -2
- package/src/less/addons/_background-utilities.less +0 -37
- package/src/less/alerts.less +0 -36
- package/src/less/background.less +0 -1
- package/src/less/buttons.less +0 -22
- package/src/less/column-layout.less +0 -1
- package/src/less/core/_fonts.less +0 -26
- package/src/less/core/_scaffolding.less +2 -31
- package/src/less/core/_typography-utilities.less +0 -29
- package/src/less/dropdowns.less +0 -18
- package/src/less/footer.less +0 -33
- package/src/less/mixins/_sequence.less +2 -2
- package/src/less/modals.less +0 -1
- package/src/less/navbar.less +0 -35
- package/src/less/navs.less +0 -10
- package/src/less/sequences.less +0 -26
- package/src/less/table.less +0 -8
- package/src/variables/neptune-tokens.less +2 -9
- package/dist/fonts/TW-Averta-Bold.woff +0 -0
- package/dist/fonts/TW-Averta-Bold.woff2 +0 -0
- package/dist/fonts/TW-Averta-Regular.woff +0 -0
- package/dist/fonts/TW-Averta-Regular.woff2 +0 -0
- package/dist/fonts/TW-Averta-Semibold.woff +0 -0
- package/dist/fonts/TW-Averta-Semibold.woff2 +0 -0
- package/dist/fonts/TransferWise-IconFont.svg +0 -81
- package/dist/fonts/TransferWise-IconFont.woff +0 -0
- package/dist/props/legacy-custom-props.css +0 -69
- package/src/fonts/TW-Averta-Bold.woff +0 -0
- package/src/fonts/TW-Averta-Bold.woff2 +0 -0
- package/src/fonts/TW-Averta-Regular.woff +0 -0
- package/src/fonts/TW-Averta-Regular.woff2 +0 -0
- package/src/fonts/TW-Averta-Semibold.woff +0 -0
- package/src/fonts/TW-Averta-Semibold.woff2 +0 -0
- package/src/fonts/TransferWise-IconFont.svg +0 -81
- package/src/fonts/TransferWise-IconFont.woff +0 -0
- package/src/props/legacy-custom-props.css +0 -69
|
@@ -22,7 +22,7 @@ label {
|
|
|
22
22
|
}
|
|
23
23
|
label,
|
|
24
24
|
.secondary {
|
|
25
|
-
color: #
|
|
25
|
+
color: #454745;
|
|
26
26
|
color: var(--color-content-secondary);
|
|
27
27
|
transition: color ease-in-out 0.15s;
|
|
28
28
|
font-size: 0.875rem;
|
|
@@ -73,18 +73,18 @@ output {
|
|
|
73
73
|
font-size: var(--font-size-16);
|
|
74
74
|
line-height: 1.2;
|
|
75
75
|
line-height: var(--line-height-control);
|
|
76
|
-
color: #
|
|
76
|
+
color: #0e0f0c;
|
|
77
77
|
color: var(--color-content-primary);
|
|
78
78
|
}
|
|
79
79
|
.form-control {
|
|
80
80
|
display: block;
|
|
81
81
|
width: 100%;
|
|
82
|
-
color: #
|
|
82
|
+
color: #0e0f0c;
|
|
83
83
|
color: var(--color-content-primary);
|
|
84
84
|
background-color: #ffffff;
|
|
85
85
|
background-color: var(--color-background-screen);
|
|
86
86
|
background-image: none;
|
|
87
|
-
border: 1px solid #
|
|
87
|
+
border: 1px solid #868685;
|
|
88
88
|
border: 1px solid var(--color-interactive-secondary);
|
|
89
89
|
transition: border-color ease-in-out 0.15s;
|
|
90
90
|
min-height: var(--input-height-base);
|
|
@@ -106,16 +106,16 @@ select[multiple].form-control {
|
|
|
106
106
|
height: auto;
|
|
107
107
|
}
|
|
108
108
|
.form-control:not(.disabled):not(:disabled):focus {
|
|
109
|
-
border-color: #
|
|
109
|
+
border-color: #65cf21;
|
|
110
110
|
border-color: var(--color-interactive-accent-active);
|
|
111
111
|
outline: 0;
|
|
112
112
|
}
|
|
113
113
|
.form-control::-moz-placeholder {
|
|
114
|
-
color: #
|
|
114
|
+
color: #6a6c6a;
|
|
115
115
|
color: var(--color-content-tertiary);
|
|
116
116
|
}
|
|
117
117
|
.form-control::placeholder {
|
|
118
|
-
color: #
|
|
118
|
+
color: #6a6c6a;
|
|
119
119
|
color: var(--color-content-tertiary);
|
|
120
120
|
}
|
|
121
121
|
textarea.form-control {
|
|
@@ -132,18 +132,20 @@ textarea.form-control {
|
|
|
132
132
|
margin-top: 8px;
|
|
133
133
|
}
|
|
134
134
|
.form-control:focus {
|
|
135
|
-
border-color: #
|
|
135
|
+
border-color: #65cf21;
|
|
136
136
|
border-color: var(--color-interactive-accent-active);
|
|
137
137
|
}
|
|
138
138
|
.np-theme-personal .form-control:not(.disabled):not(:disabled):focus {
|
|
139
|
+
border-color: #163300;
|
|
139
140
|
border-color: var(--color-interactive-primary);
|
|
140
141
|
outline: 0;
|
|
141
142
|
}
|
|
142
143
|
.np-theme-personal .form-control:hover {
|
|
143
|
-
border-color: #
|
|
144
|
+
border-color: #6c6c6b;
|
|
144
145
|
border-color: var(--color-interactive-secondary-hover);
|
|
145
146
|
}
|
|
146
147
|
.np-theme-personal .form-control:focus {
|
|
148
|
+
border-color: #163300;
|
|
147
149
|
border-color: var(--color-interactive-primary);
|
|
148
150
|
}
|
|
149
151
|
input[type='search'] {
|
|
@@ -188,7 +190,7 @@ input[type='search'] {
|
|
|
188
190
|
}
|
|
189
191
|
.form-group:focus-within .control-label,
|
|
190
192
|
.form-group:focus-within > label {
|
|
191
|
-
color: #
|
|
193
|
+
color: #0e0f0c;
|
|
192
194
|
color: var(--color-content-primary);
|
|
193
195
|
}
|
|
194
196
|
.row-equal-height > [class*='col-'] > .form-group {
|
|
@@ -280,11 +282,11 @@ fieldset[disabled] .checkbox label {
|
|
|
280
282
|
margin-bottom: 0;
|
|
281
283
|
min-height: calc(1.2 * 2);
|
|
282
284
|
min-height: calc(var(--line-height-control) * 2);
|
|
283
|
-
color: #
|
|
285
|
+
color: #454745;
|
|
284
286
|
color: var(--color-content-secondary);
|
|
285
|
-
background-color: rgba(
|
|
287
|
+
background-color: rgba(22,51,0,0.07843);
|
|
286
288
|
background-color: var(--color-background-neutral);
|
|
287
|
-
border: 1px solid #
|
|
289
|
+
border: 1px solid #868685;
|
|
288
290
|
border: 1px solid var(--color-interactive-secondary);
|
|
289
291
|
border-radius: 3px;
|
|
290
292
|
padding: var(--input-padding);
|
|
@@ -454,17 +456,17 @@ select[multiple].input-lg {
|
|
|
454
456
|
}
|
|
455
457
|
.focus .control-label,
|
|
456
458
|
.has-focus .control-label {
|
|
457
|
-
color: #
|
|
459
|
+
color: #0e0f0c;
|
|
458
460
|
color: var(--color-content-primary);
|
|
459
461
|
}
|
|
460
462
|
.focus .input-group-addon,
|
|
461
463
|
.has-focus .input-group-addon {
|
|
462
|
-
border-color: #
|
|
464
|
+
border-color: #868685;
|
|
463
465
|
border-color: var(--color-interactive-secondary);
|
|
464
466
|
}
|
|
465
467
|
.focus .input-group-addon:active,
|
|
466
468
|
.has-focus .input-group-addon:active {
|
|
467
|
-
border-color: #
|
|
469
|
+
border-color: #525251;
|
|
468
470
|
border-color: var(--color-interactive-secondary-active);
|
|
469
471
|
}
|
|
470
472
|
.help-block,
|
|
@@ -483,11 +485,11 @@ select[multiple].input-lg {
|
|
|
483
485
|
color: inherit;
|
|
484
486
|
}
|
|
485
487
|
.help-block {
|
|
486
|
-
color: #
|
|
488
|
+
color: #454745;
|
|
487
489
|
color: var(--color-content-secondary);
|
|
488
|
-
border-color: #
|
|
490
|
+
border-color: #868685;
|
|
489
491
|
border-color: var(--color-interactive-secondary);
|
|
490
|
-
background-color: rgba(
|
|
492
|
+
background-color: rgba(22,51,0,0.07843);
|
|
491
493
|
background-color: var(--color-background-neutral);
|
|
492
494
|
display: block;
|
|
493
495
|
position: relative;
|
|
@@ -560,11 +562,10 @@ select[multiple].input-lg {
|
|
|
560
562
|
}
|
|
561
563
|
.focus .alert,
|
|
562
564
|
.has-focus .alert {
|
|
563
|
-
border-color: #
|
|
565
|
+
border-color: #65cf21;
|
|
564
566
|
border-color: var(--color-interactive-accent-active);
|
|
565
567
|
}
|
|
566
568
|
.has-success {
|
|
567
|
-
border-color: #2ead4b !important;
|
|
568
569
|
border-color: var(--color-interactive-positive) !important;
|
|
569
570
|
}
|
|
570
571
|
.has-success .control-label,
|
|
@@ -581,9 +582,7 @@ select[multiple].input-lg {
|
|
|
581
582
|
.has-success .radio-inline label,
|
|
582
583
|
.has-success .checkbox-inline label,
|
|
583
584
|
.has-success .input-group-addon {
|
|
584
|
-
color: #008026 !important;
|
|
585
585
|
color: var(--color-content-positive) !important;
|
|
586
|
-
border-color: #2ead4b !important;
|
|
587
586
|
border-color: var(--color-interactive-positive) !important;
|
|
588
587
|
}
|
|
589
588
|
.has-success .form-control,
|
|
@@ -592,7 +591,6 @@ select[multiple].input-lg {
|
|
|
592
591
|
.has-success .btn-input:not(.disabled):not(:disabled):hover,
|
|
593
592
|
.has-success .input-group-addon,
|
|
594
593
|
.has-success .alert {
|
|
595
|
-
border-color: #2ead4b !important;
|
|
596
594
|
border-color: var(--color-interactive-positive) !important;
|
|
597
595
|
}
|
|
598
596
|
.has-success:active .form-control,
|
|
@@ -616,32 +614,27 @@ select[multiple].input-lg {
|
|
|
616
614
|
.has-success:active .alert,
|
|
617
615
|
.has-success:focus .alert,
|
|
618
616
|
.has-success:focus-within .alert {
|
|
619
|
-
border-color: #069939 !important;
|
|
620
617
|
border-color: var(--color-interactive-positive-hover) !important;
|
|
621
618
|
}
|
|
622
619
|
.has-success:not(.disabled):not(:disabled):hover.radio label,
|
|
623
620
|
.has-success:not(.disabled):not(:disabled):hover.checkbox label,
|
|
624
621
|
.has-success:not(.disabled):not(:disabled):hover .btn-input,
|
|
625
622
|
.has-success:not(.disabled):not(:disabled):hover .alert {
|
|
626
|
-
border-color: #069939 !important;
|
|
627
623
|
border-color: var(--color-interactive-positive-hover) !important;
|
|
628
624
|
}
|
|
629
625
|
.has-success .form-control-feedback {
|
|
630
|
-
color: #008026;
|
|
631
626
|
color: var(--color-content-positive);
|
|
632
627
|
}
|
|
633
628
|
.has-success .radio > label:not(.disabled):not(:disabled),
|
|
634
629
|
.has-success.checkbox > label:not(.disabled):not(:disabled) {
|
|
635
|
-
border-color: #2ead4b;
|
|
636
630
|
border-color: var(--color-interactive-positive);
|
|
637
|
-
color: #
|
|
631
|
+
color: #0e0f0c;
|
|
638
632
|
color: var(--color-content-primary);
|
|
639
633
|
}
|
|
640
634
|
.has-success .radio > label:not(.disabled):not(:disabled):hover,
|
|
641
635
|
.has-success.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
642
636
|
.has-success .radio > label:focus-within,
|
|
643
637
|
.has-success.checkbox > label:focus-within {
|
|
644
|
-
border-color: #069939 !important;
|
|
645
638
|
border-color: var(--color-interactive-positive-hover) !important;
|
|
646
639
|
}
|
|
647
640
|
.has-success .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -652,17 +645,16 @@ select[multiple].input-lg {
|
|
|
652
645
|
.has-success.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
653
646
|
.has-success .radio > label:focus-within .tw-radio-button,
|
|
654
647
|
.has-success.checkbox > label:focus-within .tw-radio-button {
|
|
655
|
-
border-color: #069939 !important;
|
|
656
648
|
border-color: var(--color-interactive-positive-hover) !important;
|
|
657
649
|
}
|
|
658
650
|
.has-success .radio .tw-checkbox-button,
|
|
659
651
|
.has-success.checkbox .tw-checkbox-button,
|
|
660
652
|
.has-success .radio .tw-radio-button,
|
|
661
653
|
.has-success.checkbox .tw-radio-button {
|
|
662
|
-
border-color: #2ead4b;
|
|
663
654
|
border-color: var(--color-interactive-positive);
|
|
664
655
|
}
|
|
665
656
|
.np-theme-personal .has-success {
|
|
657
|
+
border-color: #054d28 !important;
|
|
666
658
|
border-color: var(--color-sentiment-positive) !important;
|
|
667
659
|
}
|
|
668
660
|
.np-theme-personal .has-success .control-label,
|
|
@@ -679,8 +671,9 @@ select[multiple].input-lg {
|
|
|
679
671
|
.np-theme-personal .has-success .radio-inline label,
|
|
680
672
|
.np-theme-personal .has-success .checkbox-inline label,
|
|
681
673
|
.np-theme-personal .has-success .input-group-addon {
|
|
682
|
-
color: #
|
|
674
|
+
color: #0e0f0c !important;
|
|
683
675
|
color: var(--color-content-primary) !important;
|
|
676
|
+
border-color: #054d28 !important;
|
|
684
677
|
border-color: var(--color-sentiment-positive) !important;
|
|
685
678
|
}
|
|
686
679
|
.np-theme-personal .has-success .form-control,
|
|
@@ -689,6 +682,7 @@ select[multiple].input-lg {
|
|
|
689
682
|
.np-theme-personal .has-success .btn-input:not(.disabled):not(:disabled):hover,
|
|
690
683
|
.np-theme-personal .has-success .input-group-addon,
|
|
691
684
|
.np-theme-personal .has-success .alert {
|
|
685
|
+
border-color: #054d28 !important;
|
|
692
686
|
border-color: var(--color-sentiment-positive) !important;
|
|
693
687
|
}
|
|
694
688
|
.np-theme-personal .has-success:active .form-control,
|
|
@@ -712,28 +706,32 @@ select[multiple].input-lg {
|
|
|
712
706
|
.np-theme-personal .has-success:active .alert,
|
|
713
707
|
.np-theme-personal .has-success:focus .alert,
|
|
714
708
|
.np-theme-personal .has-success:focus-within .alert {
|
|
709
|
+
border-color: #054d28 !important;
|
|
715
710
|
border-color: var(--color-sentiment-positive) !important;
|
|
716
711
|
}
|
|
717
712
|
.np-theme-personal .has-success:not(.disabled):not(:disabled):hover.radio label,
|
|
718
713
|
.np-theme-personal .has-success:not(.disabled):not(:disabled):hover.checkbox label,
|
|
719
714
|
.np-theme-personal .has-success:not(.disabled):not(:disabled):hover .btn-input,
|
|
720
715
|
.np-theme-personal .has-success:not(.disabled):not(:disabled):hover .alert {
|
|
716
|
+
border-color: #054d28 !important;
|
|
721
717
|
border-color: var(--color-sentiment-positive) !important;
|
|
722
718
|
}
|
|
723
719
|
.np-theme-personal .has-success .form-control-feedback {
|
|
724
|
-
color: #
|
|
720
|
+
color: #0e0f0c;
|
|
725
721
|
color: var(--color-content-primary);
|
|
726
722
|
}
|
|
727
723
|
.np-theme-personal .has-success .radio > label:not(.disabled):not(:disabled),
|
|
728
724
|
.np-theme-personal .has-success.checkbox > label:not(.disabled):not(:disabled) {
|
|
725
|
+
border-color: #054d28;
|
|
729
726
|
border-color: var(--color-sentiment-positive);
|
|
730
|
-
color: #
|
|
727
|
+
color: #0e0f0c;
|
|
731
728
|
color: var(--color-content-primary);
|
|
732
729
|
}
|
|
733
730
|
.np-theme-personal .has-success .radio > label:not(.disabled):not(:disabled):hover,
|
|
734
731
|
.np-theme-personal .has-success.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
735
732
|
.np-theme-personal .has-success .radio > label:focus-within,
|
|
736
733
|
.np-theme-personal .has-success.checkbox > label:focus-within {
|
|
734
|
+
border-color: #054d28 !important;
|
|
737
735
|
border-color: var(--color-sentiment-positive) !important;
|
|
738
736
|
}
|
|
739
737
|
.np-theme-personal .has-success .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -744,16 +742,18 @@ select[multiple].input-lg {
|
|
|
744
742
|
.np-theme-personal .has-success.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
745
743
|
.np-theme-personal .has-success .radio > label:focus-within .tw-radio-button,
|
|
746
744
|
.np-theme-personal .has-success.checkbox > label:focus-within .tw-radio-button {
|
|
745
|
+
border-color: #054d28 !important;
|
|
747
746
|
border-color: var(--color-sentiment-positive) !important;
|
|
748
747
|
}
|
|
749
748
|
.np-theme-personal .has-success .radio .tw-checkbox-button,
|
|
750
749
|
.np-theme-personal .has-success.checkbox .tw-checkbox-button,
|
|
751
750
|
.np-theme-personal .has-success .radio .tw-radio-button,
|
|
752
751
|
.np-theme-personal .has-success.checkbox .tw-radio-button {
|
|
752
|
+
border-color: #054d28;
|
|
753
753
|
border-color: var(--color-sentiment-positive);
|
|
754
754
|
}
|
|
755
755
|
.has-info {
|
|
756
|
-
border-color: #
|
|
756
|
+
border-color: #9fe870 !important;
|
|
757
757
|
border-color: var(--color-interactive-accent) !important;
|
|
758
758
|
}
|
|
759
759
|
.has-info .control-label,
|
|
@@ -770,9 +770,8 @@ select[multiple].input-lg {
|
|
|
770
770
|
.has-info .radio-inline label,
|
|
771
771
|
.has-info .checkbox-inline label,
|
|
772
772
|
.has-info .input-group-addon {
|
|
773
|
-
color: #0097c7 !important;
|
|
774
773
|
color: var(--color-content-accent) !important;
|
|
775
|
-
border-color: #
|
|
774
|
+
border-color: #9fe870 !important;
|
|
776
775
|
border-color: var(--color-interactive-accent) !important;
|
|
777
776
|
}
|
|
778
777
|
.has-info .form-control,
|
|
@@ -781,7 +780,7 @@ select[multiple].input-lg {
|
|
|
781
780
|
.has-info .btn-input:not(.disabled):not(:disabled):hover,
|
|
782
781
|
.has-info .input-group-addon,
|
|
783
782
|
.has-info .alert {
|
|
784
|
-
border-color: #
|
|
783
|
+
border-color: #9fe870 !important;
|
|
785
784
|
border-color: var(--color-interactive-accent) !important;
|
|
786
785
|
}
|
|
787
786
|
.has-info:active .form-control,
|
|
@@ -805,32 +804,31 @@ select[multiple].input-lg {
|
|
|
805
804
|
.has-info:active .alert,
|
|
806
805
|
.has-info:focus .alert,
|
|
807
806
|
.has-info:focus-within .alert {
|
|
808
|
-
border-color: #
|
|
807
|
+
border-color: #80e142 !important;
|
|
809
808
|
border-color: var(--color-interactive-accent-hover) !important;
|
|
810
809
|
}
|
|
811
810
|
.has-info:not(.disabled):not(:disabled):hover.radio label,
|
|
812
811
|
.has-info:not(.disabled):not(:disabled):hover.checkbox label,
|
|
813
812
|
.has-info:not(.disabled):not(:disabled):hover .btn-input,
|
|
814
813
|
.has-info:not(.disabled):not(:disabled):hover .alert {
|
|
815
|
-
border-color: #
|
|
814
|
+
border-color: #80e142 !important;
|
|
816
815
|
border-color: var(--color-interactive-accent-hover) !important;
|
|
817
816
|
}
|
|
818
817
|
.has-info .form-control-feedback {
|
|
819
|
-
color: #0097c7;
|
|
820
818
|
color: var(--color-content-accent);
|
|
821
819
|
}
|
|
822
820
|
.has-info .radio > label:not(.disabled):not(:disabled),
|
|
823
821
|
.has-info.checkbox > label:not(.disabled):not(:disabled) {
|
|
824
|
-
border-color: #
|
|
822
|
+
border-color: #9fe870;
|
|
825
823
|
border-color: var(--color-interactive-accent);
|
|
826
|
-
color: #
|
|
824
|
+
color: #0e0f0c;
|
|
827
825
|
color: var(--color-content-primary);
|
|
828
826
|
}
|
|
829
827
|
.has-info .radio > label:not(.disabled):not(:disabled):hover,
|
|
830
828
|
.has-info.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
831
829
|
.has-info .radio > label:focus-within,
|
|
832
830
|
.has-info.checkbox > label:focus-within {
|
|
833
|
-
border-color: #
|
|
831
|
+
border-color: #80e142 !important;
|
|
834
832
|
border-color: var(--color-interactive-accent-hover) !important;
|
|
835
833
|
}
|
|
836
834
|
.has-info .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -841,14 +839,14 @@ select[multiple].input-lg {
|
|
|
841
839
|
.has-info.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
842
840
|
.has-info .radio > label:focus-within .tw-radio-button,
|
|
843
841
|
.has-info.checkbox > label:focus-within .tw-radio-button {
|
|
844
|
-
border-color: #
|
|
842
|
+
border-color: #80e142 !important;
|
|
845
843
|
border-color: var(--color-interactive-accent-hover) !important;
|
|
846
844
|
}
|
|
847
845
|
.has-info .radio .tw-checkbox-button,
|
|
848
846
|
.has-info.checkbox .tw-checkbox-button,
|
|
849
847
|
.has-info .radio .tw-radio-button,
|
|
850
848
|
.has-info.checkbox .tw-radio-button {
|
|
851
|
-
border-color: #
|
|
849
|
+
border-color: #9fe870;
|
|
852
850
|
border-color: var(--color-interactive-accent);
|
|
853
851
|
}
|
|
854
852
|
.np-theme-personal .has-info {
|
|
@@ -868,7 +866,7 @@ select[multiple].input-lg {
|
|
|
868
866
|
.np-theme-personal .has-info .radio-inline label,
|
|
869
867
|
.np-theme-personal .has-info .checkbox-inline label,
|
|
870
868
|
.np-theme-personal .has-info .input-group-addon {
|
|
871
|
-
color: #
|
|
869
|
+
color: #0e0f0c !important;
|
|
872
870
|
color: var(--color-content-primary) !important;
|
|
873
871
|
border-color: transparent !important;
|
|
874
872
|
}
|
|
@@ -910,13 +908,13 @@ select[multiple].input-lg {
|
|
|
910
908
|
border-color: transparent !important;
|
|
911
909
|
}
|
|
912
910
|
.np-theme-personal .has-info .form-control-feedback {
|
|
913
|
-
color: #
|
|
911
|
+
color: #0e0f0c;
|
|
914
912
|
color: var(--color-content-primary);
|
|
915
913
|
}
|
|
916
914
|
.np-theme-personal .has-info .radio > label:not(.disabled):not(:disabled),
|
|
917
915
|
.np-theme-personal .has-info.checkbox > label:not(.disabled):not(:disabled) {
|
|
918
916
|
border-color: transparent;
|
|
919
|
-
color: #
|
|
917
|
+
color: #0e0f0c;
|
|
920
918
|
color: var(--color-content-primary);
|
|
921
919
|
}
|
|
922
920
|
.np-theme-personal .has-info .radio > label:not(.disabled):not(:disabled):hover,
|
|
@@ -942,7 +940,6 @@ select[multiple].input-lg {
|
|
|
942
940
|
border-color: transparent;
|
|
943
941
|
}
|
|
944
942
|
.has-warning {
|
|
945
|
-
border-color: #df8700 !important;
|
|
946
943
|
border-color: var(--color-interactive-warning) !important;
|
|
947
944
|
}
|
|
948
945
|
.has-warning .control-label,
|
|
@@ -959,9 +956,7 @@ select[multiple].input-lg {
|
|
|
959
956
|
.has-warning .radio-inline label,
|
|
960
957
|
.has-warning .checkbox-inline label,
|
|
961
958
|
.has-warning .input-group-addon {
|
|
962
|
-
color: #9a6500 !important;
|
|
963
959
|
color: var(--color-content-warning) !important;
|
|
964
|
-
border-color: #df8700 !important;
|
|
965
960
|
border-color: var(--color-interactive-warning) !important;
|
|
966
961
|
}
|
|
967
962
|
.has-warning .form-control,
|
|
@@ -970,7 +965,6 @@ select[multiple].input-lg {
|
|
|
970
965
|
.has-warning .btn-input:not(.disabled):not(:disabled):hover,
|
|
971
966
|
.has-warning .input-group-addon,
|
|
972
967
|
.has-warning .alert {
|
|
973
|
-
border-color: #df8700 !important;
|
|
974
968
|
border-color: var(--color-interactive-warning) !important;
|
|
975
969
|
}
|
|
976
970
|
.has-warning:active .form-control,
|
|
@@ -994,32 +988,27 @@ select[multiple].input-lg {
|
|
|
994
988
|
.has-warning:active .alert,
|
|
995
989
|
.has-warning:focus .alert,
|
|
996
990
|
.has-warning:focus-within .alert {
|
|
997
|
-
border-color: #c97500 !important;
|
|
998
991
|
border-color: var(--color-interactive-warning-hover) !important;
|
|
999
992
|
}
|
|
1000
993
|
.has-warning:not(.disabled):not(:disabled):hover.radio label,
|
|
1001
994
|
.has-warning:not(.disabled):not(:disabled):hover.checkbox label,
|
|
1002
995
|
.has-warning:not(.disabled):not(:disabled):hover .btn-input,
|
|
1003
996
|
.has-warning:not(.disabled):not(:disabled):hover .alert {
|
|
1004
|
-
border-color: #c97500 !important;
|
|
1005
997
|
border-color: var(--color-interactive-warning-hover) !important;
|
|
1006
998
|
}
|
|
1007
999
|
.has-warning .form-control-feedback {
|
|
1008
|
-
color: #9a6500;
|
|
1009
1000
|
color: var(--color-content-warning);
|
|
1010
1001
|
}
|
|
1011
1002
|
.has-warning .radio > label:not(.disabled):not(:disabled),
|
|
1012
1003
|
.has-warning.checkbox > label:not(.disabled):not(:disabled) {
|
|
1013
|
-
border-color: #df8700;
|
|
1014
1004
|
border-color: var(--color-interactive-warning);
|
|
1015
|
-
color: #
|
|
1005
|
+
color: #0e0f0c;
|
|
1016
1006
|
color: var(--color-content-primary);
|
|
1017
1007
|
}
|
|
1018
1008
|
.has-warning .radio > label:not(.disabled):not(:disabled):hover,
|
|
1019
1009
|
.has-warning.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
1020
1010
|
.has-warning .radio > label:focus-within,
|
|
1021
1011
|
.has-warning.checkbox > label:focus-within {
|
|
1022
|
-
border-color: #c97500 !important;
|
|
1023
1012
|
border-color: var(--color-interactive-warning-hover) !important;
|
|
1024
1013
|
}
|
|
1025
1014
|
.has-warning .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -1030,17 +1019,16 @@ select[multiple].input-lg {
|
|
|
1030
1019
|
.has-warning.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
1031
1020
|
.has-warning .radio > label:focus-within .tw-radio-button,
|
|
1032
1021
|
.has-warning.checkbox > label:focus-within .tw-radio-button {
|
|
1033
|
-
border-color: #c97500 !important;
|
|
1034
1022
|
border-color: var(--color-interactive-warning-hover) !important;
|
|
1035
1023
|
}
|
|
1036
1024
|
.has-warning .radio .tw-checkbox-button,
|
|
1037
1025
|
.has-warning.checkbox .tw-checkbox-button,
|
|
1038
1026
|
.has-warning .radio .tw-radio-button,
|
|
1039
1027
|
.has-warning.checkbox .tw-radio-button {
|
|
1040
|
-
border-color: #df8700;
|
|
1041
1028
|
border-color: var(--color-interactive-warning);
|
|
1042
1029
|
}
|
|
1043
1030
|
.np-theme-personal .has-warning {
|
|
1031
|
+
border-color: #ffd11a !important;
|
|
1044
1032
|
border-color: var(--color-sentiment-warning) !important;
|
|
1045
1033
|
}
|
|
1046
1034
|
.np-theme-personal .has-warning .control-label,
|
|
@@ -1057,8 +1045,9 @@ select[multiple].input-lg {
|
|
|
1057
1045
|
.np-theme-personal .has-warning .radio-inline label,
|
|
1058
1046
|
.np-theme-personal .has-warning .checkbox-inline label,
|
|
1059
1047
|
.np-theme-personal .has-warning .input-group-addon {
|
|
1060
|
-
color: #
|
|
1048
|
+
color: #0e0f0c !important;
|
|
1061
1049
|
color: var(--color-content-primary) !important;
|
|
1050
|
+
border-color: #ffd11a !important;
|
|
1062
1051
|
border-color: var(--color-sentiment-warning) !important;
|
|
1063
1052
|
}
|
|
1064
1053
|
.np-theme-personal .has-warning .form-control,
|
|
@@ -1067,6 +1056,7 @@ select[multiple].input-lg {
|
|
|
1067
1056
|
.np-theme-personal .has-warning .btn-input:not(.disabled):not(:disabled):hover,
|
|
1068
1057
|
.np-theme-personal .has-warning .input-group-addon,
|
|
1069
1058
|
.np-theme-personal .has-warning .alert {
|
|
1059
|
+
border-color: #ffd11a !important;
|
|
1070
1060
|
border-color: var(--color-sentiment-warning) !important;
|
|
1071
1061
|
}
|
|
1072
1062
|
.np-theme-personal .has-warning:active .form-control,
|
|
@@ -1090,28 +1080,32 @@ select[multiple].input-lg {
|
|
|
1090
1080
|
.np-theme-personal .has-warning:active .alert,
|
|
1091
1081
|
.np-theme-personal .has-warning:focus .alert,
|
|
1092
1082
|
.np-theme-personal .has-warning:focus-within .alert {
|
|
1083
|
+
border-color: #ffd11a !important;
|
|
1093
1084
|
border-color: var(--color-sentiment-warning) !important;
|
|
1094
1085
|
}
|
|
1095
1086
|
.np-theme-personal .has-warning:not(.disabled):not(:disabled):hover.radio label,
|
|
1096
1087
|
.np-theme-personal .has-warning:not(.disabled):not(:disabled):hover.checkbox label,
|
|
1097
1088
|
.np-theme-personal .has-warning:not(.disabled):not(:disabled):hover .btn-input,
|
|
1098
1089
|
.np-theme-personal .has-warning:not(.disabled):not(:disabled):hover .alert {
|
|
1090
|
+
border-color: #ffd11a !important;
|
|
1099
1091
|
border-color: var(--color-sentiment-warning) !important;
|
|
1100
1092
|
}
|
|
1101
1093
|
.np-theme-personal .has-warning .form-control-feedback {
|
|
1102
|
-
color: #
|
|
1094
|
+
color: #0e0f0c;
|
|
1103
1095
|
color: var(--color-content-primary);
|
|
1104
1096
|
}
|
|
1105
1097
|
.np-theme-personal .has-warning .radio > label:not(.disabled):not(:disabled),
|
|
1106
1098
|
.np-theme-personal .has-warning.checkbox > label:not(.disabled):not(:disabled) {
|
|
1099
|
+
border-color: #ffd11a;
|
|
1107
1100
|
border-color: var(--color-sentiment-warning);
|
|
1108
|
-
color: #
|
|
1101
|
+
color: #0e0f0c;
|
|
1109
1102
|
color: var(--color-content-primary);
|
|
1110
1103
|
}
|
|
1111
1104
|
.np-theme-personal .has-warning .radio > label:not(.disabled):not(:disabled):hover,
|
|
1112
1105
|
.np-theme-personal .has-warning.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
1113
1106
|
.np-theme-personal .has-warning .radio > label:focus-within,
|
|
1114
1107
|
.np-theme-personal .has-warning.checkbox > label:focus-within {
|
|
1108
|
+
border-color: #ffd11a !important;
|
|
1115
1109
|
border-color: var(--color-sentiment-warning) !important;
|
|
1116
1110
|
}
|
|
1117
1111
|
.np-theme-personal .has-warning .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -1122,16 +1116,17 @@ select[multiple].input-lg {
|
|
|
1122
1116
|
.np-theme-personal .has-warning.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
1123
1117
|
.np-theme-personal .has-warning .radio > label:focus-within .tw-radio-button,
|
|
1124
1118
|
.np-theme-personal .has-warning.checkbox > label:focus-within .tw-radio-button {
|
|
1119
|
+
border-color: #ffd11a !important;
|
|
1125
1120
|
border-color: var(--color-sentiment-warning) !important;
|
|
1126
1121
|
}
|
|
1127
1122
|
.np-theme-personal .has-warning .radio .tw-checkbox-button,
|
|
1128
1123
|
.np-theme-personal .has-warning.checkbox .tw-checkbox-button,
|
|
1129
1124
|
.np-theme-personal .has-warning .radio .tw-radio-button,
|
|
1130
1125
|
.np-theme-personal .has-warning.checkbox .tw-radio-button {
|
|
1126
|
+
border-color: #ffd11a;
|
|
1131
1127
|
border-color: var(--color-sentiment-warning);
|
|
1132
1128
|
}
|
|
1133
1129
|
.has-error {
|
|
1134
|
-
border-color: #e74848 !important;
|
|
1135
1130
|
border-color: var(--color-interactive-negative) !important;
|
|
1136
1131
|
}
|
|
1137
1132
|
.has-error .control-label,
|
|
@@ -1148,9 +1143,7 @@ select[multiple].input-lg {
|
|
|
1148
1143
|
.has-error .radio-inline label,
|
|
1149
1144
|
.has-error .checkbox-inline label,
|
|
1150
1145
|
.has-error .input-group-addon {
|
|
1151
|
-
color: #cf2929 !important;
|
|
1152
1146
|
color: var(--color-content-negative) !important;
|
|
1153
|
-
border-color: #e74848 !important;
|
|
1154
1147
|
border-color: var(--color-interactive-negative) !important;
|
|
1155
1148
|
}
|
|
1156
1149
|
.has-error .form-control,
|
|
@@ -1159,7 +1152,6 @@ select[multiple].input-lg {
|
|
|
1159
1152
|
.has-error .btn-input:not(.disabled):not(:disabled):hover,
|
|
1160
1153
|
.has-error .input-group-addon,
|
|
1161
1154
|
.has-error .alert {
|
|
1162
|
-
border-color: #e74848 !important;
|
|
1163
1155
|
border-color: var(--color-interactive-negative) !important;
|
|
1164
1156
|
}
|
|
1165
1157
|
.has-error:active .form-control,
|
|
@@ -1183,32 +1175,27 @@ select[multiple].input-lg {
|
|
|
1183
1175
|
.has-error:active .alert,
|
|
1184
1176
|
.has-error:focus .alert,
|
|
1185
1177
|
.has-error:focus-within .alert {
|
|
1186
|
-
border-color: #d03238 !important;
|
|
1187
1178
|
border-color: var(--color-interactive-negative-hover) !important;
|
|
1188
1179
|
}
|
|
1189
1180
|
.has-error:not(.disabled):not(:disabled):hover.radio label,
|
|
1190
1181
|
.has-error:not(.disabled):not(:disabled):hover.checkbox label,
|
|
1191
1182
|
.has-error:not(.disabled):not(:disabled):hover .btn-input,
|
|
1192
1183
|
.has-error:not(.disabled):not(:disabled):hover .alert {
|
|
1193
|
-
border-color: #d03238 !important;
|
|
1194
1184
|
border-color: var(--color-interactive-negative-hover) !important;
|
|
1195
1185
|
}
|
|
1196
1186
|
.has-error .form-control-feedback {
|
|
1197
|
-
color: #cf2929;
|
|
1198
1187
|
color: var(--color-content-negative);
|
|
1199
1188
|
}
|
|
1200
1189
|
.has-error .radio > label:not(.disabled):not(:disabled),
|
|
1201
1190
|
.has-error.checkbox > label:not(.disabled):not(:disabled) {
|
|
1202
|
-
border-color: #e74848;
|
|
1203
1191
|
border-color: var(--color-interactive-negative);
|
|
1204
|
-
color: #
|
|
1192
|
+
color: #0e0f0c;
|
|
1205
1193
|
color: var(--color-content-primary);
|
|
1206
1194
|
}
|
|
1207
1195
|
.has-error .radio > label:not(.disabled):not(:disabled):hover,
|
|
1208
1196
|
.has-error.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
1209
1197
|
.has-error .radio > label:focus-within,
|
|
1210
1198
|
.has-error.checkbox > label:focus-within {
|
|
1211
|
-
border-color: #d03238 !important;
|
|
1212
1199
|
border-color: var(--color-interactive-negative-hover) !important;
|
|
1213
1200
|
}
|
|
1214
1201
|
.has-error .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -1219,17 +1206,16 @@ select[multiple].input-lg {
|
|
|
1219
1206
|
.has-error.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
1220
1207
|
.has-error .radio > label:focus-within .tw-radio-button,
|
|
1221
1208
|
.has-error.checkbox > label:focus-within .tw-radio-button {
|
|
1222
|
-
border-color: #d03238 !important;
|
|
1223
1209
|
border-color: var(--color-interactive-negative-hover) !important;
|
|
1224
1210
|
}
|
|
1225
1211
|
.has-error .radio .tw-checkbox-button,
|
|
1226
1212
|
.has-error.checkbox .tw-checkbox-button,
|
|
1227
1213
|
.has-error .radio .tw-radio-button,
|
|
1228
1214
|
.has-error.checkbox .tw-radio-button {
|
|
1229
|
-
border-color: #e74848;
|
|
1230
1215
|
border-color: var(--color-interactive-negative);
|
|
1231
1216
|
}
|
|
1232
1217
|
.np-theme-personal .has-error {
|
|
1218
|
+
border-color: #cb272f !important;
|
|
1233
1219
|
border-color: var(--color-sentiment-negative) !important;
|
|
1234
1220
|
}
|
|
1235
1221
|
.np-theme-personal .has-error .control-label,
|
|
@@ -1246,8 +1232,9 @@ select[multiple].input-lg {
|
|
|
1246
1232
|
.np-theme-personal .has-error .radio-inline label,
|
|
1247
1233
|
.np-theme-personal .has-error .checkbox-inline label,
|
|
1248
1234
|
.np-theme-personal .has-error .input-group-addon {
|
|
1249
|
-
color: #
|
|
1235
|
+
color: #0e0f0c !important;
|
|
1250
1236
|
color: var(--color-content-primary) !important;
|
|
1237
|
+
border-color: #cb272f !important;
|
|
1251
1238
|
border-color: var(--color-sentiment-negative) !important;
|
|
1252
1239
|
}
|
|
1253
1240
|
.np-theme-personal .has-error .form-control,
|
|
@@ -1256,6 +1243,7 @@ select[multiple].input-lg {
|
|
|
1256
1243
|
.np-theme-personal .has-error .btn-input:not(.disabled):not(:disabled):hover,
|
|
1257
1244
|
.np-theme-personal .has-error .input-group-addon,
|
|
1258
1245
|
.np-theme-personal .has-error .alert {
|
|
1246
|
+
border-color: #cb272f !important;
|
|
1259
1247
|
border-color: var(--color-sentiment-negative) !important;
|
|
1260
1248
|
}
|
|
1261
1249
|
.np-theme-personal .has-error:active .form-control,
|
|
@@ -1279,28 +1267,32 @@ select[multiple].input-lg {
|
|
|
1279
1267
|
.np-theme-personal .has-error:active .alert,
|
|
1280
1268
|
.np-theme-personal .has-error:focus .alert,
|
|
1281
1269
|
.np-theme-personal .has-error:focus-within .alert {
|
|
1270
|
+
border-color: #b8232b !important;
|
|
1282
1271
|
border-color: var(--color-sentiment-negative-hover) !important;
|
|
1283
1272
|
}
|
|
1284
1273
|
.np-theme-personal .has-error:not(.disabled):not(:disabled):hover.radio label,
|
|
1285
1274
|
.np-theme-personal .has-error:not(.disabled):not(:disabled):hover.checkbox label,
|
|
1286
1275
|
.np-theme-personal .has-error:not(.disabled):not(:disabled):hover .btn-input,
|
|
1287
1276
|
.np-theme-personal .has-error:not(.disabled):not(:disabled):hover .alert {
|
|
1277
|
+
border-color: #b8232b !important;
|
|
1288
1278
|
border-color: var(--color-sentiment-negative-hover) !important;
|
|
1289
1279
|
}
|
|
1290
1280
|
.np-theme-personal .has-error .form-control-feedback {
|
|
1291
|
-
color: #
|
|
1281
|
+
color: #0e0f0c;
|
|
1292
1282
|
color: var(--color-content-primary);
|
|
1293
1283
|
}
|
|
1294
1284
|
.np-theme-personal .has-error .radio > label:not(.disabled):not(:disabled),
|
|
1295
1285
|
.np-theme-personal .has-error.checkbox > label:not(.disabled):not(:disabled) {
|
|
1286
|
+
border-color: #cb272f;
|
|
1296
1287
|
border-color: var(--color-sentiment-negative);
|
|
1297
|
-
color: #
|
|
1288
|
+
color: #0e0f0c;
|
|
1298
1289
|
color: var(--color-content-primary);
|
|
1299
1290
|
}
|
|
1300
1291
|
.np-theme-personal .has-error .radio > label:not(.disabled):not(:disabled):hover,
|
|
1301
1292
|
.np-theme-personal .has-error.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
1302
1293
|
.np-theme-personal .has-error .radio > label:focus-within,
|
|
1303
1294
|
.np-theme-personal .has-error.checkbox > label:focus-within {
|
|
1295
|
+
border-color: #b8232b !important;
|
|
1304
1296
|
border-color: var(--color-sentiment-negative-hover) !important;
|
|
1305
1297
|
}
|
|
1306
1298
|
.np-theme-personal .has-error .radio > label:not(.disabled):not(:disabled):hover .tw-checkbox-button,
|
|
@@ -1311,12 +1303,14 @@ select[multiple].input-lg {
|
|
|
1311
1303
|
.np-theme-personal .has-error.checkbox > label:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
1312
1304
|
.np-theme-personal .has-error .radio > label:focus-within .tw-radio-button,
|
|
1313
1305
|
.np-theme-personal .has-error.checkbox > label:focus-within .tw-radio-button {
|
|
1306
|
+
border-color: #b8232b !important;
|
|
1314
1307
|
border-color: var(--color-sentiment-negative-hover) !important;
|
|
1315
1308
|
}
|
|
1316
1309
|
.np-theme-personal .has-error .radio .tw-checkbox-button,
|
|
1317
1310
|
.np-theme-personal .has-error.checkbox .tw-checkbox-button,
|
|
1318
1311
|
.np-theme-personal .has-error .radio .tw-radio-button,
|
|
1319
1312
|
.np-theme-personal .has-error.checkbox .tw-radio-button {
|
|
1313
|
+
border-color: #cb272f;
|
|
1320
1314
|
border-color: var(--color-sentiment-negative);
|
|
1321
1315
|
}
|
|
1322
1316
|
.has-feedback label ~ .form-control-feedback {
|
|
@@ -1447,7 +1441,7 @@ select[multiple].input-lg {
|
|
|
1447
1441
|
}
|
|
1448
1442
|
.radio,
|
|
1449
1443
|
.checkbox {
|
|
1450
|
-
border-color: #
|
|
1444
|
+
border-color: #868685;
|
|
1451
1445
|
border-color: var(--color-interactive-secondary);
|
|
1452
1446
|
}
|
|
1453
1447
|
.radio > label,
|
|
@@ -1479,7 +1473,7 @@ select[multiple].input-lg {
|
|
|
1479
1473
|
left: initial;
|
|
1480
1474
|
}
|
|
1481
1475
|
.tw-checkbox-button {
|
|
1482
|
-
border: 1px solid #
|
|
1476
|
+
border: 1px solid #868685;
|
|
1483
1477
|
border: 1px solid var(--color-interactive-secondary);
|
|
1484
1478
|
background: #ffffff;
|
|
1485
1479
|
background: var(--color-background-screen);
|
|
@@ -1494,7 +1488,7 @@ select[multiple].input-lg {
|
|
|
1494
1488
|
}
|
|
1495
1489
|
.np-theme-personal .tw-checkbox-button {
|
|
1496
1490
|
border: none;
|
|
1497
|
-
box-shadow: inset 0 0 0 1px #
|
|
1491
|
+
box-shadow: inset 0 0 0 1px #868685;
|
|
1498
1492
|
box-shadow: inset 0 0 0 1px var(--color-interactive-secondary);
|
|
1499
1493
|
}
|
|
1500
1494
|
.tw-checkbox-button .tw-checkbox-check,
|
|
@@ -1509,13 +1503,13 @@ select[multiple].input-lg {
|
|
|
1509
1503
|
.tw-checkbox-button:not(.disabled):not(:disabled):hover,
|
|
1510
1504
|
input[type="checkbox"]:hover + .tw-checkbox-button,
|
|
1511
1505
|
.checkbox:hover .tw-checkbox-button {
|
|
1512
|
-
border-color: #
|
|
1506
|
+
border-color: #6c6c6b;
|
|
1513
1507
|
border-color: var(--color-interactive-secondary-hover);
|
|
1514
1508
|
}
|
|
1515
1509
|
.np-theme-personal .tw-checkbox-button:not(.disabled):not(:disabled):hover,
|
|
1516
1510
|
.np-theme-personal input[type="checkbox"]:hover + .tw-checkbox-button,
|
|
1517
1511
|
.np-theme-personal .checkbox:hover .tw-checkbox-button {
|
|
1518
|
-
box-shadow: inset 0 0 0 1px #
|
|
1512
|
+
box-shadow: inset 0 0 0 1px #6c6c6b;
|
|
1519
1513
|
box-shadow: inset 0 0 0 1px var(--color-interactive-secondary-hover);
|
|
1520
1514
|
}
|
|
1521
1515
|
.tw-checkbox-button:not(.disabled):not(:disabled):focus,
|
|
@@ -1526,7 +1520,7 @@ input[type="checkbox"]:focus + .tw-checkbox-button,
|
|
|
1526
1520
|
.tw-checkbox-button:not(.disabled):not(:disabled):active,
|
|
1527
1521
|
.tw-checkbox-button:not(.disabled):not(:disabled).active,
|
|
1528
1522
|
input[type="checkbox"]:active + .tw-checkbox-button {
|
|
1529
|
-
border-color: #
|
|
1523
|
+
border-color: #868685;
|
|
1530
1524
|
border-color: var(--color-interactive-secondary);
|
|
1531
1525
|
outline: none;
|
|
1532
1526
|
}
|
|
@@ -1541,16 +1535,18 @@ input[type="checkbox"]:focus-visible + .tw-checkbox-button {
|
|
|
1541
1535
|
.tw-checkbox-button.checked,
|
|
1542
1536
|
input[type="checkbox"]:checked + .tw-checkbox-button,
|
|
1543
1537
|
input[type="checkbox"]:indeterminate + .tw-checkbox-button {
|
|
1544
|
-
border-color: #
|
|
1538
|
+
border-color: #9fe870 !important;
|
|
1545
1539
|
border-color: var(--color-interactive-accent) !important;
|
|
1546
|
-
background-color: #
|
|
1540
|
+
background-color: #9fe870;
|
|
1547
1541
|
background-color: var(--color-interactive-accent);
|
|
1548
1542
|
}
|
|
1549
1543
|
.np-theme-personal .tw-checkbox-button:checked,
|
|
1550
1544
|
.np-theme-personal .tw-checkbox-button.checked,
|
|
1551
1545
|
.np-theme-personal input[type="checkbox"]:checked + .tw-checkbox-button,
|
|
1552
1546
|
.np-theme-personal input[type="checkbox"]:indeterminate + .tw-checkbox-button {
|
|
1547
|
+
background-color: #163300;
|
|
1553
1548
|
background-color: var(--color-interactive-primary);
|
|
1549
|
+
box-shadow: inset 0 0 0 1px #163300;
|
|
1554
1550
|
box-shadow: inset 0 0 0 1px var(--color-interactive-primary);
|
|
1555
1551
|
}
|
|
1556
1552
|
.tw-checkbox-button:checked .tw-checkbox-check,
|
|
@@ -1565,74 +1561,72 @@ input[type="checkbox"]:indeterminate + .tw-checkbox-button .np-tw-checkbox-indet
|
|
|
1565
1561
|
.tw-checkbox-button.checked:hover,
|
|
1566
1562
|
input[type="checkbox"]:not(.disabled):not(:disabled):checked:hover + .tw-checkbox-button,
|
|
1567
1563
|
input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:hover + .tw-checkbox-button {
|
|
1568
|
-
border-color: #
|
|
1564
|
+
border-color: #80e142 !important;
|
|
1569
1565
|
border-color: var(--color-interactive-accent-hover) !important;
|
|
1570
|
-
background-color: #
|
|
1566
|
+
background-color: #80e142;
|
|
1571
1567
|
background-color: var(--color-interactive-accent-hover);
|
|
1572
1568
|
}
|
|
1573
1569
|
.np-theme-personal .tw-checkbox-button:checked:hover,
|
|
1574
1570
|
.np-theme-personal .tw-checkbox-button.checked:hover,
|
|
1575
1571
|
.np-theme-personal input[type="checkbox"]:not(.disabled):not(:disabled):checked:hover + .tw-checkbox-button,
|
|
1576
1572
|
.np-theme-personal input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:hover + .tw-checkbox-button {
|
|
1573
|
+
border-color: #0d1f00 !important;
|
|
1577
1574
|
border-color: var(--color-interactive-primary-hover) !important;
|
|
1575
|
+
background-color: #0d1f00;
|
|
1578
1576
|
background-color: var(--color-interactive-primary-hover);
|
|
1577
|
+
box-shadow: inset 0 0 0 1px #0d1f00;
|
|
1579
1578
|
box-shadow: inset 0 0 0 1px var(--color-interactive-primary-hover);
|
|
1580
1579
|
}
|
|
1581
1580
|
.tw-checkbox-button:checked:active,
|
|
1582
1581
|
.tw-checkbox-button.checked:active,
|
|
1583
1582
|
input[type="checkbox"]:not(.disabled):not(:disabled):checked:active + .tw-checkbox-button,
|
|
1584
1583
|
input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-checkbox-button {
|
|
1585
|
-
border-color: #
|
|
1584
|
+
border-color: #65cf21 !important;
|
|
1586
1585
|
border-color: var(--color-interactive-accent-active) !important;
|
|
1587
|
-
background-color: #
|
|
1586
|
+
background-color: #65cf21;
|
|
1588
1587
|
background-color: var(--color-interactive-accent-active);
|
|
1589
1588
|
}
|
|
1590
1589
|
.np-theme-personal .tw-checkbox-button:checked:active,
|
|
1591
1590
|
.np-theme-personal .tw-checkbox-button.checked:active,
|
|
1592
1591
|
.np-theme-personal input[type="checkbox"]:not(.disabled):not(:disabled):checked:active + .tw-checkbox-button,
|
|
1593
1592
|
.np-theme-personal input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-checkbox-button {
|
|
1593
|
+
border-color: #0e0f0c !important;
|
|
1594
1594
|
border-color: var(--color-interactive-primary-active) !important;
|
|
1595
|
+
background-color: #0e0f0c;
|
|
1595
1596
|
background-color: var(--color-interactive-primary-active);
|
|
1597
|
+
box-shadow: inset 0 0 0 1px #0e0f0c;
|
|
1596
1598
|
box-shadow: inset 0 0 0 1px var(--color-interactive-primary-active);
|
|
1597
1599
|
}
|
|
1598
1600
|
.checkbox.has-error .tw-checkbox-button,
|
|
1599
1601
|
.tw-checkbox-button.has-error {
|
|
1600
|
-
border-color: #e74848 !important;
|
|
1601
1602
|
border-color: var(--color-interactive-negative) !important;
|
|
1602
1603
|
}
|
|
1603
1604
|
.checkbox.has-error .tw-checkbox-button:checked,
|
|
1604
1605
|
.tw-checkbox-button.has-error:checked,
|
|
1605
1606
|
.checkbox.has-error .tw-checkbox-button.checked,
|
|
1606
1607
|
.tw-checkbox-button.has-error.checked {
|
|
1607
|
-
background-color: #e74848;
|
|
1608
1608
|
background-color: var(--color-interactive-negative);
|
|
1609
1609
|
}
|
|
1610
1610
|
.checkbox.has-error input[type="checkbox"]:not(.disabled):not(:disabled):checked + .tw-checkbox-button,
|
|
1611
1611
|
.checkbox.has-error input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate + .tw-checkbox-button {
|
|
1612
|
-
border-color: #e74848 !important;
|
|
1613
1612
|
border-color: var(--color-interactive-negative) !important;
|
|
1614
|
-
background-color: #e74848;
|
|
1615
1613
|
background-color: var(--color-interactive-negative);
|
|
1616
1614
|
}
|
|
1617
1615
|
.checkbox.has-error input[type="checkbox"]:not(.disabled):not(:disabled):checked:hover + .tw-checkbox-button,
|
|
1618
1616
|
.checkbox.has-error input[type="checkbox"]:not(.disabled):not(:disabled):checked:indeterminate + .tw-checkbox-button {
|
|
1619
|
-
border-color: #d03238 !important;
|
|
1620
1617
|
border-color: var(--color-interactive-negative-hover) !important;
|
|
1621
|
-
background-color: #d03238;
|
|
1622
1618
|
background-color: var(--color-interactive-negative-hover);
|
|
1623
1619
|
}
|
|
1624
1620
|
.checkbox.has-error input[type="checkbox"]:not(.disabled):not(:disabled):checked:active + .tw-checkbox-button,
|
|
1625
1621
|
.checkbox.has-error input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate + .tw-checkbox-button {
|
|
1626
|
-
border-color: #bf1e2c !important;
|
|
1627
1622
|
border-color: var(--color-interactive-negative-active) !important;
|
|
1628
|
-
background-color: #bf1e2c;
|
|
1629
1623
|
background-color: var(--color-interactive-negative-active);
|
|
1630
1624
|
}
|
|
1631
1625
|
.tw-radio-button {
|
|
1632
1626
|
width: 24px;
|
|
1633
1627
|
height: 24px;
|
|
1634
1628
|
border-radius: 50%;
|
|
1635
|
-
border: 1px solid #
|
|
1629
|
+
border: 1px solid #868685;
|
|
1636
1630
|
border: 1px solid var(--color-interactive-secondary);
|
|
1637
1631
|
background: #ffffff;
|
|
1638
1632
|
background: var(--color-background-screen);
|
|
@@ -1644,7 +1638,7 @@ input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-
|
|
|
1644
1638
|
}
|
|
1645
1639
|
.np-theme-personal .tw-radio-button {
|
|
1646
1640
|
border: none;
|
|
1647
|
-
box-shadow: inset 0 0 0 1px #
|
|
1641
|
+
box-shadow: inset 0 0 0 1px #868685;
|
|
1648
1642
|
box-shadow: inset 0 0 0 1px var(--color-interactive-secondary);
|
|
1649
1643
|
position: relative;
|
|
1650
1644
|
top: 0;
|
|
@@ -1661,67 +1655,69 @@ input[type="checkbox"]:not(.disabled):not(:disabled):indeterminate:active + .tw-
|
|
|
1661
1655
|
}
|
|
1662
1656
|
.radio:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
1663
1657
|
.tw-radio-button:not(.disabled):not(:disabled):hover {
|
|
1664
|
-
border-color: #
|
|
1658
|
+
border-color: #6c6c6b;
|
|
1665
1659
|
border-color: var(--color-interactive-secondary-hover);
|
|
1666
1660
|
}
|
|
1667
1661
|
.np-theme-personal .radio:not(.disabled):not(:disabled):hover .tw-radio-button,
|
|
1668
1662
|
.np-theme-personal .tw-radio-button:not(.disabled):not(:disabled):hover {
|
|
1669
1663
|
border-color: transparent;
|
|
1670
|
-
box-shadow: inset 0 0 0 1px #
|
|
1664
|
+
box-shadow: inset 0 0 0 1px #6c6c6b;
|
|
1671
1665
|
box-shadow: inset 0 0 0 1px var(--color-interactive-secondary-hover);
|
|
1672
1666
|
}
|
|
1673
1667
|
.np-theme-personal .radio:not(.disabled):not(:disabled):hover .tw-radio-button:checked,
|
|
1674
1668
|
.np-theme-personal .tw-radio-button:not(.disabled):not(:disabled):hover:checked,
|
|
1675
1669
|
.np-theme-personal .radio:not(.disabled):not(:disabled):hover .tw-radio-button.checked,
|
|
1676
1670
|
.np-theme-personal .tw-radio-button:not(.disabled):not(:disabled):hover.checked {
|
|
1671
|
+
box-shadow: inset 0 0 0 1px #163300;
|
|
1677
1672
|
box-shadow: inset 0 0 0 1px var(--color-interactive-primary);
|
|
1678
1673
|
}
|
|
1679
1674
|
.np-theme-personal .radio:not(.disabled):not(:disabled):hover .tw-radio-button:checked .tw-radio-check,
|
|
1680
1675
|
.np-theme-personal .tw-radio-button:not(.disabled):not(:disabled):hover:checked .tw-radio-check,
|
|
1681
1676
|
.np-theme-personal .radio:not(.disabled):not(:disabled):hover .tw-radio-button.checked .tw-radio-check,
|
|
1682
1677
|
.np-theme-personal .tw-radio-button:not(.disabled):not(:disabled):hover.checked .tw-radio-check {
|
|
1678
|
+
background-color: #0d1f00;
|
|
1683
1679
|
background-color: var(--color-interactive-primary-hover);
|
|
1684
1680
|
}
|
|
1685
1681
|
.tw-radio-button:not(.disabled):not(:disabled):focus,
|
|
1686
1682
|
.tw-radio-button:not(.disabled):not(:disabled).focus,
|
|
1687
1683
|
.tw-radio-button:not(.disabled):not(:disabled):active,
|
|
1688
1684
|
.tw-radio-button:not(.disabled):not(:disabled).active {
|
|
1689
|
-
border-color: #
|
|
1685
|
+
border-color: #525251;
|
|
1690
1686
|
border-color: var(--color-interactive-secondary-active);
|
|
1691
1687
|
outline: none;
|
|
1692
1688
|
}
|
|
1693
1689
|
.tw-radio-button:checked,
|
|
1694
1690
|
.tw-radio-button.checked {
|
|
1695
|
-
border-color: #
|
|
1691
|
+
border-color: #9fe870 !important;
|
|
1696
1692
|
border-color: var(--color-interactive-accent) !important;
|
|
1697
1693
|
}
|
|
1698
1694
|
.tw-radio-button:checked .tw-radio-check,
|
|
1699
1695
|
.tw-radio-button.checked .tw-radio-check {
|
|
1700
1696
|
opacity: 1;
|
|
1701
|
-
background-color: #
|
|
1697
|
+
background-color: #9fe870;
|
|
1702
1698
|
background-color: var(--color-interactive-accent);
|
|
1703
1699
|
}
|
|
1704
1700
|
.np-theme-personal .tw-radio-button:checked,
|
|
1705
1701
|
.np-theme-personal .tw-radio-button.checked {
|
|
1706
1702
|
border-color: transparent !important;
|
|
1703
|
+
box-shadow: inset 0 0 0 1px #163300;
|
|
1707
1704
|
box-shadow: inset 0 0 0 1px var(--color-interactive-primary);
|
|
1708
1705
|
}
|
|
1709
1706
|
.np-theme-personal .tw-radio-button:checked .tw-radio-check,
|
|
1710
1707
|
.np-theme-personal .tw-radio-button.checked .tw-radio-check {
|
|
1708
|
+
background-color: #163300;
|
|
1711
1709
|
background-color: var(--color-interactive-primary);
|
|
1712
1710
|
max-height: 12px;
|
|
1713
1711
|
max-width: 12px;
|
|
1714
1712
|
}
|
|
1715
1713
|
.radio.has-error .tw-radio-button,
|
|
1716
1714
|
.tw-radio-button.has-error {
|
|
1717
|
-
border-color: #e74848 !important;
|
|
1718
1715
|
border-color: var(--color-interactive-negative) !important;
|
|
1719
1716
|
}
|
|
1720
1717
|
.radio.has-error .tw-radio-button:checked .tw-radio-check,
|
|
1721
1718
|
.tw-radio-button.has-error:checked .tw-radio-check,
|
|
1722
1719
|
.radio.has-error .tw-radio-button.checked .tw-radio-check,
|
|
1723
1720
|
.tw-radio-button.has-error.checked .tw-radio-check {
|
|
1724
|
-
background-color: #e74848;
|
|
1725
1721
|
background-color: var(--color-interactive-negative);
|
|
1726
1722
|
}
|
|
1727
1723
|
.radio .tw-radio-button {
|
|
@@ -1819,7 +1815,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1819
1815
|
border-left: 0 solid transparent;
|
|
1820
1816
|
}
|
|
1821
1817
|
.input-group-addon {
|
|
1822
|
-
color: #
|
|
1818
|
+
color: #454745;
|
|
1823
1819
|
color: var(--color-content-secondary);
|
|
1824
1820
|
transition: border-color ease-in-out 0.15s;
|
|
1825
1821
|
}
|
|
@@ -1834,9 +1830,9 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1834
1830
|
top: -3px;
|
|
1835
1831
|
}
|
|
1836
1832
|
.label .label-default {
|
|
1837
|
-
color: #
|
|
1833
|
+
color: #454745;
|
|
1838
1834
|
color: var(--color-content-secondary);
|
|
1839
|
-
background-color: rgba(
|
|
1835
|
+
background-color: rgba(22,51,0,0.07843);
|
|
1840
1836
|
background-color: var(--color-background-neutral);
|
|
1841
1837
|
}
|
|
1842
1838
|
.form-group {
|
|
@@ -1922,11 +1918,11 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1922
1918
|
padding-top: 12px;
|
|
1923
1919
|
padding-bottom: 10px;
|
|
1924
1920
|
padding-right: 16px;
|
|
1925
|
-
color: #
|
|
1921
|
+
color: #0e0f0c;
|
|
1926
1922
|
color: var(--color-content-primary);
|
|
1927
1923
|
background-color: #ffffff;
|
|
1928
1924
|
background-color: var(--color-background-screen);
|
|
1929
|
-
border: 1px solid #
|
|
1925
|
+
border: 1px solid #868685;
|
|
1930
1926
|
border: 1px solid var(--color-interactive-secondary);
|
|
1931
1927
|
border-radius: 3px;
|
|
1932
1928
|
transition: border 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
|
@@ -1944,7 +1940,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1944
1940
|
}
|
|
1945
1941
|
.checkbox > label:not(.disabled):not(:disabled):hover,
|
|
1946
1942
|
.radio > label:not(.disabled):not(:disabled):hover {
|
|
1947
|
-
border-color: #
|
|
1943
|
+
border-color: #6c6c6b;
|
|
1948
1944
|
border-color: var(--color-interactive-secondary-hover);
|
|
1949
1945
|
}
|
|
1950
1946
|
.checkbox > label:not(.disabled):not(:disabled).focus,
|
|
@@ -1957,7 +1953,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1957
1953
|
.radio > label:not(.disabled):not(:disabled).has-focus:hover,
|
|
1958
1954
|
.checkbox > label:not(.disabled):not(:disabled):focus-within,
|
|
1959
1955
|
.radio > label:not(.disabled):not(:disabled):focus-within {
|
|
1960
|
-
border-color: #
|
|
1956
|
+
border-color: #65cf21;
|
|
1961
1957
|
border-color: var(--color-interactive-accent-active);
|
|
1962
1958
|
}
|
|
1963
1959
|
.np-theme-personal .checkbox > label:not(.disabled):not(:disabled).focus,
|
|
@@ -1970,7 +1966,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1970
1966
|
.np-theme-personal .radio > label:not(.disabled):not(:disabled).has-focus:hover,
|
|
1971
1967
|
.np-theme-personal .checkbox > label:not(.disabled):not(:disabled):focus-within,
|
|
1972
1968
|
.np-theme-personal .radio > label:not(.disabled):not(:disabled):focus-within {
|
|
1973
|
-
border-color: #
|
|
1969
|
+
border-color: #868685;
|
|
1974
1970
|
border-color: var(--color-interactive-secondary);
|
|
1975
1971
|
}
|
|
1976
1972
|
.checkbox.checkbox-lg > label,
|
|
@@ -1997,14 +1993,12 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
1997
1993
|
.checkbox.radio-lg > label .np-text-body-default,
|
|
1998
1994
|
.radio.radio-lg > label .np-text-body-default {
|
|
1999
1995
|
display: block;
|
|
2000
|
-
color: #
|
|
1996
|
+
color: #454745;
|
|
2001
1997
|
color: var(--color-content-secondary);
|
|
2002
1998
|
}
|
|
2003
1999
|
.error-messages {
|
|
2004
2000
|
display: none;
|
|
2005
|
-
color: #cf2929;
|
|
2006
2001
|
color: var(--color-content-negative);
|
|
2007
|
-
background-color: rgba(255,135,135,0.10196);
|
|
2008
2002
|
background-color: var(--color-background-negative);
|
|
2009
2003
|
position: relative;
|
|
2010
2004
|
}
|
|
@@ -2105,7 +2099,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2105
2099
|
letter-spacing: -0.011em;
|
|
2106
2100
|
display: block;
|
|
2107
2101
|
width: 100%;
|
|
2108
|
-
color: #
|
|
2102
|
+
color: #6a6c6a;
|
|
2109
2103
|
color: var(--color-content-tertiary);
|
|
2110
2104
|
}
|
|
2111
2105
|
.np-theme-personal .btn-input,
|
|
@@ -2125,7 +2119,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2125
2119
|
.np-theme-personal .form-control,
|
|
2126
2120
|
.np-theme-personal .radio > label,
|
|
2127
2121
|
.np-theme-personal .checkbox > label {
|
|
2128
|
-
box-shadow: inset 0 0 0 1px #
|
|
2122
|
+
box-shadow: inset 0 0 0 1px #868685;
|
|
2129
2123
|
box-shadow: inset 0 0 0 1px var(--color-interactive-secondary);
|
|
2130
2124
|
transition: box-shadow 0.3s ease-in-out;
|
|
2131
2125
|
}
|
|
@@ -2139,7 +2133,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2139
2133
|
.np-theme-personal .form-control:not(.disabled):not(:disabled):hover,
|
|
2140
2134
|
.np-theme-personal .radio > label:not(.disabled):not(:disabled):hover,
|
|
2141
2135
|
.np-theme-personal .checkbox > label:not(.disabled):not(:disabled):hover {
|
|
2142
|
-
box-shadow: inset 0 0 0 2px #
|
|
2136
|
+
box-shadow: inset 0 0 0 2px #6c6c6b;
|
|
2143
2137
|
box-shadow: inset 0 0 0 2px var(--color-interactive-secondary-hover);
|
|
2144
2138
|
}
|
|
2145
2139
|
.np-theme-personal .btn-input:not(.disabled):not(:disabled):hover:has(:checked, .checked),
|
|
@@ -2147,6 +2141,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2147
2141
|
.np-theme-personal .form-control:not(.disabled):not(:disabled):hover:has(:checked, .checked),
|
|
2148
2142
|
.np-theme-personal .radio > label:not(.disabled):not(:disabled):hover:has(:checked, .checked),
|
|
2149
2143
|
.np-theme-personal .checkbox > label:not(.disabled):not(:disabled):hover:has(:checked, .checked) {
|
|
2144
|
+
box-shadow: inset 0 0 0 2px #0d1f00;
|
|
2150
2145
|
box-shadow: inset 0 0 0 2px var(--color-interactive-primary-hover);
|
|
2151
2146
|
}
|
|
2152
2147
|
.np-theme-personal .btn-input:not(.disabled):not(:disabled):focus-visible,
|
|
@@ -2159,6 +2154,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2159
2154
|
.np-theme-personal .radio > label:not(.disabled):not(:disabled):has(:focus-visible),
|
|
2160
2155
|
.np-theme-personal .checkbox > label:not(.disabled):not(:disabled):focus-visible,
|
|
2161
2156
|
.np-theme-personal .checkbox > label:not(.disabled):not(:disabled):has(:focus-visible) {
|
|
2157
|
+
box-shadow: inset 0 0 0 3px #163300;
|
|
2162
2158
|
box-shadow: inset 0 0 0 3px var(--color-interactive-primary);
|
|
2163
2159
|
}
|
|
2164
2160
|
.np-theme-personal .has-error .btn-input,
|
|
@@ -2166,12 +2162,14 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2166
2162
|
.np-theme-personal .has-error .form-control,
|
|
2167
2163
|
.np-theme-personal .has-error .radio > label,
|
|
2168
2164
|
.np-theme-personal .has-error .checkbox > label {
|
|
2165
|
+
box-shadow: inset 0 0 0 2px #cb272f;
|
|
2169
2166
|
box-shadow: inset 0 0 0 2px var(--color-sentiment-negative);
|
|
2170
2167
|
}
|
|
2171
2168
|
.np-theme-personal .has-error .input-group:not(.disabled):not(:disabled):hover,
|
|
2172
2169
|
.np-theme-personal .has-error .form-control:not(.disabled):not(:disabled):hover,
|
|
2173
2170
|
.np-theme-personal .has-error .radio > label:not(.disabled):not(:disabled):hover,
|
|
2174
2171
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):hover {
|
|
2172
|
+
box-shadow: inset 0 0 0 2px #b8232b;
|
|
2175
2173
|
box-shadow: inset 0 0 0 2px var(--color-sentiment-negative-hover);
|
|
2176
2174
|
}
|
|
2177
2175
|
.np-theme-personal .has-error .input-group:not(.disabled):not(:disabled):active,
|
|
@@ -2186,15 +2184,19 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2186
2184
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):active,
|
|
2187
2185
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):focus-visible,
|
|
2188
2186
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):has(:focus-visible) {
|
|
2187
|
+
box-shadow: inset 0 0 0 3px #cb272f;
|
|
2189
2188
|
box-shadow: inset 0 0 0 3px var(--color-sentiment-negative);
|
|
2190
2189
|
}
|
|
2191
2190
|
.np-theme-personal .has-error .tw-radio-button {
|
|
2191
|
+
border-color: #cb272f !important;
|
|
2192
2192
|
border-color: var(--color-sentiment-negative) !important;
|
|
2193
2193
|
}
|
|
2194
2194
|
.np-theme-personal .has-error .tw-radio-button.checked {
|
|
2195
|
+
box-shadow: inset 0 0 0 1px #cb272f;
|
|
2195
2196
|
box-shadow: inset 0 0 0 1px var(--color-sentiment-negative);
|
|
2196
2197
|
}
|
|
2197
2198
|
.np-theme-personal .has-error .tw-radio-button.checked .tw-radio-check {
|
|
2199
|
+
background: #cb272f !important;
|
|
2198
2200
|
background: var(--color-sentiment-negative) !important;
|
|
2199
2201
|
}
|
|
2200
2202
|
.np-theme-personal .has-error .checkbox:hover .tw-checkbox-button,
|
|
@@ -2203,6 +2205,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2203
2205
|
.np-theme-personal .has-error input[type=checkbox]:hover + .tw-checkbox-button,
|
|
2204
2206
|
.np-theme-personal .has-error input[type=radio]:not(.disabled):not(:disabled):hover + .tw-radio-button,
|
|
2205
2207
|
.np-theme-personal .has-error input[type=checkbox]:not(.disabled):not(:disabled):hover + .tw-checkbox-button {
|
|
2208
|
+
box-shadow: inset 0 0 0 2px #b8232b;
|
|
2206
2209
|
box-shadow: inset 0 0 0 2px var(--color-sentiment-negative-hover);
|
|
2207
2210
|
}
|
|
2208
2211
|
.np-theme-personal .has-error .tw-checkbox-button.checked,
|
|
@@ -2211,12 +2214,15 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2211
2214
|
.np-theme-personal .has-error .tw-checkbox-button.checked:hover,
|
|
2212
2215
|
.np-theme-personal .has-error .tw-checkbox-button:checked:hover,
|
|
2213
2216
|
.np-theme-personal .has-error input[type=checkbox]:not(.disabled):not(:disabled):checked:hover + .tw-checkbox-button {
|
|
2217
|
+
box-shadow: inset 0 0 0 3px #cb272f;
|
|
2214
2218
|
box-shadow: inset 0 0 0 3px var(--color-sentiment-negative);
|
|
2219
|
+
background: #cb272f;
|
|
2215
2220
|
background: var(--color-sentiment-negative);
|
|
2216
2221
|
}
|
|
2217
2222
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):active input[type=checkbox] + .tw-checkbox-button,
|
|
2218
2223
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):focus-visible input[type=checkbox] + .tw-checkbox-button,
|
|
2219
2224
|
.np-theme-personal .has-error .checkbox > label:not(.disabled):not(:disabled):has(:focus-visible) input[type=checkbox] + .tw-checkbox-button {
|
|
2225
|
+
box-shadow: inset 0 0 0 2px #a72027;
|
|
2220
2226
|
box-shadow: inset 0 0 0 2px var(--color-sentiment-negative-active);
|
|
2221
2227
|
}
|
|
2222
2228
|
.np-theme-personal .tw-radio-button,
|
|
@@ -2248,7 +2254,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2248
2254
|
}
|
|
2249
2255
|
.np-theme-personal .error-messages,
|
|
2250
2256
|
.np-theme-personal .alert-detach {
|
|
2251
|
-
color: #
|
|
2257
|
+
color: #454745;
|
|
2252
2258
|
color: var(--color-content-secondary);
|
|
2253
2259
|
margin: 8px 0;
|
|
2254
2260
|
margin: var(--padding-x-small) 0;
|
|
@@ -2263,6 +2269,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2263
2269
|
}
|
|
2264
2270
|
.np-theme-personal .has-error .error-messages,
|
|
2265
2271
|
.np-theme-personal .has-error .alert-detach.alert-danger {
|
|
2272
|
+
color: #cb272f;
|
|
2266
2273
|
color: var(--color-sentiment-negative);
|
|
2267
2274
|
}
|
|
2268
2275
|
.np-theme-personal .has-success .alert-detach.alert-positive,
|
|
@@ -2272,10 +2279,10 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2272
2279
|
}
|
|
2273
2280
|
.has-required::after {
|
|
2274
2281
|
content: "\00a0*";
|
|
2275
|
-
color: #cf2929;
|
|
2276
2282
|
color: var(--color-content-negative);
|
|
2277
2283
|
}
|
|
2278
2284
|
.np-theme-personal .has-required::after {
|
|
2285
|
+
color: #cb272f;
|
|
2279
2286
|
color: var(--color-sentiment-negative);
|
|
2280
2287
|
}
|
|
2281
2288
|
.input-group {
|
|
@@ -2297,7 +2304,7 @@ html:not([dir="rtl"]) .input-group .input-group-btn + input {
|
|
|
2297
2304
|
float: left;
|
|
2298
2305
|
width: 100%;
|
|
2299
2306
|
margin-bottom: 0;
|
|
2300
|
-
border-color: #
|
|
2307
|
+
border-color: #868685;
|
|
2301
2308
|
border-color: var(--color-interactive-secondary);
|
|
2302
2309
|
}
|
|
2303
2310
|
[dir="rtl"] .input-group .form-control {
|
|
@@ -2349,7 +2356,7 @@ html:not([dir="rtl"]) .input-group .form-control:not(:last-child) {
|
|
|
2349
2356
|
line-height: 150%;
|
|
2350
2357
|
letter-spacing: -0.011em;
|
|
2351
2358
|
margin: 0;
|
|
2352
|
-
color: #
|
|
2359
|
+
color: #0e0f0c;
|
|
2353
2360
|
color: var(--color-content-primary);
|
|
2354
2361
|
line-height: 1.2;
|
|
2355
2362
|
line-height: var(--line-height-title);
|
|
@@ -2481,12 +2488,12 @@ select[multiple].input-group-sm > .input-group-addon {
|
|
|
2481
2488
|
font-size: var(--font-size-16);
|
|
2482
2489
|
line-height: 1.5;
|
|
2483
2490
|
line-height: var(--line-height-body);
|
|
2484
|
-
color: #
|
|
2491
|
+
color: #454745;
|
|
2485
2492
|
color: var(--color-content-secondary);
|
|
2486
2493
|
text-align: center;
|
|
2487
2494
|
background-color: #ffffff;
|
|
2488
2495
|
background-color: var(--color-background-screen);
|
|
2489
|
-
border: 1px solid #
|
|
2496
|
+
border: 1px solid #868685;
|
|
2490
2497
|
border: 1px solid var(--color-interactive-secondary);
|
|
2491
2498
|
}
|
|
2492
2499
|
.input-group-addon.input-sm {
|
|
@@ -2698,43 +2705,41 @@ html:not([dir="rtl"]) .np-theme-personal .input-group > :last-child .btn-group {
|
|
|
2698
2705
|
.input-group:hover:not(.disabled):not(:disabled) .input-group-addon,
|
|
2699
2706
|
.input-group:hover:not(.disabled):not(:disabled) .btn-input,
|
|
2700
2707
|
.input-group:hover:not(.disabled):not(:disabled) .bootstrap-select .btn-default {
|
|
2701
|
-
border-color: #
|
|
2708
|
+
border-color: #6c6c6b;
|
|
2702
2709
|
border-color: var(--color-interactive-secondary-hover);
|
|
2703
2710
|
}
|
|
2704
2711
|
.form-control:hover:not(.disabled):not(:disabled) {
|
|
2705
|
-
border-color: #
|
|
2712
|
+
border-color: #6c6c6b;
|
|
2706
2713
|
border-color: var(--color-interactive-secondary-hover);
|
|
2707
2714
|
}
|
|
2708
2715
|
.input-group:focus-within:not(.disabled):not(:disabled) .form-control,
|
|
2709
2716
|
.input-group:focus-within:not(.disabled):not(:disabled) .input-group-addon,
|
|
2710
2717
|
.input-group:focus-within:not(.disabled):not(:disabled) .btn-input,
|
|
2711
2718
|
.input-group:focus-within:not(.disabled):not(:disabled) .bootstrap-select .btn-default {
|
|
2712
|
-
border-color: #
|
|
2719
|
+
border-color: #9fe870;
|
|
2713
2720
|
border-color: var(--color-interactive-accent);
|
|
2714
2721
|
}
|
|
2715
2722
|
.np-theme-personal .input-group:focus-within:not(.disabled):not(:disabled) .form-control,
|
|
2716
2723
|
.np-theme-personal .input-group:focus-within:not(.disabled):not(:disabled) .input-group-addon,
|
|
2717
2724
|
.np-theme-personal .input-group:focus-within:not(.disabled):not(:disabled) .btn-input,
|
|
2718
2725
|
.np-theme-personal .input-group:focus-within:not(.disabled):not(:disabled) .bootstrap-select .btn-default {
|
|
2719
|
-
border-color: #
|
|
2726
|
+
border-color: #868685;
|
|
2720
2727
|
border-color: var(--color-interactive-secondary);
|
|
2721
2728
|
}
|
|
2722
2729
|
.form-control:focus-within:not(.disabled):not(:disabled) {
|
|
2723
|
-
border-color: #
|
|
2730
|
+
border-color: #9fe870;
|
|
2724
2731
|
border-color: var(--color-interactive-accent);
|
|
2725
2732
|
}
|
|
2726
2733
|
.np-theme-personal .form-control:focus-within:not(.disabled):not(:disabled) {
|
|
2727
|
-
border-color: #
|
|
2734
|
+
border-color: #868685;
|
|
2728
2735
|
border-color: var(--color-interactive-secondary);
|
|
2729
2736
|
}
|
|
2730
2737
|
.has-error .input-group .form-control,
|
|
2731
2738
|
.has-error .input-group .input-group-addon {
|
|
2732
|
-
border-color: #e74848;
|
|
2733
2739
|
border-color: var(--color-interactive-negative);
|
|
2734
2740
|
}
|
|
2735
2741
|
.has-error .input-group .form-control:hover,
|
|
2736
2742
|
.has-error .input-group .input-group-addon:hover {
|
|
2737
|
-
border-color: #d03238;
|
|
2738
2743
|
border-color: var(--color-interactive-negative-hover);
|
|
2739
2744
|
}
|
|
2740
2745
|
.dropdown-menu .input-group-addon {
|