raise-common-lib-new 0.0.23 → 0.0.25
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/esm2022/lib/commentary/index.component.mjs +5 -5
- package/esm2022/lib/common-grid/grid-action/grid-action.component.mjs +2 -2
- package/fesm2022/raise-common-lib-new.mjs +6 -6
- package/fesm2022/raise-common-lib-new.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/style/reset/checkbox.scss +9 -8
- package/src/assets/style/reset/radio.scss +35 -33
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
.e-checkbox-wrapper {
|
|
2
2
|
.e-label {
|
|
3
|
-
color: var(--rs-label-color);
|
|
4
|
-
font-family: var(--rs-font-family);
|
|
5
|
-
font-size: var(--rs-font-size);
|
|
3
|
+
color: var(--rs-label-color) !important;
|
|
4
|
+
font-family: var(--rs-font-family) !important;
|
|
5
|
+
font-size: var(--rs-font-size) !important;
|
|
6
6
|
font-weight: 400;
|
|
7
7
|
line-height: 14px;
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
&.e-checkbox-disabled {
|
|
10
|
+
opacity: 0.4;
|
|
11
|
+
// .e-icons {
|
|
12
|
+
// border-color: rgba(209, 209, 209, 0.5);
|
|
13
|
+
// background-color: rgba(234, 237, 240, 0.35);
|
|
14
|
+
// }
|
|
14
15
|
}
|
|
15
16
|
.e-icons {
|
|
16
17
|
box-shadow: none !important;
|
|
@@ -1,37 +1,39 @@
|
|
|
1
1
|
.e-radio-wrapper {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
.e-radio:disabled + label {
|
|
3
|
+
opacity: 0.4;
|
|
4
|
+
&::before {
|
|
5
|
+
background-color: #e9ecef;
|
|
6
|
+
border-color: #adb5bd;
|
|
7
|
+
color: #6c757d;
|
|
7
8
|
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
&::after {
|
|
15
|
-
content: "" !important;
|
|
16
|
-
display: block;
|
|
17
|
-
width: 11px;
|
|
18
|
-
height: 8px;
|
|
19
|
-
background-image: url("/assets/img/checked-vector.svg");
|
|
20
|
-
background-size: cover;
|
|
21
|
-
background-position: center;
|
|
22
|
-
background-color: transparent;
|
|
23
|
-
transform: scale(1);
|
|
24
|
-
left: 2px;
|
|
25
|
-
top: 3px;
|
|
26
|
-
border: 0;
|
|
27
|
-
border-radius: 0;
|
|
28
|
-
}
|
|
9
|
+
}
|
|
10
|
+
.e-radio:checked + label {
|
|
11
|
+
&::before {
|
|
12
|
+
background-color: var(--rs-active-color);
|
|
13
|
+
border-color: var(--rs-active-color);
|
|
14
|
+
box-shadow: none;
|
|
29
15
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
16
|
+
&::after {
|
|
17
|
+
content: "" !important;
|
|
18
|
+
display: block;
|
|
19
|
+
width: 11px;
|
|
20
|
+
height: 8px;
|
|
21
|
+
background-image: url("/assets/img/checked-vector.svg");
|
|
22
|
+
background-size: cover;
|
|
23
|
+
background-position: center;
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
transform: scale(1);
|
|
26
|
+
left: 2px;
|
|
27
|
+
top: 3px;
|
|
28
|
+
border: 0;
|
|
29
|
+
border-radius: 0;
|
|
36
30
|
}
|
|
37
|
-
}
|
|
31
|
+
}
|
|
32
|
+
.e-label {
|
|
33
|
+
color: var(--rs-label-color) !important;
|
|
34
|
+
font-family: var(--rs-font-family) !important;
|
|
35
|
+
font-size: var(--rs-font-size) !important;
|
|
36
|
+
font-weight: 400 !important;
|
|
37
|
+
line-height: 14px !important;
|
|
38
|
+
}
|
|
39
|
+
}
|