ros.grant.common 2.0.1277 → 2.0.1280
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.
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
&_body {
|
|
8
8
|
&_item {
|
|
9
|
+
position: relative;
|
|
10
|
+
padding-left: 16px;
|
|
11
|
+
|
|
9
12
|
&.disabled{
|
|
10
13
|
background: var(--Bg1);
|
|
11
14
|
}
|
|
@@ -35,50 +38,55 @@
|
|
|
35
38
|
}
|
|
36
39
|
|
|
37
40
|
&.good {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
}
|
|
41
|
+
&:after {
|
|
42
|
+
background: var(--Green);
|
|
43
|
+
content: '';
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: 0;
|
|
46
|
+
left: 0;
|
|
47
|
+
height: 100%;
|
|
48
|
+
width: 8px;
|
|
49
|
+
}
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
&.normal {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
}
|
|
53
|
+
&:after {
|
|
54
|
+
background: var(--Yellow);
|
|
55
|
+
content: '';
|
|
56
|
+
position: absolute;
|
|
57
|
+
top: 0;
|
|
58
|
+
left: 0;
|
|
59
|
+
height: 100%;
|
|
60
|
+
width: 8px;
|
|
61
|
+
}
|
|
63
62
|
}
|
|
64
63
|
|
|
65
64
|
&.bad {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
65
|
+
&:after {
|
|
66
|
+
background: var(--Red);
|
|
67
|
+
content: '';
|
|
68
|
+
position: absolute;
|
|
69
|
+
top: 0;
|
|
70
|
+
left: 0;
|
|
71
|
+
height: 100%;
|
|
72
|
+
width: 8px;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.default{
|
|
77
|
+
&:after {
|
|
78
|
+
background: var(--Stroke);
|
|
79
|
+
content: '';
|
|
80
|
+
position: absolute;
|
|
81
|
+
top: 0;
|
|
82
|
+
left: 0;
|
|
83
|
+
height: 100%;
|
|
84
|
+
width: 8px;
|
|
76
85
|
}
|
|
77
86
|
}
|
|
78
87
|
|
|
79
88
|
.body {
|
|
80
|
-
padding: 8px;
|
|
81
|
-
position: relative;
|
|
89
|
+
padding: 8px;
|
|
82
90
|
}
|
|
83
91
|
}
|
|
84
92
|
}
|
|
@@ -587,6 +595,22 @@
|
|
|
587
595
|
bottom: 12px;
|
|
588
596
|
background: var(--Main2);
|
|
589
597
|
border-radius: 100%;
|
|
598
|
+
|
|
599
|
+
&.mark-green,
|
|
600
|
+
&.mark-red{
|
|
601
|
+
width: 16px;
|
|
602
|
+
height: 16px;
|
|
603
|
+
right: 16px;
|
|
604
|
+
bottom: 14px;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
&.mark-green{
|
|
608
|
+
background: var(--Green);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
&.mark-red{
|
|
612
|
+
background: var(--Red);
|
|
613
|
+
}
|
|
590
614
|
}
|
|
591
615
|
}
|
|
592
616
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
&.green {
|
|
5
5
|
background-color: var(--Green);
|
|
6
6
|
border-color: var(--Green);
|
|
7
|
-
color:
|
|
7
|
+
color: #fff;
|
|
8
8
|
|
|
9
9
|
&:hover {
|
|
10
10
|
background-color: var(--DarkGreen);
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
&.red {
|
|
16
16
|
background-color: var(--Red);
|
|
17
17
|
border-color: var(--Red);
|
|
18
|
-
color:
|
|
18
|
+
color: #fff;
|
|
19
19
|
|
|
20
20
|
&:hover {
|
|
21
21
|
background-color: var(--DarkRed);
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
&.blue {
|
|
27
27
|
background-color: var(--Blue);
|
|
28
28
|
border-color: var(--Blue);
|
|
29
|
-
color:
|
|
29
|
+
color: #fff;
|
|
30
30
|
|
|
31
31
|
&:hover {
|
|
32
32
|
background-color: var(--DarkBlue);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.mrx-btn-primary {
|
|
2
2
|
border: 1px solid var(--Main2);
|
|
3
|
-
color:
|
|
3
|
+
color: #fff;
|
|
4
4
|
background-color: var(--Main2);
|
|
5
5
|
|
|
6
6
|
&:hover, &.active {
|
|
@@ -11,27 +11,27 @@
|
|
|
11
11
|
svg {
|
|
12
12
|
&.fill {
|
|
13
13
|
path {
|
|
14
|
-
fill:
|
|
14
|
+
fill: #fff;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
circle {
|
|
18
|
-
fill:
|
|
18
|
+
fill: #fff;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
&-rect {
|
|
22
22
|
rect {
|
|
23
|
-
fill:
|
|
23
|
+
fill: #fff;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&.stroke {
|
|
29
29
|
path {
|
|
30
|
-
stroke:
|
|
30
|
+
stroke: #fff;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
circle {
|
|
34
|
-
stroke:
|
|
34
|
+
stroke: #fff;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
&-rect {
|
|
@@ -39,38 +39,38 @@
|
|
|
39
39
|
|
|
40
40
|
&:hover, &.active {
|
|
41
41
|
background-color: var(--Subsidiary);
|
|
42
|
-
color:
|
|
42
|
+
color: #fff;
|
|
43
43
|
border-color: var(--Subsidiary);
|
|
44
44
|
|
|
45
45
|
svg {
|
|
46
46
|
&.fill {
|
|
47
47
|
path {
|
|
48
|
-
fill:
|
|
48
|
+
fill: #fff;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
circle {
|
|
52
|
-
fill:
|
|
52
|
+
fill: #fff;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
&-rect {
|
|
56
56
|
rect {
|
|
57
|
-
fill:
|
|
57
|
+
fill: #fff;
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
&.stroke {
|
|
63
63
|
path {
|
|
64
|
-
stroke:
|
|
64
|
+
stroke: #fff;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
circle {
|
|
68
|
-
stroke:
|
|
68
|
+
stroke: #fff;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
&-rect {
|
|
72
72
|
rect {
|
|
73
|
-
stroke:
|
|
73
|
+
stroke: #fff;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
}
|
package/package.json
CHANGED