vault backup: 2023-10-30 16:05:41
Affected files: .obsidian/community-plugins.json .obsidian/plugins/advanced-cursors/main.js .obsidian/plugins/advanced-cursors/manifest.json .obsidian/plugins/advanced-cursors/styles.css .obsidian/workspace.jsonmain
parent
0e12096b96
commit
bd78d0473f
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "advanced-cursors",
|
||||||
|
"name": "Advanced Cursors",
|
||||||
|
"version": "0.5.1",
|
||||||
|
"minAppVersion": "0.12.18",
|
||||||
|
"description": "Use multiple cursors even more powerfully.",
|
||||||
|
"author": "SkepticMystic",
|
||||||
|
"authorUrl": "https://github.com/SkepticMystic/advanced-cursors",
|
||||||
|
"isDesktopOnly": true
|
||||||
|
}
|
@ -0,0 +1,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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue