upd: styles

set link color in ref-text, set dimensions of passage-popup, set colors for increase and decrease font size buttons
This commit is contained in:
2026-06-25 10:48:48 -04:00
parent 441b39312a
commit 89e6f39e71
3 changed files with 36 additions and 1 deletions
+18
View File
@@ -147,6 +147,10 @@ button.button i {
h2 {
display: block;
}
& a {
color: var(--primary);
}
}
#refQuery {
@@ -263,6 +267,15 @@ input:checked + .slider:before {
border-radius: 50%;
}
#passage-popup {
position: absolute;
z-index: 1000;
background-color: var(--background);
border: solid 2px var(--border);
border-radius: 5px;
width: 400px;
}
#refQuery, #passage-popup, #modal-backdrop, #modal-container {
display: none;
}
@@ -278,4 +291,9 @@ textarea {
#note-table a, #note-table a:active {
color: var(--text);
cursor: pointer;
}
#increaseFont:active, #decreaseFont:active {
background-color: var(--primary);
color: var(--background) !important;
}