cloud-ide-element 1.1.74 → 1.1.76
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
|
@@ -230,13 +230,15 @@ $sizes: xxs, xs, sm, md, lg, xl;
|
|
|
230
230
|
content: '';
|
|
231
231
|
position: absolute;
|
|
232
232
|
top: 50%;
|
|
233
|
-
left: -
|
|
234
|
-
right: -
|
|
235
|
-
height:
|
|
236
|
-
background-color: var(--cide-ele-bg-primary, #ffffff);
|
|
237
|
-
z-index: -1;
|
|
233
|
+
left: -3px;
|
|
234
|
+
right: -3px;
|
|
235
|
+
height: 4px; // Larger to ensure full border coverage with some padding
|
|
236
|
+
background-color: var(--cide-ele-bg-primary, var(--cide-theme-light-color, #ffffff));
|
|
237
|
+
z-index: -1; // Behind the label text to prevent overlay
|
|
238
238
|
transform: translateY(-50%);
|
|
239
239
|
pointer-events: none;
|
|
240
|
+
// Ensure it matches the actual background by using the same variable
|
|
241
|
+
// This will automatically adapt to light/dark theme
|
|
240
242
|
}
|
|
241
243
|
}
|
|
242
244
|
|