generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
60 lines (52 loc) · 1.06 KB
/
styles.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
/* Sets all the text color to red! */
.savedQ {
padding: 5px 5px;
}
.savedQ-name {
background-color: var(--background-secondary-alt);
padding: 2px 4px;
border-radius: 5px;
}
.savedQ-view-q {
padding: 2px 4px;
border-radius: 5px;
}
.editQButton,
.deleteQButton {
float: right;
}
.savedQ-name:hover,
.editQButton:hover,
.deleteQButton:hover,
.savedQ-query:hover,
.AC-submit-button:hover,
.savedQ-view-q:hover {
background-color: var(--interactive-accent) !important;
cursor: pointer;
}
.AC-submit-button:focus {
background-color: var(--interactive-accent) !important;
}
.savedQ-query {
background-color: var(--background-primary-alt);
padding: 2px 4px;
border-radius: 5px;
}
.AC-flashNewSel {
animation: flashNewSel 1.5s 1;
border-radius: 3px;
}
@keyframes flashNewSel {
0% {
background-color: transparent;
}
10% {
background-color: var(--text-highlight-bg);
}
80% {
background-color: var(--text-highlight-bg);
}
100% {
background-color: transparent;
}
}