@rolster/styles-foundations 2.3.24 → 2.3.26
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/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Datatable Component
|
|
2
|
-
// v2.1.
|
|
2
|
+
// v2.1.3
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 25/Feb/2025
|
|
7
7
|
|
|
8
8
|
@mixin datatable_cell_control() {
|
|
9
9
|
--rlc-avatar-border-radius: var(--rls-sizing-x3);
|
|
@@ -148,15 +148,25 @@
|
|
|
148
148
|
border-radius: var(--rls-sizing-x4);
|
|
149
149
|
background: var(--pvt-datatable-record-background);
|
|
150
150
|
|
|
151
|
-
&--
|
|
152
|
-
background: var(--rls-
|
|
153
|
-
border: var(--rls-
|
|
151
|
+
&--success {
|
|
152
|
+
background: var(--rls-success-color-050);
|
|
153
|
+
border: var(--rls-success-border-1-300);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
&--info {
|
|
157
|
+
background: var(--rls-info-color-050);
|
|
158
|
+
border: var(--rls-info-border-1-300);
|
|
154
159
|
}
|
|
155
160
|
|
|
156
161
|
&--warning {
|
|
157
162
|
background: var(--rls-warning-color-050);
|
|
158
163
|
border: var(--rls-warning-border-1-300);
|
|
159
164
|
}
|
|
165
|
+
|
|
166
|
+
&--error {
|
|
167
|
+
background: var(--rls-danger-color-050);
|
|
168
|
+
border: var(--rls-danger-border-1-300);
|
|
169
|
+
}
|
|
160
170
|
}
|
|
161
171
|
|
|
162
172
|
&__cell,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology ListField Component
|
|
2
|
-
// v1.3.
|
|
2
|
+
// v1.3.3
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 20/Mar/2018
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 01/Mar/2025
|
|
7
7
|
|
|
8
8
|
.rls-field-list {
|
|
9
9
|
--pvt-action-font-color: var(--rls-app-color-300);
|
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
width: 100%;
|
|
79
79
|
height: 0rem;
|
|
80
80
|
max-height: var(--pvt-list-max-height);
|
|
81
|
+
opacity: 0;
|
|
81
82
|
overflow: hidden;
|
|
82
83
|
z-index: var(--rls-z-index-2);
|
|
83
84
|
padding-bottom: var(--rls-sizing-x6);
|
|
@@ -104,11 +105,12 @@
|
|
|
104
105
|
display: flex;
|
|
105
106
|
flex-direction: column;
|
|
106
107
|
width: 100%;
|
|
107
|
-
height:
|
|
108
|
+
height: var(--pvt-list-height);
|
|
108
109
|
max-height: var(--pvt-list-max-height);
|
|
109
110
|
padding: var(--rls-sizing-x4) var(--rls-sizing-x2);
|
|
110
111
|
box-sizing: border-box;
|
|
111
112
|
border-radius: var(--rls-sizing-x4);
|
|
113
|
+
opacity: var(--pvt-list-opacity);
|
|
112
114
|
overflow: hidden;
|
|
113
115
|
z-index: var(--rls-z-index-2);
|
|
114
116
|
background: var(--rls-app-background-500);
|
package/scss/components.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Rolster Technology Components
|
|
2
|
-
// v2.0.
|
|
2
|
+
// v2.0.8
|
|
3
3
|
// @license MIT
|
|
4
4
|
// Author: Rolster Developers
|
|
5
5
|
// Created: 13/Abr/2023
|
|
6
|
-
// Updated:
|
|
6
|
+
// Updated: 25/Feb/2025
|
|
7
7
|
|
|
8
8
|
@use 'sass:meta';
|
|
9
9
|
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
|
|
129
129
|
* {
|
|
130
130
|
scrollbar-width: thin;
|
|
131
|
-
scrollbar-color: var(--rls-theme-color-
|
|
131
|
+
scrollbar-color: var(--rls-theme-color-300) var(--rls-app-background-100);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
@include meta.load-css('components/app');
|