-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsidebar-tabs.css
109 lines (103 loc) · 2.19 KB
/
sidebar-tabs.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.domain .folder.domain-view {
margin-bottom: .5rem;
}
.folder-name.active {
font-weight: bold;
font-size: 1rem;
line-height: 1rem;
background-size: 1rem 1rem;
background-color: var(--background-color-active);
}
.item.active {
font-weight: bold;
font-size: 1rem;
line-height: 1rem;
padding-top: .2rem;
padding-bottom: .2rem;
background-color: var(--background-color-active);
background-size: 1rem 1rem;
background-position-y: .2rem;
}
.item.active:hover {
background-color: var(--border-color-active);
}
.item.active>.controls {
margin-top: .15rem;
}
.item.pinned {
background-color: var(--background-color-active);
}
.plain .item #tabs-pin {
display: inline-block;
}
.item.pinned #tabs-pin {
display: none;
}
.item.tab-unreaded {
font-style: italic;
}
#tabs-undo {
cursor: default;
}
#tabs-undo.undo-active {
cursor: pointer;
}
#tabs-undo>span {
background-color: var(--font-color-inactive)!important;
}
#tabs-undo.undo-active>span {
background-color: var(--font-color-active)!important;
}
#search-container {
display: none;
}
.search-active #search-container,
.search-show-input #search-container {
display: block;
}
.search-show-input #controls-bottom #tabs-new,
.search-show-input #tabs-plain,
.search-show-input #tabs-domain,
.search-show-input #tabs-tree,
.search-show-input #tabs-search {
display: none!important;
}
.search-show-input .clear-search {
display: inline-block!important;
}
.plain .item.pinned #tabs-unpin,
.plain .item #tabs-move,
.domain .item #tabs-move,
.domain .folder-name #tabs-move,
.tree #root-folder>div>.folder>.folder-content>a>.controls #tabs-move,
.item #tabs-fav,
.item #tabs-reload,
.item #tabs-duplicate,
.item #tabs-close,
.folder-name #tabs-closeAll {
display: inline-block;
}
.domain-default {
background-image: url(icons/default.svg);
}
.domain-pdf {
background-image: url(icons/pdf.svg);
}
.domain-file {
background-image: url(icons/folder.svg);
}
.domain-ftp {
background-image: url(icons/ftp.svg);
}
.domain-startpage {
background-image: url(icons/startpage.svg);
}
.domain-system {
background-image: url(icons/wrench.svg);
}
.domain-extension {
background-image: url(icons/default.svg);
}
.domain-windows {
background-image: url(icons/window.svg);
}