ros.grant.common 2.0.1028 → 2.0.1032
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.
|
@@ -263,10 +263,9 @@
|
|
|
263
263
|
&-bik {
|
|
264
264
|
padding-bottom: 0;
|
|
265
265
|
padding-left: 0 !important;
|
|
266
|
-
width: 100% !important;
|
|
267
266
|
|
|
268
267
|
.bik-inline {
|
|
269
|
-
display: flex;
|
|
268
|
+
display: flex !important;
|
|
270
269
|
|
|
271
270
|
label {
|
|
272
271
|
width: 50%;
|
|
@@ -286,7 +285,7 @@
|
|
|
286
285
|
border: 1px solid var(--Stroke);
|
|
287
286
|
width: 100%;
|
|
288
287
|
outline: none;
|
|
289
|
-
display: flex;
|
|
288
|
+
display: flex !important;
|
|
290
289
|
align-items: center;
|
|
291
290
|
|
|
292
291
|
input {
|
|
@@ -295,6 +294,11 @@
|
|
|
295
294
|
width: 50%;
|
|
296
295
|
margin-bottom: 0;
|
|
297
296
|
height: 40px;
|
|
297
|
+
box-shadow: none;
|
|
298
|
+
|
|
299
|
+
&:focus{
|
|
300
|
+
box-shadow: none;
|
|
301
|
+
}
|
|
298
302
|
}
|
|
299
303
|
}
|
|
300
304
|
}
|
|
@@ -368,11 +372,12 @@
|
|
|
368
372
|
}
|
|
369
373
|
|
|
370
374
|
.ks-label {
|
|
371
|
-
color: var(--
|
|
375
|
+
color: var(--Secondary);
|
|
372
376
|
margin: 0 0 0 15px;
|
|
373
377
|
min-height: auto;
|
|
374
378
|
font-weight: normal;
|
|
375
379
|
height: auto;
|
|
380
|
+
margin-bottom: 0 !important;
|
|
376
381
|
}
|
|
377
382
|
|
|
378
383
|
.input__valid {
|
|
@@ -458,7 +463,7 @@ input.ng-invalid.ng-touched {
|
|
|
458
463
|
margin-right: 16px;
|
|
459
464
|
}
|
|
460
465
|
|
|
461
|
-
.label-with-tooltip{
|
|
466
|
+
.label-with-tooltip {
|
|
462
467
|
margin: 0 !important;
|
|
463
468
|
}
|
|
464
469
|
}
|
|
@@ -497,7 +502,7 @@ input.ng-invalid.ng-touched {
|
|
|
497
502
|
.page-wrapper {
|
|
498
503
|
&:not(.mvc-service.pgrants) {
|
|
499
504
|
|
|
500
|
-
label:not(.custom-checkbox
|
|
505
|
+
label:not(.custom-checkbox, .slider-checkbox, .custom-switch, .input-icon),
|
|
501
506
|
.custom__label,
|
|
502
507
|
.custom-label {
|
|
503
508
|
font-size: 14px;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
.control-widget {
|
|
2
|
+
position: relative;
|
|
3
|
+
border-radius: 4px;
|
|
4
|
+
transition: 0.2s;
|
|
5
|
+
border: 1px solid var(--Stroke);
|
|
6
|
+
padding: 16px;
|
|
7
|
+
padding-bottom: 0;
|
|
8
|
+
margin-bottom: 16px;
|
|
9
|
+
|
|
10
|
+
&:hover {
|
|
11
|
+
border-color: var(--Main2);
|
|
12
|
+
|
|
13
|
+
& > .control-widget-panel {
|
|
14
|
+
opacity: 1;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.disabled {
|
|
19
|
+
&:hover {
|
|
20
|
+
border-color: var(--Stroke);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
& > .control-widget-panel {
|
|
24
|
+
display: none;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&-panel {
|
|
29
|
+
position: absolute;
|
|
30
|
+
right: -14px;
|
|
31
|
+
top: 0;
|
|
32
|
+
transform: translateY(-50%);
|
|
33
|
+
display: flex;
|
|
34
|
+
align-items: center;
|
|
35
|
+
box-shadow: 0px 4px 10px rgba(58, 58, 58, 0.25);
|
|
36
|
+
background: #fff;
|
|
37
|
+
border-radius: 4px;
|
|
38
|
+
height: 24px;
|
|
39
|
+
opacity: 0;
|
|
40
|
+
transition: 0.2s;
|
|
41
|
+
z-index: 2;
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&-group {
|
|
46
|
+
position: relative;
|
|
47
|
+
display: flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
|
|
50
|
+
&:after {
|
|
51
|
+
content: '';
|
|
52
|
+
position: absolute;
|
|
53
|
+
right: 0;
|
|
54
|
+
top: 50%;
|
|
55
|
+
transform: translateY(-50%);
|
|
56
|
+
width: 1px;
|
|
57
|
+
height: 16px;
|
|
58
|
+
background: var(--Stroke);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:last-child {
|
|
62
|
+
&:after {
|
|
63
|
+
display: none;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&__item {
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
min-height: 24px;
|
|
72
|
+
min-width: 24px;
|
|
73
|
+
cursor: pointer;
|
|
74
|
+
transition: .2s;
|
|
75
|
+
|
|
76
|
+
&:hover {
|
|
77
|
+
background: var(--TooltipBG);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
package/package.json
CHANGED