-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotitlebar-infinity-tab-width-mod.css.disabled
More file actions
69 lines (59 loc) · 1.79 KB
/
notitlebar-infinity-tab-width-mod.css.disabled
File metadata and controls
69 lines (59 loc) · 1.79 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* hide vivaldi logo (top left) and window controls (minimize, maximize, close) */
#titlebar {
display: none !important;
visibility: hidden !important;
}
/* add padding replacing vivaldi logo and window controls */
#tabs-container {
padding-left: 10px !important;
padding-right: 10px !important;
}
/* center tab title */
.tab .title {
justify-content: center !important;
}
/* hide workspace indicator in tab menu */
.button-toolbar.tabbar-workspace-button.workspace-popup {
display: none !important;
visibility: hidden !important;
}
/* add padding to not overlap tab menu and new tab button */
#tabs-container.top .tab-strip {
display: flex !important;
padding-right: 30px !important;
}
/* unlimited tabs width (safari-like) */
#tabs-container.top .tab-strip span {
flex: 1 1 0 !important;
display: flex !important;
}
/* unlimited tabs width (safari-like) */
#tabs-container.top .tab-position {
flex: 1 1 0 !important;
position: relative !important;
left: auto !important;
top: auto !important;
height: 30px !important;
transform: revert !important;
}
/* gray border to separate tabs */
#tabs-container.top .tab-position:not(.toolbar):not(.tab-strip:last-child) {
border-right: 1px solid rgba(255,255,255,0.15) !important;
border-left: 1px solid rgba(255,255,255,0.15) !important;
}
/* do not count new tab button as a tab div */
#tabs-container.top .tab-position.toolbar {
position: absolute !important;
right: 0;
}
/* new tab button size */
#tabs-container.top .tab-position .tab .favicon,
#tabs-container.top .tab-position .tab .close {
flex: 0 0 18px !important;
}
/* unlimited tabs width (safari-like) */
#tabs-container.top .newtab {
position: relative !important;
left: auto !important;
top: auto !important;
}