-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebery-styles.css
68 lines (54 loc) · 1.6 KB
/
sidebery-styles.css
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
#root.root {--tabs-margin: 0px;}
#root.root {--tabs-close-btn-margin: 0px;}
#root.root {--tabs-normal-bg: #EEE;}
#root.root {--tabs-activated-bg: black;}
#root.root {--tabs-activated-fg: white;}
#root.root {--tabs-border-radius: 15px;}
#root.root {--tabs-lvl-opacity: 1.0;}
#root.root {--frame-bg: #b0b4c0;}
#root.root {--bookmarks-inner-gap: 7px;}
#root.root {--bookmarks-node-activated-fg: red;}
#root.root {--bookmarks-margin: 0px;}
#root.root {--bookmarks-indent: 16px;}
#root.root {--scroll-color: black;}
#root.root {--bookmarks-folder-height: 17px;}
#root.root {--bookmarks-bookmark-height: 17px;}
#root.root {--tabs-color-layer-opacity: 0.4;}
/* folder title */
.BookmarkNode[data-type="folder"] > .body > .title {
color:royalblue;
}
/* bookmark background */
.BookmarkNode > .body { background-color:#EEE; }
.BookmarkNode[data-expanded="true"] > .body { background-color:royalblue; }
/* folder background */
/*.BookmarkNode[data-type="folder"] > .body { background-color:lightblue; }
*/
/* indent indicator line opacity */
.BookmarkNode .children::before { opacity:1; }
/* unloaded tabs */
.Tab[data-discarded="true"] .body {
background-color:#0000;
/*border: 1px solid lightgrey;*/
}
.Tab .body {
border: 0px solid #c7c7c780;
box-shadow: inset 0px 1px 0px 0px #AAA;
padding-top: 1px;
}
#root {--tabs-height: auto !important;}
#root {--tabs-font-size: .8rem;}
.Tab .t-box {
align-items: center;
vertical-align: top;
max-height: 5.5rem;
/* TODO: smooth fade-out? */
overflow: hidden;
}
.Tab .title {
font-size: var(--tabs-font-size);
white-space: pre-wrap;
}
.Tab .close {
width: 50px !important;
}