cicy-desktop 2.1.84 → 2.1.85
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
|
@@ -62,6 +62,15 @@
|
|
|
62
62
|
.tab.active::before,.tab.active::after{content:"";position:absolute;bottom:0;width:5px;height:5px}
|
|
63
63
|
.tab.active::before{left:-5px;background:radial-gradient(circle at top left,var(--strip) 4.5px,var(--toolbar) 5px)}
|
|
64
64
|
.tab.active::after{right:-5px;background:radial-gradient(circle at top right,var(--strip) 4.5px,var(--toolbar) 5px)}
|
|
65
|
+
/* Chrome-style hairline separator between adjacent INACTIVE tabs: a faint 1px
|
|
66
|
+
vertical line sitting in the gap to the LEFT of each tab. Suppressed for the
|
|
67
|
+
first tab and around the active/hovered tab (Chrome hides the seam that would
|
|
68
|
+
touch an active or hovered tab on either side). Inactive tabs don't use
|
|
69
|
+
::before (that's the active tab's ear), so it's free here. */
|
|
70
|
+
.tab:not(.active)::before{content:"";position:absolute;left:-3.5px;top:50%;transform:translateY(-50%);width:1px;height:16px;background:rgba(255,255,255,.12);pointer-events:none}
|
|
71
|
+
#tabs>.tab:first-child::before{display:none} /* nothing left of the first tab */
|
|
72
|
+
.tab:hover::before{display:none} /* no line on the hovered tab's left */
|
|
73
|
+
.tab.active+.tab::before,.tab:hover+.tab::before{display:none} /* none on the active/hovered tab's right */
|
|
65
74
|
.fav{width:16px;height:16px;flex:0 0 16px;border-radius:4px;display:flex;align-items:center;justify-content:center;overflow:hidden}
|
|
66
75
|
.fav img{width:16px;height:16px;object-fit:contain}
|
|
67
76
|
.spin{width:14px;height:14px;border:2px solid rgba(255,255,255,.25);border-top-color:var(--accent);border-radius:50%;animation:sp .7s linear infinite}
|