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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.1.74",
3
+ "version": "1.1.76",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"
@@ -230,13 +230,15 @@ $sizes: xxs, xs, sm, md, lg, xl;
230
230
  content: '';
231
231
  position: absolute;
232
232
  top: 50%;
233
- left: -2px;
234
- right: -2px;
235
- height: 2px; // Cover the border width
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