-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathpopup.css
More file actions
75 lines (64 loc) · 1.22 KB
/
Copy pathpopup.css
File metadata and controls
75 lines (64 loc) · 1.22 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
70
71
72
73
74
75
:root {
--bg-color: #ffffff;
--text-color: #000000;
--button-bg: #eee;
--button-border: #ccc;
--textarea-bg: #ffffff;
--textarea-text: #000000;
}
body.dark-mode {
--bg-color: #1e1e1e;
--text-color: #e0e0e0;
--button-bg: #333333;
--button-border: #555555;
--textarea-bg: #2d2d2d;
--textarea-text: #e0e0e0;
}
body {
width: 335px;
font-size: 12px;
font-family: sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
transition: background-color 0.3s, color 0.3s;
}
.button {
margin: 3% auto;
padding: 4px;
text-align: center;
border: 1px solid var(--button-border);
border-radius: 3px;
background-color: var(--button-bg);
cursor: pointer;
color: var(--text-color);
}
.wide {
min-width: 8em;
}
.full {
display: block;
width: 100%;
}
#save-link-with-note-wrapper {
display: none;
}
#save-link-with-note-textarea {
width: 100%;
background-color: var(--textarea-bg);
color: var(--textarea-text);
border: 1px solid var(--button-border);
padding: 4px;
border-radius: 3px;
}
#save-button {
border-color: #0062cc;
background-color: #0069d9;
color: white;
}
#check-connection-button {
float: right;
margin-top: -6px;
}
button[disabled] {
color: #aaa;
}