-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradient-container-tabs.css
More file actions
25 lines (23 loc) · 905 Bytes
/
gradient-container-tabs.css
File metadata and controls
25 lines (23 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* @replete's Firefox userChrome
* Tabs - Container tabs gradient
* https://github.com/replete/firefox-userchrome
*/
/* Container tab colour (delete if you want the solid color strip back) */
.tabbrowser-tab .tab-context-line {
height: 29px !important;
margin:0 !important;
border-radius: 4px !important;
background-color: transparent !important;
background: radial-gradient(ellipse farthest-side at 15% -75%, var(--identity-icon-color) 0%, transparent 100%);
opacity:0.8
}
.tabbrowser-tab[pinned=true] .tab-context-line {
background: linear-gradient(0deg, transparent 60%, var(--identity-icon-color) 140%)
}
.tabbrowser-tab[selected=true] .tab-context-line {
opacity:1;
}
.tabbrowser-tab:hover:not([selected=true]) .tab-context-line {
background: radial-gradient(ellipse farthest-side at 50% 0%, var(--identity-icon-color) 0%, transparent 100%);
opacity:1;
}