-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (66 loc) · 1.37 KB
/
Copy pathstyles.css
File metadata and controls
79 lines (66 loc) · 1.37 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
76
77
78
79
/* CheekyChimp Plugin Styles */
.cheekychimp-icon {
color: var(--icon-color);
}
.cheekychimp-settings-header {
margin-bottom: 1em;
}
.cheekychimp-script-list {
margin-bottom: 1em;
}
.cheekychimp-script-item {
display: flex;
align-items: center;
padding: 0.5em;
border-radius: 5px;
border: 1px solid var(--background-modifier-border);
margin-bottom: 0.5em;
}
.cheekychimp-script-enabled {
margin-right: 1em;
}
.cheekychimp-script-name {
flex-grow: 1;
font-weight: 500;
}
.cheekychimp-script-actions {
display: flex;
gap: 0.5em;
}
.cheekychimp-editor {
height: 400px;
font-family: var(--font-monospace);
}
.cheekychimp-dialog {
width: 80%;
max-width: 800px;
}
.cheekychimp-status-bar-item {
display: flex;
align-items: center;
gap: 4px;
}
.cheekychimp-tooltip {
position: relative;
}
.cheekychimp-tooltip-text {
visibility: hidden;
width: 200px;
background-color: var(--background-secondary);
color: var(--text-normal);
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
border: 1px solid var(--background-modifier-border);
}
.cheekychimp-tooltip:hover .cheekychimp-tooltip-text {
visibility: visible;
opacity: 1;
}