mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 02:42:27 +08:00
style(next): reorganize CSS
This commit is contained in:
parent
2191b1b9fd
commit
5f12ddaa14
@ -11,6 +11,10 @@
|
|||||||
src: url(../../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
|
src: url(../../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GLOBAL VARIABLES
|
||||||
|
*/
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--main-font-family: "Inter", sans-serif;
|
--main-font-family: "Inter", sans-serif;
|
||||||
|
|
||||||
@ -259,16 +263,50 @@ body.mobile .dropdown-menu .dropdown-item.submenu-open .dropdown-toggle::after {
|
|||||||
transform: rotate(270deg);
|
transform: rotate(270deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tool dialogs - small dialogs without a backdrop */
|
/*
|
||||||
div.tn-tool-dialog {
|
* TOASTS
|
||||||
border-radius: 10px;
|
*/
|
||||||
background: var(--tool-dialog-background-color) !important;
|
|
||||||
user-select: none;
|
#toast-container {
|
||||||
box-shadow: 10px 10px 93px -25px var(--tool-dialog-shadow-color);
|
/* The vertical gap between toasts */
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toast-container .toast {
|
||||||
|
--bs-toast-padding-x: 12px;
|
||||||
|
--bs-border-radius: 8px;
|
||||||
|
--bs-toast-bg: var(--toast-background);
|
||||||
|
--bs-toast-color: var(--toast-text-color);
|
||||||
|
--modal-control-button-background: var(--toast-close-button-background);
|
||||||
|
--modal-control-button-color: var(--bs-toast-color);
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
backdrop-filter: blur(6px);
|
||||||
|
}
|
||||||
|
|
||||||
|
#toast-container .toast .toast-header {
|
||||||
|
padding: 0 !important;
|
||||||
|
background: transparent !important;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toast-container .toast .toast-header strong {
|
||||||
|
/* The title of the toast is no longer displayed */
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toast-container .toast .toast-header .btn-close {
|
||||||
|
margin: 0 var(--bs-toast-padding-x) 0 12px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#toast-container .toast .toast-body {
|
||||||
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NOTE TOOLTIP
|
* NOTE TOOLTIPS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.tooltip .tooltip-inner:has(.note-tooltip-content) {
|
.tooltip .tooltip-inner:has(.note-tooltip-content) {
|
||||||
@ -335,77 +373,10 @@ div.tn-tool-dialog {
|
|||||||
transform: translateY(4%);
|
transform: translateY(4%);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Note search suggestions
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* List body */
|
|
||||||
.jump-to-note-dialog .jump-to-note-results .aa-suggestions,
|
|
||||||
.note-detail-empty .aa-suggestions {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* List item */
|
|
||||||
.jump-to-note-dialog .aa-suggestions div,
|
|
||||||
.note-detail-empty .aa-suggestions div {
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 6px 12px;
|
|
||||||
color: var(--menu-text-color);
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Selected list item */
|
|
||||||
.jump-to-note-dialog .aa-suggestions div.aa-cursor,
|
|
||||||
.note-detail-empty .aa-suggestions div.aa-cursor {
|
|
||||||
background: var(--hover-item-background-color);
|
|
||||||
color: var(--hover-item-text-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Toasts
|
|
||||||
*/
|
|
||||||
|
|
||||||
#toast-container {
|
|
||||||
/* The vertical gap between toasts */
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#toast-container .toast {
|
|
||||||
--bs-toast-padding-x: 12px;
|
|
||||||
--bs-border-radius: 8px;
|
|
||||||
--bs-toast-bg: var(--toast-background);
|
|
||||||
--bs-toast-color: var(--toast-text-color);
|
|
||||||
--modal-control-button-background: var(--toast-close-button-background);
|
|
||||||
--modal-control-button-color: var(--bs-toast-color);
|
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row-reverse;
|
|
||||||
backdrop-filter: blur(6px);
|
|
||||||
}
|
|
||||||
|
|
||||||
#toast-container .toast .toast-header {
|
|
||||||
padding: 0 !important;
|
|
||||||
background: transparent !important;
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#toast-container .toast .toast-header strong {
|
|
||||||
/* The title of the toast is no longer displayed */
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#toast-container .toast .toast-header .btn-close {
|
|
||||||
margin: 0 var(--bs-toast-padding-x) 0 12px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#toast-container .toast .toast-body {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NOTE LIST
|
* NOTE LIST
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.note-list .note-book-card {
|
.note-list .note-book-card {
|
||||||
--note-list-horizontal-padding: 22px;
|
--note-list-horizontal-padding: 22px;
|
||||||
--note-list-vertical-padding: 15px;
|
--note-list-vertical-padding: 15px;
|
||||||
@ -525,4 +496,30 @@ div.tn-tool-dialog {
|
|||||||
|
|
||||||
.note-list.grid-view .ck-content figure.image {
|
.note-list.grid-view .ck-content figure.image {
|
||||||
width: 25%;
|
width: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* NOTE SEARCH SUGGESTIONS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* List body */
|
||||||
|
.jump-to-note-dialog .jump-to-note-results .aa-suggestions,
|
||||||
|
.note-detail-empty .aa-suggestions {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List item */
|
||||||
|
.jump-to-note-dialog .aa-suggestions div,
|
||||||
|
.note-detail-empty .aa-suggestions div {
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 6px 12px;
|
||||||
|
color: var(--menu-text-color);
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Selected list item */
|
||||||
|
.jump-to-note-dialog .aa-suggestions div.aa-cursor,
|
||||||
|
.note-detail-empty .aa-suggestions div.aa-cursor {
|
||||||
|
background: var(--hover-item-background-color);
|
||||||
|
color: var(--hover-item-text-color);
|
||||||
}
|
}
|
@ -95,8 +95,16 @@
|
|||||||
border-top: unset;
|
border-top: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Tool dialogs - small dialogs without a backdrop */
|
||||||
|
div.tn-tool-dialog {
|
||||||
|
border-radius: 10px;
|
||||||
|
background: var(--tool-dialog-background-color) !important;
|
||||||
|
user-select: none;
|
||||||
|
box-shadow: 10px 10px 93px -25px var(--tool-dialog-shadow-color);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* JUMP TO NOTE
|
* JUMP TO NOTE DIALOG
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.jump-to-note-dialog .modal-dialog {
|
.jump-to-note-dialog .modal-dialog {
|
||||||
@ -147,7 +155,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* RECENT CHANGES
|
* RECENT CHANGES DIALOG
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.recent-changes-dialog .modal-body {
|
.recent-changes-dialog .modal-body {
|
||||||
@ -292,7 +300,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CHEATSHEET
|
* CHEATSHEET DIALOG
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.help-dialog .modal-content {
|
.help-dialog .modal-content {
|
||||||
@ -372,7 +380,7 @@
|
|||||||
color: var(--help-code-color);
|
color: var(--help-code-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* DELETE NOTE PREVIEW */
|
/* DELETE NOTE PREVIEW DIALOG */
|
||||||
|
|
||||||
.delete-notes-list .note-path {
|
.delete-notes-list .note-path {
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* LOG IN
|
* LOG IN PAGE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.login-page {
|
.login-page {
|
||||||
@ -33,7 +33,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SEARCH
|
* SEARCH PAGE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Button bar */
|
/* Button bar */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user