2021-05-23 20:26:54 +02:00
|
|
|
@font-face {
|
2022-09-04 16:50:45 +02:00
|
|
|
font-family: Montserrat;
|
2021-05-23 20:26:54 +02:00
|
|
|
src: url(../fonts/Montserrat-Light.ttf);
|
2022-09-04 16:50:45 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: Montserrat;
|
|
|
|
src: url(../fonts/Montserrat-Regular.ttf);
|
|
|
|
font-weight: bold;
|
2021-05-23 20:26:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: JetBrainsLight;
|
|
|
|
src: url(../fonts/JetBrainsMono-Light.woff2) format('woff');
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:57:46 +01:00
|
|
|
html {
|
|
|
|
/* this fixes FF filter vs. position fixed bug: https://github.com/zadam/trilium/issues/233 */
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-10-12 13:40:06 +02:00
|
|
|
body {
|
|
|
|
/* Fix for CKEditor block gutter icon "stretching" body and causing scrollbar to appear after pressing enter
|
|
|
|
on the last line of the editor. */
|
|
|
|
position: fixed;
|
2019-01-07 23:17:12 +01:00
|
|
|
width: 100%;
|
2021-11-21 13:39:47 +01:00
|
|
|
height: 100%;
|
2021-09-26 15:24:37 +02:00
|
|
|
background-color: var(--main-background-color);
|
|
|
|
color: var(--main-text-color);
|
|
|
|
font-family: var(--main-font-family);
|
2021-11-21 13:39:47 +01:00
|
|
|
font-size: var(--main-font-size);
|
2021-09-26 15:24:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a, a:visited, a:hover {
|
|
|
|
color: var(--link-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
input, select, textarea {
|
|
|
|
color: var(--input-text-color) !important;
|
|
|
|
background: var(--input-background-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#left-pane input, select, textarea {
|
|
|
|
color: var(--left-pane-text-color) !important;
|
|
|
|
background: var(--left-pane-background-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
input::placeholder {
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
table td, table th {
|
|
|
|
color: var(--main-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ck .todo-list__checkmark {
|
|
|
|
top: 10px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-backdrop {
|
|
|
|
background-color: var(--modal-backdrop-color) !important;
|
2019-01-13 18:57:46 +01:00
|
|
|
}
|
|
|
|
|
2021-06-13 22:55:31 +02:00
|
|
|
.component {
|
|
|
|
contain: size;
|
|
|
|
}
|
|
|
|
|
2021-05-26 22:41:55 +02:00
|
|
|
code, kbd, pre, samp {
|
2021-11-20 13:20:06 +01:00
|
|
|
font-family: var(--monospace-font-family) !important;
|
2021-05-26 22:41:55 +02:00
|
|
|
}
|
|
|
|
|
2019-01-13 18:57:46 +01:00
|
|
|
.input-group-text {
|
2019-01-13 22:03:06 +01:00
|
|
|
background-color: var(--accented-background-color) !important;
|
|
|
|
color: var(--muted-text-color) !important;
|
2019-01-13 18:57:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button.close {
|
|
|
|
color: var(--main-text-color);
|
|
|
|
}
|
|
|
|
|
2019-05-07 21:04:07 +02:00
|
|
|
button.close:hover {
|
|
|
|
color: var(--hover-item-text-color);
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:57:46 +01:00
|
|
|
.modal-content {
|
|
|
|
background-color: var(--modal-background-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link.active {
|
2019-02-26 22:51:33 +01:00
|
|
|
background-color: inherit !important;
|
2019-01-13 18:57:46 +01:00
|
|
|
color: var(--main-text-color) !important;
|
2018-10-12 13:40:06 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 22:24:43 +02:00
|
|
|
.note-title[readonly] {
|
2018-12-27 20:22:33 +01:00
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
|
2018-09-06 09:33:38 +02:00
|
|
|
.tdialog {
|
2018-11-06 15:25:07 +01:00
|
|
|
display: none;
|
2018-09-06 09:33:38 +02:00
|
|
|
}
|
|
|
|
|
2017-09-03 18:53:28 -04:00
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: auto;
|
|
|
|
/* prevent horizontal scrollbar */
|
|
|
|
overflow-x: hidden;
|
2017-09-05 22:01:22 -04:00
|
|
|
}
|
|
|
|
|
2017-12-04 18:21:57 -05:00
|
|
|
.icon-action {
|
2019-11-17 11:30:11 +01:00
|
|
|
border: 1px solid transparent;
|
2022-12-23 14:02:18 +01:00
|
|
|
padding: 5px;
|
2021-06-13 22:55:31 +02:00
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
2017-12-04 18:21:57 -05:00
|
|
|
cursor: pointer;
|
2018-11-09 11:57:52 +01:00
|
|
|
font-size: 1.5em;
|
2021-06-06 22:15:51 +02:00
|
|
|
color: var(--button-text-color);
|
2021-05-28 22:47:59 +02:00
|
|
|
background: var(--button-background-color);
|
2022-09-18 13:52:19 +02:00
|
|
|
border-radius: var(--button-border-radius);
|
2021-05-28 22:47:59 +02:00
|
|
|
}
|
|
|
|
|
2023-03-24 10:57:32 +01:00
|
|
|
.icon-action-always-border {
|
|
|
|
border-color: var(--button-border-color);
|
|
|
|
}
|
|
|
|
|
2021-05-28 22:47:59 +02:00
|
|
|
.icon-action:hover:not(.disabled) {
|
|
|
|
text-decoration: none;
|
|
|
|
border-color: var(--button-border-color);
|
2017-12-04 18:21:57 -05:00
|
|
|
}
|
|
|
|
|
2020-03-08 11:41:42 +01:00
|
|
|
.icon-action.disabled {
|
|
|
|
color: var(--muted-text-color) !important;
|
|
|
|
cursor: not-allowed;
|
2020-03-29 22:15:09 +02:00
|
|
|
pointer-events: none;
|
2020-03-08 11:41:42 +01:00
|
|
|
}
|
|
|
|
|
2017-12-15 22:35:42 -05:00
|
|
|
.ui-widget-content a:not(.ui-tabs-anchor) {
|
2017-10-05 20:15:45 -04:00
|
|
|
color: #337ab7 !important;
|
2017-10-06 22:46:30 -04:00
|
|
|
}
|
|
|
|
|
2017-10-11 20:37:27 -04:00
|
|
|
div.ui-tooltip {
|
|
|
|
max-width: 600px;
|
|
|
|
max-height: 600px;
|
|
|
|
overflow: auto;
|
2017-11-06 20:13:36 -05:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:40:55 -05:00
|
|
|
/*
|
|
|
|
* .search-inactive is added to search window <webview> when the window
|
|
|
|
* is inactive.
|
|
|
|
*/
|
|
|
|
.search-inactive {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* .search-inactive is added to search window <webview> when the window
|
|
|
|
* is active.
|
|
|
|
*/
|
|
|
|
.search-active {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.electronSearchText-box {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.electronSearchText-visible {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-12-23 14:35:20 -05:00
|
|
|
/* Allow to use <kbd> elements inside the title to define shortcut hints. */
|
2017-12-26 19:54:43 -05:00
|
|
|
.ui-menu kbd, button kbd {
|
2019-01-13 18:57:46 +01:00
|
|
|
color: var(--muted-text-color);
|
2017-12-23 14:35:20 -05:00
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2017-12-26 19:54:43 -05:00
|
|
|
.ui-menu kbd {
|
|
|
|
margin-left: 30px;
|
2018-01-01 18:53:52 -05:00
|
|
|
float: right;
|
2017-12-26 19:54:43 -05:00
|
|
|
}
|
|
|
|
|
2018-01-02 20:52:36 -05:00
|
|
|
.suppressed {
|
2018-06-10 10:53:39 -04:00
|
|
|
display: none;
|
2018-01-19 19:36:41 -05:00
|
|
|
}
|
|
|
|
|
2019-01-13 18:57:46 +01:00
|
|
|
.dropdown-menu {
|
2023-03-27 01:42:50 +02:00
|
|
|
border: 1px solid var(--dropdown-border-color);
|
2019-01-13 18:57:46 +01:00
|
|
|
color: var(--menu-text-color) !important;
|
|
|
|
background-color: var(--menu-background-color) !important;
|
|
|
|
}
|
|
|
|
|
2019-03-19 22:56:37 +01:00
|
|
|
.dropdown-menu .disabled {
|
|
|
|
color: #888 !important;
|
2020-03-29 22:15:09 +02:00
|
|
|
pointer-events: none;
|
2019-03-19 22:56:37 +01:00
|
|
|
}
|
|
|
|
|
2020-02-03 21:16:33 +01:00
|
|
|
.dropdown-menu a:hover:not(.disabled), .dropdown-item:hover:not(.disabled) {
|
2019-01-13 18:57:46 +01:00
|
|
|
color: var(--hover-item-text-color) !important;
|
|
|
|
background-color: var(--hover-item-background-color) !important;
|
2022-06-02 14:16:49 +02:00
|
|
|
border-color: var(--hover-item-border-color) !important;
|
2018-01-19 19:36:41 -05:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-11-05 21:12:03 +01:00
|
|
|
.dropdown-menu a:not(.selected) .check {
|
2018-01-21 23:06:25 -05:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2021-08-20 21:39:56 +02:00
|
|
|
.dropdown-menu kbd {
|
|
|
|
float: right;
|
2019-01-13 18:57:46 +01:00
|
|
|
color: var(--muted-text-color);
|
2018-01-19 19:36:41 -05:00
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
2021-08-20 21:39:56 +02:00
|
|
|
/* 0 padding needed otherwise this increases the size of dropdown after dynamic positioning (which is then screwed) */
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2018-01-19 19:36:41 -05:00
|
|
|
}
|
2018-01-21 10:33:32 -05:00
|
|
|
|
2022-06-02 14:16:49 +02:00
|
|
|
.dropdown-item, .dropdown-header {
|
2019-04-01 21:38:21 +02:00
|
|
|
color: var(--menu-text-color) !important;
|
2022-06-02 14:16:49 +02:00
|
|
|
border: 1px solid transparent !important;
|
2019-04-01 21:38:21 +02:00
|
|
|
}
|
|
|
|
|
2018-11-06 12:46:29 +01:00
|
|
|
.dropdown-item.disabled, .dropdown-item.disabled kbd {
|
|
|
|
color: #aaa !important;
|
|
|
|
}
|
|
|
|
|
2022-06-02 14:16:49 +02:00
|
|
|
.dropdown-item.active, .dropdown-item:focus {
|
2019-11-09 20:59:49 +01:00
|
|
|
color: var(--active-item-text-color) !important;
|
|
|
|
background-color: var(--active-item-background-color) !important;
|
2022-06-02 14:16:49 +02:00
|
|
|
border-color: var(--active-item-border-color) !important;
|
|
|
|
outline: none;
|
2019-11-09 20:59:49 +01:00
|
|
|
}
|
|
|
|
|
2018-01-21 10:33:32 -05:00
|
|
|
.CodeMirror {
|
2020-05-08 23:39:46 +02:00
|
|
|
height: 100%;
|
2018-08-17 09:32:07 +02:00
|
|
|
background: inherit;
|
2018-01-21 20:15:42 -05:00
|
|
|
}
|
|
|
|
|
2021-10-31 16:48:21 +01:00
|
|
|
body .CodeMirror {
|
|
|
|
font-size: var(--monospace-font-size);
|
2020-12-18 22:37:29 +01:00
|
|
|
}
|
|
|
|
|
2019-02-02 23:26:39 +01:00
|
|
|
.CodeMirror-gutters {
|
|
|
|
background-color: inherit !important;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
2019-08-06 20:05:05 +02:00
|
|
|
.cm-matchhighlight {
|
|
|
|
background-color: #eeeeee
|
2018-02-18 21:28:24 -05:00
|
|
|
}
|
|
|
|
|
2022-05-30 17:45:59 +02:00
|
|
|
.CodeMirror pre.CodeMirror-placeholder {
|
|
|
|
color: #999 !important;
|
2022-01-07 19:33:59 +01:00
|
|
|
}
|
|
|
|
|
2018-05-21 20:12:46 -04:00
|
|
|
#sql-console-query {
|
|
|
|
height: 150px;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sql-console-query .CodeMirror {
|
|
|
|
height: 150px;
|
2018-05-26 22:54:06 -04:00
|
|
|
}
|
|
|
|
|
2019-12-02 23:04:22 +01:00
|
|
|
#sql-console-query .CodeMirror-scroll {
|
|
|
|
min-height: inherit !important;
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:57:46 +01:00
|
|
|
.btn {
|
|
|
|
border-radius: var(--button-border-radius);
|
2021-05-28 22:47:59 +02:00
|
|
|
border-color: var(--button-border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
button.btn, button.btn-sm {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-micro {
|
|
|
|
padding: 0 10px 0 10px;
|
2019-01-13 18:57:46 +01:00
|
|
|
}
|
|
|
|
|
2019-11-20 21:35:18 +01:00
|
|
|
.btn.btn-primary {
|
|
|
|
border-color: var(--primary-button-border-color);
|
|
|
|
background-color: var(--primary-button-background-color);
|
|
|
|
color: var(--primary-button-text-color);
|
|
|
|
}
|
|
|
|
|
2019-12-18 20:16:11 +01:00
|
|
|
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
|
|
|
|
border-color: var(--primary-button-text-color);
|
|
|
|
background-color: var(--active-item-background-color);
|
|
|
|
color: var(--active-item-text-color);
|
|
|
|
}
|
|
|
|
|
2019-11-20 21:35:18 +01:00
|
|
|
.btn.btn-primary kbd {
|
|
|
|
color: var(--primary-button-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn:not(.btn-primary) {
|
2019-01-13 18:57:46 +01:00
|
|
|
background-color: var(--button-background-color);
|
|
|
|
color: var(--button-text-color);
|
2018-05-31 20:00:39 -04:00
|
|
|
}
|
|
|
|
|
2021-06-06 22:15:51 +02:00
|
|
|
#left-pane .btn:not(.btn-primary) {
|
|
|
|
background-color: var(--button-background-color);
|
|
|
|
color: var(--left-pane-text-color);
|
|
|
|
}
|
|
|
|
|
2018-06-05 23:28:10 -04:00
|
|
|
.btn.active:not(.btn-primary) {
|
2019-02-02 23:26:39 +01:00
|
|
|
background-color: var(--button-disabled-background-color) !important;
|
2019-11-23 20:54:49 +01:00
|
|
|
opacity: 0.4;
|
2018-05-31 23:21:47 -04:00
|
|
|
}
|
|
|
|
|
2018-08-03 22:56:23 +02:00
|
|
|
.ck.ck-block-toolbar-button {
|
2019-04-29 21:52:28 +02:00
|
|
|
transform: translateX(7px);
|
2019-04-28 17:37:28 +02:00
|
|
|
color: var(--muted-text-color);
|
|
|
|
background-color: var(--main-background-color);
|
2019-04-29 21:52:28 +02:00
|
|
|
/* Making this narrower because https://github.com/zadam/trilium/issues/502 (problem only in smaller font sizes) */
|
|
|
|
min-width: 0;
|
|
|
|
padding: 0;
|
2018-08-06 14:43:42 +02:00
|
|
|
}
|
|
|
|
|
2019-02-03 00:12:57 +01:00
|
|
|
pre:not(.CodeMirror-line) {
|
2019-02-02 23:51:00 +01:00
|
|
|
color: var(--main-text-color) !important;
|
2019-11-12 22:22:49 +01:00
|
|
|
white-space: pre-wrap;
|
2021-06-24 23:50:56 +02:00
|
|
|
font-size: 100%;
|
2019-02-02 23:51:00 +01:00
|
|
|
}
|
|
|
|
|
2018-08-06 17:53:13 +02:00
|
|
|
.pointer {
|
|
|
|
cursor: pointer;
|
2018-08-06 22:29:03 +02:00
|
|
|
}
|
|
|
|
|
2019-11-05 23:11:25 +01:00
|
|
|
.show-recent-notes-button, .input-clearer-button, .go-to-selected-note-button {
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
|
|
|
|
2018-08-06 22:29:03 +02:00
|
|
|
.show-recent-notes-button {
|
|
|
|
cursor: pointer;
|
2018-11-09 11:57:52 +01:00
|
|
|
font-size: 1.3em;
|
2018-11-14 11:17:20 +01:00
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2018-11-13 23:16:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-clearer-button {
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1.3em;
|
|
|
|
background: inherit !important;
|
|
|
|
padding-left: 5px;
|
2018-11-14 11:17:20 +01:00
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
2018-11-14 11:24:40 +01:00
|
|
|
.open-external-link-button {
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2020-09-03 22:22:21 +02:00
|
|
|
padding-top: 8px;
|
2018-11-14 11:24:40 +01:00
|
|
|
}
|
|
|
|
|
2018-11-14 11:17:20 +01:00
|
|
|
.go-to-selected-note-button {
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
|
|
|
|
2018-11-14 19:33:48 +01:00
|
|
|
.go-to-selected-note-button.disabled, .go-to-selected-note-button.disabled:hover {
|
2018-11-14 11:17:20 +01:00
|
|
|
cursor: inherit;
|
2022-06-05 14:35:23 +02:00
|
|
|
color: var(--button-disabled-text-color) !important;
|
|
|
|
background-color: var(--button-disabled-background-color) !important;
|
|
|
|
text-decoration: none;
|
2018-11-13 23:16:26 +01:00
|
|
|
}
|
|
|
|
|
2018-11-14 11:17:20 +01:00
|
|
|
.note-autocomplete-input {
|
|
|
|
/* this is for seamless integration of "input clearer" button */
|
2018-11-13 23:16:26 +01:00
|
|
|
border-right: 0;
|
2018-08-22 15:31:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table.promoted-attributes-in-tooltip {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.promoted-attributes-in-tooltip td, table.promoted-attributes-in-tooltip th {
|
|
|
|
padding: 10px;
|
2018-08-28 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2019-03-31 21:19:10 +02:00
|
|
|
.tooltip {
|
|
|
|
font-size: var(--main-font-size) !important;
|
|
|
|
}
|
2018-11-20 23:50:19 +01:00
|
|
|
|
2022-12-17 13:07:42 +01:00
|
|
|
.bs-tooltip-bottom .arrow::before { border-bottom-color: var(--main-border-color) !important; }
|
|
|
|
.bs-tooltip-top .arrow::before { border-top-color: var(--main-border-color) !important; }
|
|
|
|
.bs-tooltip-left .arrow::before { border-left-color: var(--main-border-color) !important; }
|
|
|
|
.bs-tooltip-right .arrow::before { border-right-color: var(--main-border-color) !important; }
|
2022-12-17 11:58:30 +01:00
|
|
|
|
|
|
|
.note-tooltip.tooltip .arrow {
|
2022-04-16 15:51:30 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-11-06 19:35:42 +01:00
|
|
|
.tooltip-inner {
|
2021-04-07 21:21:06 +02:00
|
|
|
padding: 15px;
|
2019-03-31 21:19:10 +02:00
|
|
|
background-color: var(--tooltip-background-color) !important;
|
2019-02-03 10:09:59 +01:00
|
|
|
border: 1px solid var(--main-border-color);
|
2019-01-05 11:49:17 +01:00
|
|
|
border-radius: 5px;
|
2018-11-06 19:35:42 +01:00
|
|
|
text-align: left;
|
2019-03-31 21:19:10 +02:00
|
|
|
color: var(--main-text-color) !important;
|
2020-08-06 00:06:42 +02:00
|
|
|
max-width: 500px;
|
2020-09-08 21:45:07 +02:00
|
|
|
box-shadow: 10px 10px 93px -25px #aaaaaa;
|
|
|
|
}
|
|
|
|
|
2021-04-07 21:21:06 +02:00
|
|
|
.tooltip-inner p:last-of-type {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-12-03 22:54:24 +01:00
|
|
|
.rendered-note-attributes {
|
2020-09-08 21:45:07 +02:00
|
|
|
color: var(--muted-text-color);
|
|
|
|
margin-bottom: 7px;
|
2020-08-06 00:06:42 +02:00
|
|
|
}
|
|
|
|
|
2021-01-21 21:48:06 +01:00
|
|
|
.note-tooltip-title {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2020-08-06 00:06:42 +02:00
|
|
|
.note-tooltip-content {
|
|
|
|
/* height needs to stay small because tooltip has problem when it can't fit to either top or bottom of the cursor */
|
|
|
|
max-height: 300px;
|
|
|
|
overflow: hidden;
|
2018-11-06 19:35:42 +01:00
|
|
|
}
|
|
|
|
|
2021-01-21 21:48:06 +01:00
|
|
|
.note-tooltip-content .note-title-with-path .note-path {
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note-tooltip-attributes {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2018-11-14 10:36:14 +01:00
|
|
|
.tooltip-inner img {
|
|
|
|
max-width: 250px;
|
|
|
|
max-height: 250px;
|
|
|
|
}
|
|
|
|
|
2018-11-19 11:47:40 +01:00
|
|
|
.tooltip-inner figure.image-style-side {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2018-11-06 19:35:42 +01:00
|
|
|
.tooltip.show {
|
|
|
|
opacity: 1;
|
2018-11-07 00:23:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.algolia-autocomplete {
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
z-index: 2000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.algolia-autocomplete .aa-input, .algolia-autocomplete .aa-hint {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.algolia-autocomplete .aa-dropdown-menu {
|
|
|
|
width: 100%;
|
2019-01-13 18:57:46 +01:00
|
|
|
background-color: var(--main-background-color);
|
2019-02-03 10:09:59 +01:00
|
|
|
border: 1px solid var(--main-border-color);
|
2018-11-07 00:23:50 +01:00
|
|
|
border-top: none;
|
|
|
|
z-index: 2000 !important;
|
|
|
|
max-height: 500px;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-11-12 23:34:22 +01:00
|
|
|
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-11-07 00:23:50 +01:00
|
|
|
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
|
2022-06-02 14:16:49 +02:00
|
|
|
color: var(--active-item-text-color);
|
|
|
|
background-color: var(--active-item-background-color);
|
2018-11-07 00:23:50 +01:00
|
|
|
}
|
2018-11-08 21:36:35 +01:00
|
|
|
|
|
|
|
.help-button {
|
|
|
|
float: right;
|
|
|
|
background: none;
|
|
|
|
font-weight: 900;
|
|
|
|
color: orange;
|
|
|
|
border: 0;
|
|
|
|
cursor: pointer;
|
2018-11-08 23:48:49 +01:00
|
|
|
}
|
|
|
|
|
2018-11-12 23:34:22 +01:00
|
|
|
.multiplicity {
|
2018-11-14 11:24:40 +01:00
|
|
|
font-size: 1.3em;
|
2018-11-13 22:22:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this is because bootstrap (?) sets code color to red for some reason */
|
|
|
|
code {
|
|
|
|
color: inherit !important;
|
2018-11-22 16:08:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.animated {
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInDown {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translate3d(0, -100%, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeInDown {
|
|
|
|
animation-name: fadeInDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeOutUp {
|
|
|
|
from {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translate3d(0, -100%, 0);
|
|
|
|
transform: translate3d(0, -100%, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeOutUp {
|
|
|
|
animation-name: fadeOutUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
div[data-notify="container"] {
|
|
|
|
text-align: center;
|
2018-11-22 20:25:49 +01:00
|
|
|
}
|
|
|
|
|
2019-05-03 21:50:14 +02:00
|
|
|
.saved-indicator {
|
2019-01-13 21:04:08 +01:00
|
|
|
font-size: 150%;
|
2018-11-24 14:44:56 +01:00
|
|
|
}
|
|
|
|
|
2018-12-30 19:02:42 +01:00
|
|
|
.ck-editor__is-empty.ck-content.ck-editor__editable::before {
|
|
|
|
content: 'You can start writing note here ...';
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
margin: var(--ck-spacing-large) 0;
|
|
|
|
|
2019-02-02 23:51:00 +01:00
|
|
|
color: var(--muted-text-color);
|
2018-12-30 21:13:35 +01:00
|
|
|
}
|
|
|
|
|
2019-04-28 17:37:28 +02:00
|
|
|
.ck-content .table table th {
|
|
|
|
background-color: var(--accented-background-color);
|
2019-03-24 20:16:05 +01:00
|
|
|
}
|
|
|
|
|
2019-01-13 20:14:33 +01:00
|
|
|
.ck-content .image > figcaption {
|
2019-02-26 22:59:38 +01:00
|
|
|
color: var(--main-text-color) !important;
|
|
|
|
background-color: var(--accented-background-color) !important;
|
2019-01-13 22:03:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#options-dialog input[type=number] {
|
|
|
|
text-align: right;
|
2019-02-13 23:06:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.help-cards ul {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-cards kbd {
|
|
|
|
color: var(--main-text-color);
|
|
|
|
background-color: var(--accented-background-color);
|
|
|
|
border: 1px solid var(--main-border-color);
|
|
|
|
padding: 2px;
|
2019-02-13 23:27:00 +01:00
|
|
|
}
|
|
|
|
|
2020-05-08 22:22:43 +02:00
|
|
|
|
2019-02-16 18:49:57 +01:00
|
|
|
|
2019-09-09 21:23:04 +02:00
|
|
|
a.external:not(.no-arrow):after, a[href^="http://"]:not(.no-arrow):after, a[href^="https://"]:not(.no-arrow):after {
|
2019-02-16 18:49:57 +01:00
|
|
|
font-size: smaller;
|
|
|
|
content: "\2197";
|
|
|
|
vertical-align: top;
|
2019-03-09 18:57:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
background-color: inherit !important;
|
|
|
|
border-color: var(--main-border-color) !important;
|
2019-04-14 13:51:21 +02:00
|
|
|
}
|
|
|
|
|
2019-11-02 12:17:00 +01:00
|
|
|
.bx-empty {
|
2019-04-14 13:51:21 +02:00
|
|
|
width: 1em;
|
|
|
|
display: inline-block;
|
2019-05-05 19:48:30 +02:00
|
|
|
}
|
|
|
|
|
2020-01-22 21:38:00 +01:00
|
|
|
|
2019-05-12 17:28:20 +02:00
|
|
|
|
|
|
|
.note-detail-empty {
|
|
|
|
margin: 50px;
|
2019-06-22 19:49:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header {
|
2021-05-29 22:52:32 +02:00
|
|
|
padding: 0.7rem 1rem 0 1rem !important; /* make modal header padding slightly smaller */
|
2019-10-01 21:11:11 +02:00
|
|
|
}
|
|
|
|
|
2019-10-17 20:03:05 +02:00
|
|
|
#toast-container {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
top: 20px;
|
2019-10-20 12:29:34 +02:00
|
|
|
pointer-events: none;
|
2019-10-19 00:11:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.toast {
|
|
|
|
background-color: var(--accented-background-color) !important;
|
|
|
|
color: var(--main-text-color) !important;
|
2019-10-20 12:29:34 +02:00
|
|
|
z-index: 9999999999 !important;
|
|
|
|
pointer-events: all;
|
2020-08-14 23:53:37 +02:00
|
|
|
flex-basis: 0; /* otherwise toast is always at least 350px tall (happens since 4.5.1, perhaps a bug) */
|
2019-10-19 00:11:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.toast-header {
|
|
|
|
background-color: var(--more-accented-background-color) !important;
|
|
|
|
color: var(--main-text-color) !important;
|
2019-11-07 22:43:01 +01:00
|
|
|
}
|
|
|
|
|
2020-08-12 23:39:05 +02:00
|
|
|
.ck-mentions .ck-button {
|
2020-09-21 00:07:46 +02:00
|
|
|
font-size: var(--detail-font-size) !important;
|
2020-08-12 23:39:05 +02:00
|
|
|
padding: 5px;
|
2019-11-07 22:43:01 +01:00
|
|
|
}
|
|
|
|
|
2020-09-21 00:07:46 +02:00
|
|
|
.ck-mentions .ck-button b {
|
|
|
|
font-size: var(--detail-font-size) !important;
|
|
|
|
}
|
|
|
|
|
2020-08-12 23:39:05 +02:00
|
|
|
.ck-mentions .ck-button.ck-on {
|
2019-11-07 22:43:01 +01:00
|
|
|
background-color: var(--active-item-background-color) !important;
|
|
|
|
color: var(--active-item-text-color) !important;
|
|
|
|
}
|
|
|
|
|
2020-08-12 23:39:05 +02:00
|
|
|
.ck-mentions .ck-button b {
|
2019-11-07 22:43:01 +01:00
|
|
|
font-weight: bold !important;
|
|
|
|
color: inherit !important;
|
|
|
|
vertical-align: baseline !important;
|
2019-12-21 12:37:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ck-content .todo-list .todo-list__label > input:before {
|
|
|
|
border: 1px solid var(--muted-text-color) !important;
|
2019-12-24 10:49:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ck-link-actions .ck-tooltip {
|
|
|
|
/* force hide the tooltip since it shows misleading "open link in new tab */
|
|
|
|
display: none !important;
|
2019-12-30 19:32:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.include-note {
|
2020-04-11 15:09:38 +02:00
|
|
|
margin-bottom: 10px;
|
2020-04-13 10:13:03 +02:00
|
|
|
padding: 10px;
|
2019-12-30 19:32:45 +01:00
|
|
|
border-radius: 10px;
|
|
|
|
background-color: var(--accented-background-color);
|
2021-01-30 20:07:56 +01:00
|
|
|
display: flex; /* see https://github.com/zadam/trilium/issues/1590 */
|
2020-01-04 13:22:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.include-note.ck-placeholder::before { /* remove placeholder in otherwise empty note */
|
|
|
|
content: '' !important;
|
2020-01-04 21:24:39 +01:00
|
|
|
}
|
|
|
|
|
2020-04-13 10:13:03 +02:00
|
|
|
.include-note.box-size-small .include-note-content {
|
|
|
|
max-height: 10em;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2020-08-10 23:39:17 +02:00
|
|
|
.include-note.box-size-small .include-note-content.type-pdf {
|
|
|
|
height: 10em; /* PDF is rendered in iframe and must be sized absolutely */
|
|
|
|
}
|
|
|
|
|
2020-04-13 10:13:03 +02:00
|
|
|
.include-note.box-size-medium .include-note-content {
|
|
|
|
max-height: 20em;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2021-08-21 20:19:02 +02:00
|
|
|
.include-note.box-size-medium .include-note-content.type-pdf .rendered-note-content {
|
2020-08-10 23:39:17 +02:00
|
|
|
height: 20em; /* PDF is rendered in iframe and must be sized absolutely */
|
|
|
|
}
|
|
|
|
|
2021-08-21 20:19:02 +02:00
|
|
|
.include-note.box-size-full .include-note-content.type-pdf .rendered-note-content {
|
2020-08-10 23:39:17 +02:00
|
|
|
height: 50em; /* PDF is rendered in iframe and it's not possible to put full height so at least a large height */
|
|
|
|
}
|
|
|
|
|
2021-04-17 22:35:47 +02:00
|
|
|
.include-note-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-04-24 20:27:42 +02:00
|
|
|
.alert {
|
|
|
|
padding: 8px 14px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2021-01-30 15:59:59 +01:00
|
|
|
.alert-warning, .alert-info {
|
2020-01-04 21:24:39 +01:00
|
|
|
color: var(--main-text-color) !important;
|
2021-04-24 20:27:42 +02:00
|
|
|
background-color: transparent !important;
|
2020-01-04 21:24:39 +01:00
|
|
|
border-color: var(--main-border-color) !important;
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.gutter {
|
|
|
|
background: linear-gradient(to bottom, transparent, var(--accented-background-color), transparent);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gutter:hover {
|
|
|
|
background: linear-gradient(to bottom, transparent, var(--main-border-color), transparent);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gutter.gutter-horizontal {
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gutter.gutter-vertical {
|
|
|
|
cursor: row-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu-container {
|
|
|
|
max-height: 100vh;
|
|
|
|
/* !!! Cannot set overflow: auto, submenus will break !!! */
|
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu-container, #context-menu-container .dropdown-menu {
|
|
|
|
padding: 3px 0 0;
|
2020-10-01 22:57:07 +02:00
|
|
|
z-index: 2000;
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu-container .dropdown-item {
|
|
|
|
padding: 0 7px 0 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.dropdown-submenu:hover > ul.dropdown-menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu {
|
2022-09-16 22:12:09 +02:00
|
|
|
position: relative;
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu > .dropdown-menu {
|
|
|
|
top: 0;
|
2022-12-18 19:45:36 +01:00
|
|
|
left: calc(100% - 2px); /* -2px, otherwise there's a small gap between menu and submenu where the hover can disappear */
|
2022-12-18 22:05:06 +01:00
|
|
|
margin-top: -10px;
|
2020-03-01 19:06:26 +01:00
|
|
|
min-width: 15rem;
|
2022-09-16 22:12:09 +02:00
|
|
|
/* to make submenu scrollable https://github.com/zadam/trilium/issues/3136 */
|
|
|
|
max-height: 600px;
|
|
|
|
overflow: auto;
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* rotate caret on hover */
|
|
|
|
.dropdown-menu > li > a:hover:after {
|
|
|
|
text-decoration: underline;
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
/* FF basic styling */
|
2023-03-20 20:50:18 +01:00
|
|
|
scrollbar-color: var(--scrollbar-background-color) var(--main-background-color);
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2023-03-20 20:48:52 +01:00
|
|
|
border-radius: 5px;
|
2020-03-01 19:06:26 +01:00
|
|
|
border: 1px solid var(--scrollbar-border-color);
|
2023-03-20 20:48:52 +01:00
|
|
|
background-color: var(--scrollbar-background-color);
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2021-05-22 21:51:40 +02:00
|
|
|
[data-toggle="tooltip"]:not(.button-widget) span {
|
2020-03-01 19:06:26 +01:00
|
|
|
padding-bottom: 0;
|
|
|
|
border-bottom: 1px dotted;
|
2020-03-06 22:17:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden-int, .hidden-ext {
|
|
|
|
display: none !important;
|
2020-06-03 11:06:45 +02:00
|
|
|
}
|
2020-06-05 17:25:14 +02:00
|
|
|
|
|
|
|
.ck.ck-mentions > .ck-list__item {
|
2020-09-09 20:49:44 +02:00
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ck.ck-mentions > .ck-list__item .ck-button {
|
|
|
|
/* wrap text for very long note path title */
|
|
|
|
white-space: normal !important;
|
2020-06-05 17:25:14 +02:00
|
|
|
}
|
2020-08-17 20:58:34 +02:00
|
|
|
|
2020-09-30 22:34:18 +02:00
|
|
|
/**
|
|
|
|
ckeditor's autocomplete
|
|
|
|
should be higher than 1070 of tooltip
|
|
|
|
*/
|
2020-09-01 22:47:36 +02:00
|
|
|
.ck.ck-balloon-panel {
|
2020-09-30 22:34:18 +02:00
|
|
|
z-index: 1101;
|
2020-09-01 22:47:36 +02:00
|
|
|
}
|
2020-09-25 23:52:24 +02:00
|
|
|
|
|
|
|
.area-expander {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-expander hr {
|
|
|
|
height: 1px;
|
|
|
|
border-color: var(--main-border-color);
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-expander-text {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-expander:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-expander:hover hr {
|
|
|
|
border-color: var(--main-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-expander:hover .area-expander-text {
|
|
|
|
color: var(--main-text-color);
|
|
|
|
}
|
2021-01-26 14:44:53 +01:00
|
|
|
|
2021-02-13 23:38:31 +01:00
|
|
|
.help-dropdown {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2021-01-26 14:44:53 +01:00
|
|
|
.help-dropdown .dropdown-menu {
|
|
|
|
border-radius: 10px;
|
|
|
|
border-width: 2px;
|
|
|
|
box-shadow: 10px 10px 93px -25px black;
|
|
|
|
padding: 10px 15px 10px 15px !important;
|
2021-01-26 22:22:17 +01:00
|
|
|
width: 600px;
|
2022-06-12 23:29:11 +02:00
|
|
|
white-space: normal;
|
2021-01-26 15:54:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.help-dropdown .dropdown-menu pre {
|
|
|
|
background-color: var(--accented-background-color);
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
2021-01-26 14:44:53 +01:00
|
|
|
}
|
2021-05-18 22:14:35 +02:00
|
|
|
|
2022-12-11 13:20:37 +01:00
|
|
|
#launcher-pane .launcher-button {
|
2021-05-22 22:55:24 +02:00
|
|
|
font-size: 150%;
|
2021-05-27 23:17:13 +02:00
|
|
|
display: inline-block;
|
2023-01-31 22:25:46 +01:00
|
|
|
padding: 13px 13px;
|
2021-05-27 23:17:13 +02:00
|
|
|
cursor: pointer;
|
2021-05-28 22:47:59 +02:00
|
|
|
border: none;
|
2021-06-06 22:15:51 +02:00
|
|
|
color: var(--launcher-pane-text-color);
|
2022-12-11 13:20:37 +01:00
|
|
|
background-color: var(--launcher-pane-background-color);
|
2021-06-13 22:55:31 +02:00
|
|
|
height: 53px;
|
2021-05-22 22:55:24 +02:00
|
|
|
}
|
|
|
|
|
2021-06-03 22:23:11 +02:00
|
|
|
#launcher-pane .icon-action:hover {
|
2021-05-18 22:14:35 +02:00
|
|
|
background-color: var(--hover-item-background-color);
|
|
|
|
}
|
2021-05-22 23:25:44 +02:00
|
|
|
|
2021-06-03 22:23:11 +02:00
|
|
|
#left-pane {
|
|
|
|
color: var(--left-pane-text-color);
|
|
|
|
background-color: var(--left-pane-background-color);
|
2021-05-22 23:25:44 +02:00
|
|
|
}
|
|
|
|
|
2021-06-03 22:23:11 +02:00
|
|
|
#launcher-pane {
|
|
|
|
color: var(--launcher-pane-text-color);
|
|
|
|
background-color: var(--launcher-pane-background-color);
|
2021-05-22 23:25:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
background-color: transparent !important;
|
|
|
|
}
|
2021-06-03 23:34:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
#right-pane {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#right-pane .card {
|
|
|
|
border: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#right-pane .card-header {
|
|
|
|
background: inherit;
|
|
|
|
padding: 6px 10px 3px 0;
|
|
|
|
width: 99%; /* to give minimal right margin */
|
|
|
|
background-color: var(--button-background-color);
|
|
|
|
border-color: var(--button-border-color);
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
border-style: solid;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: var(--muted-text-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#right-pane .body-wrapper {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#right-pane .card-body {
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px;
|
|
|
|
border: 0;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#right-pane .card-body ul {
|
|
|
|
padding-left: 25px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2021-10-10 14:34:54 +02:00
|
|
|
|
|
|
|
.text-with-ellipsis {
|
|
|
|
overflow-x: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2021-10-31 21:55:11 +01:00
|
|
|
|
|
|
|
.note-split {
|
|
|
|
flex-basis: 0; /* so that each split has same width */
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2021-11-24 21:27:55 +01:00
|
|
|
|
|
|
|
.note-split.full-content-width {
|
|
|
|
max-width: 999999px;
|
|
|
|
}
|
2022-06-07 20:11:43 +02:00
|
|
|
|
|
|
|
button.close:hover {
|
|
|
|
text-shadow: none;
|
|
|
|
color: currentColor;
|
|
|
|
}
|
2022-09-18 14:57:44 +02:00
|
|
|
|
|
|
|
.hidden-no-content {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-09-24 22:38:20 +02:00
|
|
|
|
|
|
|
.reference-link .bx {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2022-12-06 22:43:35 +01:00
|
|
|
|
|
|
|
.options-section:first-of-type h4 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.options-section h4 {
|
2023-04-24 21:22:34 +02:00
|
|
|
margin-top: 25px;
|
2022-12-06 22:43:35 +01:00
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.options-section h5 {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2022-12-26 20:07:04 +01:00
|
|
|
|
|
|
|
textarea {
|
|
|
|
cursor: auto;
|
|
|
|
}
|
2023-02-26 22:45:58 +02:00
|
|
|
|
|
|
|
.table thead th,
|
|
|
|
.table td, .table th {
|
|
|
|
/* Fix center vertical alignment of table cells */
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|