-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08875a7
commit 204609b
Showing
9 changed files
with
71 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* ───────────────────────────────────────────────── */ | ||
/** Search container (cmd+f) | ||
──────────────────────────────────────────────────── */ | ||
.document-search-container { | ||
margin-right: 0; | ||
margin-left: 0; | ||
border-bottom: var(--thin-border); | ||
box-shadow: var(--shadow-s); | ||
} | ||
|
||
body:not(.show-close-buttons, .is-mobile) .document-search-close-button { | ||
display: none; | ||
} |
14 changes: 0 additions & 14 deletions
14
source/04 modals and menus.css → source/04 settings plugin-theme-browser.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
/* ───────────────────────────────────────────────── */ | ||
/** Progress Bars | ||
──────────────────────────────────────────────────── */ | ||
|
||
/* Vault Launch */ | ||
/* INFO use `debugger` in the console while the vault launches. Close Obsidian | ||
* while the console is open, so the console appears on start. */ | ||
|
||
@keyframes startup-blink { | ||
/* cannot use variables, since they are not fully available yet on startup */ | ||
0% { | ||
opacity: 0.1; | ||
} | ||
|
||
50% { | ||
opacity: 1; | ||
} | ||
|
||
100% { | ||
opacity: 0.1; | ||
} | ||
} | ||
|
||
/* .app-container is needed so this does not affect the canvas progress bar */ | ||
.app-container + .progress-bar .progress-bar-message { | ||
margin-bottom: 30px; | ||
font-size: 0; | ||
animation-name: startup-blink; | ||
animation-duration: 1s; | ||
animation-iteration-count: infinite; | ||
} | ||
|
||
.app-container + .progress-bar .progress-bar-message::before { | ||
font-size: 10rem; | ||
font-weight: 500; | ||
color: var(--text-normal); | ||
content: var(--signature); | ||
} | ||
|
||
.app-container + .progress-bar .progress-bar-indicator { | ||
display: none; | ||
} | ||
|
||
/* Plugin Update Progress Bar */ | ||
.modal .is-loading::before { | ||
height: 8px; | ||
background: linear-gradient( | ||
45deg, | ||
var(--color-accent) 0% 20%, | ||
var(--hover-accent) 40% 60%, | ||
var(--secondary-accent) 80% 100% | ||
); | ||
} | ||
|
||
.theme-light .modal .is-loading::before { | ||
filter: brightness(1.2); | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.