-
Notifications
You must be signed in to change notification settings - Fork 0
/
groupList.css
129 lines (107 loc) · 2.63 KB
/
groupList.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
html {
/* Max extension popup size is now 800x600px */
--popup-width: 320px;
--list-columns: 1;
--popup-width-2col: 600px;
--list-columns-2col: 2;
--popup-width-3col: 800px;
--list-columns-3col: 3;
width: var(--popup-width);
height: auto;
min-height: 200px;
}
body {
--back-color: #f0f0ea;
--text-color: #0f0f0f;
--subdued-text-color: #686868;
font-size: 100%;
margin: 0;
padding: 0.25em 0.5em;
color: var(--text-color);
background-color: var(--back-color);
}
div#header {
display: flex;
justify-content: space-between;
}
summary {
font-size: 90%;
color: var(--subdued-text-color);
}
ul#tabGroupsList {
list-style-type: none;
columns: var(--list-columns);
column-gap: 0.5em;
padding-left: 0px;
margin: 0.5rem 0;
}
#tabGroupsList li {
--group-color: silver;
--left-border-def: solid 0.4em color-mix(in srgb, var(--group-color) 70%, var(--back-color));
cursor: pointer;
padding: 0.2em;
padding-left: 0.3em;
background-color: color-mix(in srgb, var(--group-color) 10%, var(--back-color));
border-radius: 6px;
border: solid 1px color-mix(in srgb, var(--group-color) 20%, var(--back-color));
border-left: var(--left-border-def);
}
#tabGroupsList li span.title {
color: var(--text-color);
}
#tabGroupsList li span.detail {
margin-left: 0.3em;
font-size: 75%;
color: gray;
}
#tabGroupsList li span.title.no-name {
color: var(--subdued-text-color);
}
#tabGroupsList li:hover {
background-color: color-mix(in srgb, var(--group-color) 15%, var(--back-color));
border-color: color-mix(in srgb, var(--group-color) 40%, var(--back-color));
border-left: var(--left-border-def);
}
#tabGroupsList li:not(:last-child) {
margin-bottom: 0.3em;
}
span#info-btn:before {
content: "\2139";
font-family: serif;
display: inline-block;
text-align: center;
cursor: pointer;
color: white;
background-color: cornflowerblue;
border-radius: 50%;
width: 1em;
height: 1em;
}
dialog {
flex-direction: column;
align-items: center;
padding: 0.6em 3em;
background-color:ivory;
border: solid 2px steelblue;
border-radius: 0.5em;
}
dialog[open] {
display: flex;
}
dialog h4 {
margin: 0.2em;
}
dialog a {
color: royalblue;
}
dialog a, dialog span {
font-size: 90%;
}
dialog::backdrop {
background: rgba(0, 0, 0, 0.33);
}
dialog form {
margin-top: 0.7em;
font-size: large;
text-align: end;
}