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%;
|
2019-01-13 18:57:46 +01:00
|
|
|
}
|
|
|
|
|
2019-04-29 21:31:19 +02:00
|
|
|
button.btn, button.btn-sm {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
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-01-06 20:59:19 +01:00
|
|
|
ul.fancytree-container {
|
|
|
|
/* override specific size from fancytree.css */
|
|
|
|
font-family: inherit !important;
|
|
|
|
font-size: inherit !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fancytree-title {
|
|
|
|
margin-left: 7px !important;
|
|
|
|
}
|
|
|
|
|
2018-12-30 21:13:35 +01:00
|
|
|
.fancytree-node:not(.fancytree-loading) .fancytree-expander {
|
2018-12-27 22:38:19 +01:00
|
|
|
background: none;
|
2019-11-13 21:46:52 +01:00
|
|
|
width: 21px;
|
2018-12-27 22:38:19 +01:00
|
|
|
height: auto;
|
2019-11-02 13:50:17 +01:00
|
|
|
text-align: center;
|
2018-12-27 22:38:19 +01:00
|
|
|
}
|
|
|
|
|
2018-12-30 21:13:35 +01:00
|
|
|
.fancytree-node:not(.fancytree-loading) .fancytree-expander:before {
|
2019-11-02 12:17:00 +01:00
|
|
|
font-family: 'boxicons' !important;
|
2018-12-27 22:38:19 +01:00
|
|
|
speak: none;
|
2019-11-02 13:50:17 +01:00
|
|
|
font-size: x-large;
|
2018-12-27 22:38:19 +01:00
|
|
|
text-transform: none;
|
|
|
|
line-height: 1;
|
2020-11-05 21:26:24 +01:00
|
|
|
content: "\e9b2";
|
2019-11-13 21:46:52 +01:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
margin-right: 5px;
|
2018-12-27 22:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this is done to preserve correct indentation. Better solution would be preferable */
|
|
|
|
.fancytree-node:not(.fancytree-folder) .fancytree-expander:before {
|
2019-01-27 21:54:24 +01:00
|
|
|
color: var(--main-background-color); /* setting to background color makes this invisible */
|
2018-12-27 22:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fancytree-node.fancytree-expanded .fancytree-expander:before {
|
2019-11-13 21:46:52 +01:00
|
|
|
font-family: 'boxicons' !important;
|
2020-11-05 21:26:24 +01:00
|
|
|
content: "\e9ac";
|
2018-12-27 22:38:19 +01:00
|
|
|
}
|
|
|
|
|
2019-11-28 22:05:27 +01:00
|
|
|
/** some common text styling for cssClass label */
|
|
|
|
span.fancytree-node.underline .fancytree-title { text-decoration: underline; }
|
|
|
|
span.fancytree-node.dotted .fancytree-title { text-decoration: dotted; }
|
|
|
|
span.fancytree-node.bold .fancytree-title { font-weight: bold; }
|
|
|
|
span.fancytree-node.muted { opacity: 0.6; }
|
|
|
|
|
2020-11-22 23:05:02 +01:00
|
|
|
/** following will hide ancestors of hoisted (filtered) note */
|
|
|
|
.fancytree-submatch:not(.fancytree-match) {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** resets indent of hoisted note */
|
|
|
|
.fancytree-submatch:not(.fancytree-match) + ul {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-05-04 00:16:41 +02:00
|
|
|
.note-tab-content-template {
|
|
|
|
display: none !important;
|
2019-05-02 22:24:43 +02:00
|
|
|
}
|
|
|
|
|
2019-05-01 10:17:17 +02:00
|
|
|
.note-tab-content {
|
2019-07-21 10:17:08 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-11-18 19:32:27 +01:00
|
|
|
/** we disable shield background when in zen mode because I couldn't get it to stay static
|
2018-11-14 13:42:50 +01:00
|
|
|
(it kept growing with content) */
|
2020-03-01 19:06:26 +01:00
|
|
|
#root-widget:not(.zen-mode) .note-tab-content.protected {
|
2018-11-09 14:36:27 +01:00
|
|
|
/* DON'T COLLAPSE THE RULES INTO SINGLE ONE, BACKGROUND WON'T DISPLAY */
|
2018-12-09 13:37:28 +01:00
|
|
|
background: url('../images/shield.svg') no-repeat;
|
2018-08-17 09:32:07 +02:00
|
|
|
background-size: contain;
|
2018-11-09 14:36:27 +01:00
|
|
|
background-position: center;
|
2017-09-04 21:37:55 -04:00
|
|
|
}
|
|
|
|
|
2019-12-29 20:48:24 +01:00
|
|
|
.zen-mode #center-pane {
|
|
|
|
width: 100% !important;
|
2020-10-19 22:25:35 +02:00
|
|
|
/* limit max width to improve readability */
|
|
|
|
max-width: 1000px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2019-12-29 20:48:24 +01: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
|
|
|
}
|
|
|
|
|
2020-03-08 11:41:42 +01:00
|
|
|
.icon-action:hover:not(.disabled) {
|
2017-09-10 21:33:39 -04:00
|
|
|
text-decoration: none;
|
2019-11-17 11:30:11 +01:00
|
|
|
border-color: var(--button-border-color);
|
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;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 5px;
|
2017-12-04 18:21:57 -05:00
|
|
|
cursor: pointer;
|
2018-11-09 11:57:52 +01:00
|
|
|
font-size: 1.5em;
|
2020-08-06 00:06:42 +02:00
|
|
|
color: var(--main-text-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-11-26 12:56:07 -05:00
|
|
|
.alert {
|
|
|
|
padding: 5px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-12-26 20:54:41 -05:00
|
|
|
#note-source {
|
|
|
|
height: 98%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
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;
|
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;
|
|
|
|
}
|
|
|
|
|
2018-01-19 19:36:41 -05:00
|
|
|
.dropdown-menu kbd
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu kbd {
|
|
|
|
float: right;
|
|
|
|
}
|
2018-01-21 10:33:32 -05:00
|
|
|
|
2019-04-01 21:38:21 +02:00
|
|
|
.dropdown-item {
|
|
|
|
color: var(--menu-text-color) !important;
|
|
|
|
}
|
|
|
|
|
2018-11-06 12:46:29 +01:00
|
|
|
.dropdown-item.disabled, .dropdown-item.disabled kbd {
|
|
|
|
color: #aaa !important;
|
|
|
|
}
|
|
|
|
|
2019-11-09 20:59:49 +01:00
|
|
|
.dropdown-item.active {
|
|
|
|
color: var(--active-item-text-color) !important;
|
|
|
|
background-color: var(--active-item-background-color) !important;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-12-18 22:37:29 +01:00
|
|
|
.CodeMirror * {
|
|
|
|
font-family: var(--font-family-monospace) !important;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
border-color: var(--button-border-color);
|
|
|
|
background-color: var(--button-background-color);
|
|
|
|
color: var(--button-text-color);
|
2018-05-31 20:00:39 -04:00
|
|
|
}
|
|
|
|
|
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-06-08 22:17:00 -04:00
|
|
|
button.icon-button {
|
2018-11-09 11:57:52 +01:00
|
|
|
font-size: 1.5em;
|
|
|
|
padding: 2px;
|
2020-01-19 18:05:06 +01:00
|
|
|
max-height: 34px;
|
2018-06-08 23:18:53 -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;
|
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;
|
2019-02-02 23:26:39 +01:00
|
|
|
color: var(--button-disabled-background-color) !important;
|
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
|
|
|
|
2018-11-06 19:35:42 +01:00
|
|
|
.tooltip-inner {
|
2020-09-08 21:45:07 +02:00
|
|
|
padding: 15px 15px 0 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;
|
|
|
|
}
|
|
|
|
|
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 {
|
2019-01-13 18:57:46 +01:00
|
|
|
color: var(--hover-item-text-color);
|
|
|
|
background-color: var(--hover-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
|
|
|
}
|
|
|
|
|
|
|
|
#export-form .form-check {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#export-form .format-choice {
|
|
|
|
padding-left: 40px;
|
|
|
|
display: none;
|
2018-11-25 10:26:45 +01:00
|
|
|
}
|
|
|
|
|
2019-02-16 23:33:40 +01:00
|
|
|
#export-form #opml-versions {
|
|
|
|
padding-left: 60px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-11-25 10:26:45 +01:00
|
|
|
#export-form .form-check-label {
|
|
|
|
padding: 2px;
|
2018-12-15 20:29:08 +01:00
|
|
|
}
|
|
|
|
|
2020-09-08 23:25:21 +02:00
|
|
|
.unhoist-button-wrapper {
|
|
|
|
position: relative;
|
|
|
|
top: -4px;
|
|
|
|
}
|
|
|
|
|
2018-12-15 20:29:08 +01:00
|
|
|
.unhoist-button {
|
|
|
|
text-decoration: underline !important;
|
2019-05-11 19:27:33 +02:00
|
|
|
color: var(--link-color) !important;
|
2018-12-15 20:29:08 +01:00
|
|
|
cursor: pointer !important;
|
2018-12-27 20:04:59 +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
|
|
|
}
|
|
|
|
|
2018-12-30 21:13:35 +01:00
|
|
|
.fancytree-loading span.fancytree-expander {
|
|
|
|
background-image: none !important;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2019-11-12 23:02:47 +01:00
|
|
|
.fancytree-loading span.fancytree-expander:after {
|
2018-12-30 21:13:35 +01:00
|
|
|
content: " ";
|
2019-11-13 20:28:14 +01:00
|
|
|
color: inherit !important;
|
2018-12-30 21:13:35 +01:00
|
|
|
display: block;
|
|
|
|
border-radius: 50%;
|
|
|
|
border-color: #000 transparent #000 transparent;
|
|
|
|
animation: lds-dual-ring 1.2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes lds-dual-ring {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
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 {
|
|
|
|
padding: 0.7rem 1rem !important; /* make modal header padding slightly smaller */
|
2019-10-01 21:11:11 +02:00
|
|
|
}
|
|
|
|
|
2019-10-04 22:21:14 +02:00
|
|
|
.floating-button {
|
|
|
|
position: absolute !important;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-08-16 22:57:48 +02:00
|
|
|
.component {
|
2020-09-15 22:46:51 +02:00
|
|
|
contain: size;
|
2020-10-07 23:08:17 +02:00
|
|
|
content-visibility: auto;
|
2020-08-16 22:57:48 +02:00
|
|
|
}
|
|
|
|
|
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);
|
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;
|
|
|
|
}
|
|
|
|
|
2020-08-10 23:39:17 +02:00
|
|
|
.include-note.box-size-medium .include-note-content.type-pdf {
|
|
|
|
height: 20em; /* PDF is rendered in iframe and must be sized absolutely */
|
|
|
|
}
|
|
|
|
|
|
|
|
.include-note.box-size-full .include-note-content.type-pdf {
|
|
|
|
height: 50em; /* PDF is rendered in iframe and it's not possible to put full height so at least a large height */
|
|
|
|
}
|
|
|
|
|
2020-01-04 21:24:39 +01:00
|
|
|
.alert-warning {
|
|
|
|
color: var(--main-text-color) !important;
|
|
|
|
background-color: var(--accented-background-color) !important;
|
|
|
|
border-color: var(--main-border-color) !important;
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: var(--main-font-size);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden-by-zen-mode {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu > .dropdown-menu {
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
margin-top: -6px;
|
|
|
|
min-width: 15rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rotate caret on hover */
|
|
|
|
.dropdown-menu > li > a:hover:after {
|
|
|
|
text-decoration: underline;
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.fancytree-loading span.fancytree-expander {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2020-08-25 23:25:15 +02:00
|
|
|
margin-left: 4px;
|
2020-03-01 19:06:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.fancytree-loading span.fancytree-expander:after {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-left: 1px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
/* FF basic styling */
|
|
|
|
scrollbar-color: var(--active-item-background-color) var(--main-background-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid var(--scrollbar-border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-toggle="tooltip"] span {
|
|
|
|
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
|
|
|
|
|
|
|
ul.fancytree-container li {
|
|
|
|
contain: layout paint;
|
|
|
|
}
|
2020-09-01 22:47:36 +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
|
|
|
|
|
|
|
.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 15:54:41 +01:00
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-dropdown .dropdown-menu pre {
|
|
|
|
background-color: var(--accented-background-color);
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
2021-01-26 14:44:53 +01:00
|
|
|
}
|