-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.css
102 lines (96 loc) · 1.78 KB
/
content.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
.extension-tool-button {
display: flex !important;
max-width: 32px !important;
}
.extra-toolbar {
display: flex;
flex-direction: row;
height: 32px;
gap: 8px;
}
.vector-settings.vector-settings ul {
align-items: end;
}
.extension-settings {
z-index: 9999;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
display: flex;
align-items: center;
justify-content: center;
}
.extension-settings .backdrop {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
}
.extension-settings .panel {
position: relative;
padding: 8px 16px;
background-color: #fff;
border: rgb(162, 169, 177) solid 1px;
display: flex;
flex-direction: column;
}
.extension-settings h3 {
padding: 0px;
margin: 8px 0px;
}
.extension-settings h4 {
margin: 0px;
}
.extension-settings hr {
margin: 8px 0px;
}
.extension-settings input[type="radio"] {
margin-left: 8px;
}
.extension-settings input[type="radio"]:checked {
background-color: #3366cc;
margin-left: 8px;
}
.extension-settings label {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 4px;
}
.extension-settings .row {
display: flex;
flex-direction: row;
margin-top: 8px;
gap: 16px;
position: relative;
}
.extension-settings .row > * {
flex-grow: 1;
}
.extension-settings .column {
display: flex;
flex-direction: column;
}
.notification {
pointer-events: none;
position: fixed;
font-size: small !important;
padding: 8px !important;
animation: fade 3s;
}
@keyframes fade {
0% {
opacity: 0;
}
5% {
opacity: 1;
}
95% {
opacity: 1;
}
100% {
opacity: 0;
}
}