@idds/styles 1.0.35 → 1.0.37
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
|
@@ -158,10 +158,7 @@
|
|
|
158
158
|
/* Ensure panel content is solid */
|
|
159
159
|
backdrop-filter: none;
|
|
160
160
|
-webkit-backdrop-filter: none;
|
|
161
|
-
/* Ensure panel is not clipped by parent containers */
|
|
162
|
-
isolation: isolate;
|
|
163
161
|
/* Allow vertical scrolling if content exceeds max-height */
|
|
164
|
-
overflow-y: auto;
|
|
165
162
|
overflow-x: visible;
|
|
166
163
|
}
|
|
167
164
|
|
|
@@ -593,7 +590,6 @@
|
|
|
593
590
|
max-width: 100% !important;
|
|
594
591
|
padding: var(--ina-spacing-3) !important;
|
|
595
592
|
max-height: 420px !important; /* Consistent max-height */
|
|
596
|
-
overflow-y: auto;
|
|
597
593
|
}
|
|
598
594
|
|
|
599
595
|
.ina-date-picker__panel-content {
|
|
@@ -101,13 +101,13 @@
|
|
|
101
101
|
.ina-tab-horizontal__tab--variant-outline:hover:not(
|
|
102
102
|
.ina-tab-horizontal__tab--disabled
|
|
103
103
|
) {
|
|
104
|
-
color: var(--ina-primary-
|
|
104
|
+
color: var(--ina-primary-300);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.ina-tab-horizontal--use-brand-color
|
|
108
108
|
.ina-tab-horizontal__tab--variant-outline.ina-tab-horizontal__tab--selected {
|
|
109
|
-
color: var(--ina-primary-
|
|
110
|
-
border-bottom-color: var(--ina-primary-
|
|
109
|
+
color: var(--ina-primary-300);
|
|
110
|
+
border-bottom-color: var(--ina-primary-300);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
/* Variant: Button Brand */
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
.ina-tab-horizontal__tab--variant-button-brand.ina-tab-horizontal__tab--selected {
|
|
126
|
-
background-color: var(--ina-primary-
|
|
126
|
+
background-color: var(--ina-primary-300);
|
|
127
127
|
color: var(--ina-white) !important;
|
|
128
128
|
font-weight: 600;
|
|
129
129
|
}
|
|
@@ -168,12 +168,12 @@
|
|
|
168
168
|
.ina-tab-horizontal__tab--variant-button-white:hover:not(
|
|
169
169
|
.ina-tab-horizontal__tab--disabled
|
|
170
170
|
) {
|
|
171
|
-
color: var(--ina-primary-
|
|
171
|
+
color: var(--ina-primary-300);
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.ina-tab-horizontal--use-brand-color
|
|
175
175
|
.ina-tab-horizontal__tab--variant-button-white.ina-tab-horizontal__tab--selected {
|
|
176
|
-
color: var(--ina-primary-
|
|
176
|
+
color: var(--ina-primary-300);
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
/* Disabled State */
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
|
|
264
264
|
[data-theme='dark']
|
|
265
265
|
.ina-tab-horizontal__tab--variant-button-brand.ina-tab-horizontal__tab--selected {
|
|
266
|
-
background-color: var(--ina-primary-
|
|
266
|
+
background-color: var(--ina-primary-300);
|
|
267
267
|
color: var(--ina-white) !important;
|
|
268
268
|
}
|
|
269
269
|
|
package/src/components/table.css
CHANGED