ros.grant.common 2.0.1027 → 2.0.1031
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.
|
@@ -473,32 +473,32 @@
|
|
|
473
473
|
svg {
|
|
474
474
|
&.fill {
|
|
475
475
|
path {
|
|
476
|
-
fill: var(--Secondary);
|
|
476
|
+
fill: var(--Secondary) !important;
|
|
477
477
|
}
|
|
478
478
|
|
|
479
479
|
circle {
|
|
480
|
-
fill: var(--Secondary);
|
|
480
|
+
fill: var(--Secondary) !important;
|
|
481
481
|
}
|
|
482
482
|
|
|
483
483
|
&-rect {
|
|
484
484
|
rect {
|
|
485
|
-
fill: var(--Secondary);
|
|
485
|
+
fill: var(--Secondary) !important;
|
|
486
486
|
}
|
|
487
487
|
}
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
&.stroke {
|
|
491
491
|
path {
|
|
492
|
-
stroke: var(--Secondary);
|
|
492
|
+
stroke: var(--Secondary) !important;
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
circle {
|
|
496
|
-
stroke: var(--Secondary);
|
|
496
|
+
stroke: var(--Secondary) !important;
|
|
497
497
|
}
|
|
498
498
|
|
|
499
499
|
&-rect {
|
|
500
500
|
rect {
|
|
501
|
-
stroke: var(--Secondary);
|
|
501
|
+
stroke: var(--Secondary) !important;
|
|
502
502
|
}
|
|
503
503
|
}
|
|
504
504
|
}
|
|
@@ -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
|
}
|
|
@@ -373,6 +377,7 @@
|
|
|
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