ros.grant.common 2.0.1240 → 2.0.1243
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.
|
@@ -107,14 +107,12 @@
|
|
|
107
107
|
&.error {
|
|
108
108
|
.counter {
|
|
109
109
|
color: var(--Red);
|
|
110
|
-
border-bottom: 1px dashed var(--Red);
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
113
|
&.success {
|
|
115
114
|
.counter {
|
|
116
115
|
color: var(--Green);
|
|
117
|
-
border-bottom: 1px dashed var(--Green);
|
|
118
116
|
}
|
|
119
117
|
}
|
|
120
118
|
|
|
@@ -124,7 +122,6 @@
|
|
|
124
122
|
}
|
|
125
123
|
|
|
126
124
|
.counter {
|
|
127
|
-
border-bottom: 1px dashed;
|
|
128
125
|
font-size: 14px;
|
|
129
126
|
font-weight: normal;
|
|
130
127
|
}
|
|
@@ -489,6 +489,7 @@
|
|
|
489
489
|
|
|
490
490
|
input.ng-invalid.ng-touched {
|
|
491
491
|
border: 1px solid var(--Red);
|
|
492
|
+
background-color: var(--Warning);
|
|
492
493
|
}
|
|
493
494
|
|
|
494
495
|
.inputbox-error {
|
|
@@ -496,24 +497,29 @@ input.ng-invalid.ng-touched {
|
|
|
496
497
|
input,
|
|
497
498
|
textarea {
|
|
498
499
|
border-color: var(--Red) !important;
|
|
500
|
+
background-color: var(--Warning);
|
|
499
501
|
}
|
|
500
502
|
|
|
501
503
|
.custom-input-group .select {
|
|
502
504
|
border-color: var(--Red) !important;
|
|
505
|
+
background-color: var(--Warning);
|
|
503
506
|
}
|
|
504
507
|
|
|
505
508
|
.qq-gallery.qq-uploader,
|
|
506
509
|
.ngx-file-drop__drop-zone,
|
|
507
510
|
.new-custom-file-input__item {
|
|
508
511
|
border-color: var(--Red) !important;
|
|
512
|
+
background-color: var(--Warning);
|
|
509
513
|
}
|
|
510
514
|
|
|
511
515
|
.ng-select-container {
|
|
512
516
|
border-color: var(--Red) !important;
|
|
517
|
+
background-color: var(--Warning);
|
|
513
518
|
}
|
|
514
519
|
|
|
515
520
|
.selectize-control.single .selectize-input {
|
|
516
521
|
border-color: var(--Red) !important;
|
|
522
|
+
background-color: var(--Warning);
|
|
517
523
|
}
|
|
518
524
|
}
|
|
519
525
|
|
|
@@ -522,24 +528,29 @@ input.ng-invalid.ng-touched {
|
|
|
522
528
|
input,
|
|
523
529
|
textarea {
|
|
524
530
|
border-color: var(--Green) !important;
|
|
531
|
+
background-color: var(--Good);
|
|
525
532
|
}
|
|
526
533
|
|
|
527
534
|
.custom-input-group .select {
|
|
528
535
|
border-color: var(--Green) !important;
|
|
536
|
+
background-color: var(--Good);
|
|
529
537
|
}
|
|
530
538
|
|
|
531
539
|
.qq-gallery.qq-uploader,
|
|
532
540
|
.ngx-file-drop__drop-zone,
|
|
533
541
|
.new-custom-file-input__item {
|
|
534
542
|
border-color: var(--Green) !important;
|
|
543
|
+
background-color: var(--Good);
|
|
535
544
|
}
|
|
536
545
|
|
|
537
546
|
.ng-select-container {
|
|
538
547
|
border-color: var(--Green) !important;
|
|
548
|
+
background-color: var(--Good);
|
|
539
549
|
}
|
|
540
550
|
|
|
541
551
|
.selectize-control.single .selectize-input {
|
|
542
552
|
border-color: var(--Green) !important;
|
|
553
|
+
background-color: var(--Good);
|
|
543
554
|
}
|
|
544
555
|
}
|
|
545
556
|
|
|
@@ -51,12 +51,24 @@
|
|
|
51
51
|
//Pseudo-link
|
|
52
52
|
&-pseudo {
|
|
53
53
|
color: var(--Main2);
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
position: relative;
|
|
55
|
+
|
|
56
|
+
&::after {
|
|
57
|
+
content: '';
|
|
58
|
+
display: block;
|
|
59
|
+
width: 100%;
|
|
60
|
+
height: 1px;
|
|
61
|
+
position: absolute;
|
|
62
|
+
bottom: calc(50% - 12px);
|
|
63
|
+
background-size: 10px 1px;
|
|
64
|
+
background-image: linear-gradient(90deg, var(--Stroke) 0%, var(--Stroke) 33%, transparent 33%, transparent 66%, var(--Stroke) 66%, var(--Stroke) 100%);
|
|
65
|
+
background-repeat: repeat-x;
|
|
66
|
+
}
|
|
67
|
+
|
|
58
68
|
&:hover {
|
|
59
|
-
|
|
69
|
+
&::after {
|
|
70
|
+
background-image: linear-gradient(90deg, var(--Main2) 0%, var(--Main2) 33%, transparent 33%, transparent 66%, var(--Main2) 66%, var(--Main2) 100%);
|
|
71
|
+
}
|
|
60
72
|
}
|
|
61
73
|
}
|
|
62
74
|
}
|
package/Svg/rutube.svg
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24"
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="
|
|
3
|
-
|
|
4
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.204 2.60206C23.4894 3.88741 22.5722 6.0883 20.7574 6.08015C19.6333 6.08015 18.7227 5.16624 18.7227 4.04217C18.7227 2.22574 20.9219 1.31671 22.204 2.60206ZM1 5.92379H14.9075C15.621 5.9075 16.3297 5.99547 17.0171 6.18281C17.5547 6.36364 18.0435 6.66013 18.4556 7.06252C18.8417 7.46979 19.1284 7.9634 19.2897 8.51403C19.4771 9.2129 19.5601 9.94436 19.5439 10.6758V11.8585C19.6286 13.0413 19.363 14.224 18.7782 15.234C18.1477 16.0143 17.2469 16.4998 16.2775 16.5861L20.0081 21.7617H15.6732L12.2912 16.6089H4.8707V21.7617H1V5.92379ZM4.8707 13.1162H14.2819C14.6615 13.1618 15.0411 13.0787 15.3701 12.8783C15.5998 12.6258 15.709 12.2805 15.6732 11.9286V10.6025C15.7041 10.262 15.595 9.92156 15.3701 9.67394C15.0411 9.46541 14.6615 9.37744 14.2819 9.41491H4.8707V13.1162Z"/>
|
|
3
|
+
</svg>
|
package/package.json
CHANGED