@rolster/styles-foundations 2.3.0 → 2.3.2
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/dist/rolster-styles.css +10 -16
- package/dist/rolster-styles.min.css +1 -1
- package/dist/rolster-styles.rtl.css +10 -16
- package/dist/rolster-styles.rtl.min.css +1 -1
- package/package.json +1 -1
- package/scss/_rolster-components.scss +0 -1
- package/scss/components/_data-table.scss +7 -14
- package/scss/components/_field-box.scss +4 -4
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.0.
|
|
2
|
+
// v2.0.3
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 24/Jun/2024
|
|
7
7
|
|
|
8
8
|
@mixin datatable_cell_control() {
|
|
9
9
|
--rlc-avatar-border-radius: var(--rls-sizing-x3);
|
|
@@ -13,6 +13,11 @@
|
|
|
13
13
|
|
|
14
14
|
--rlc-action-ripple-dimension: var(--rls-sizing-x16);
|
|
15
15
|
--rlc-action-ripple-position: -8rem;
|
|
16
|
+
|
|
17
|
+
--rlc-fieldbox-body-background: transparent;
|
|
18
|
+
--rlc-fieldbox-body-border: none;
|
|
19
|
+
--rlc-fieldbox-body-box-shadow: none;
|
|
20
|
+
--rlc-fieldbox-body-padding: 0rem;
|
|
16
21
|
|
|
17
22
|
--rlc-switch-element-size: var(--rls-sizing-x10);
|
|
18
23
|
--rlc-switch-bar-radius: var(--rls-sizing-x2);
|
|
@@ -170,13 +175,6 @@
|
|
|
170
175
|
display: none;
|
|
171
176
|
}
|
|
172
177
|
|
|
173
|
-
&__body {
|
|
174
|
-
background: transparent;
|
|
175
|
-
border: none;
|
|
176
|
-
padding: 0rem;
|
|
177
|
-
box-shadow: none;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
178
|
&__icon {
|
|
181
179
|
padding: 0rem;
|
|
182
180
|
}
|
|
@@ -184,11 +182,6 @@
|
|
|
184
182
|
&__error {
|
|
185
183
|
display: none;
|
|
186
184
|
}
|
|
187
|
-
|
|
188
|
-
.rls-input-number,
|
|
189
|
-
.rls-input-text {
|
|
190
|
-
--rlc-input-parent-padding: 0rem;
|
|
191
|
-
}
|
|
192
185
|
}
|
|
193
186
|
|
|
194
187
|
.rls-field-list {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology FieldBox Component
|
|
2
|
-
// v2.1.
|
|
2
|
+
// v2.1.1
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 08/Sep/2022
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 25/Jun/2024
|
|
7
7
|
|
|
8
8
|
.rls-field-box {
|
|
9
9
|
--pvt-label-opacity: 1;
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
position: relative;
|
|
13
13
|
display: flex;
|
|
14
14
|
flex-direction: column;
|
|
15
|
-
row-gap: var(--rls-sizing-x2);
|
|
16
15
|
width: 100%;
|
|
17
16
|
box-sizing: border-box;
|
|
18
17
|
transition: height 160ms 0ms var(--rls-standard-curve);
|
|
@@ -42,6 +41,7 @@
|
|
|
42
41
|
width: 100%;
|
|
43
42
|
padding: 0rem 5rem;
|
|
44
43
|
box-sizing: border-box;
|
|
44
|
+
margin-bottom: var(--rls-sizing-x2);
|
|
45
45
|
color: var(--rlc-fieldbox-label-font-color);
|
|
46
46
|
opacity: var(--pvt-label-opacity);
|
|
47
47
|
overflow: hidden;
|
|
@@ -87,6 +87,6 @@
|
|
|
87
87
|
&__error {
|
|
88
88
|
padding: 0rem var(--rls-sizing-x4);
|
|
89
89
|
box-sizing: border-box;
|
|
90
|
-
margin-top: var(--rls-sizing-
|
|
90
|
+
margin-top: var(--rls-sizing-x2);
|
|
91
91
|
}
|
|
92
92
|
}
|