2018-09-07 19:47:26 +08:00
|
|
|
/* We change h5 and h6 because by default (bootstrap) they are smaller than normal text */
|
|
|
|
h5 {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2018-10-12 19:40:06 +08: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;
|
|
|
|
}
|
|
|
|
|
2017-09-25 08:22:07 +08:00
|
|
|
#container {
|
|
|
|
margin: 0 auto; /* center */
|
2017-09-24 23:52:16 +08:00
|
|
|
height: 100vh;
|
2017-09-25 08:22:07 +08:00
|
|
|
|
|
|
|
display: grid;
|
2017-10-07 10:46:30 +08:00
|
|
|
grid-template-areas: "header header"
|
2018-04-14 07:58:33 +08:00
|
|
|
"left-pane title"
|
|
|
|
"left-pane note-detail";
|
2017-09-24 23:52:16 +08:00
|
|
|
grid-template-rows: auto
|
2017-10-07 10:46:30 +08:00
|
|
|
auto
|
2018-04-14 07:58:33 +08:00
|
|
|
1fr;
|
2018-02-06 09:53:04 +08:00
|
|
|
|
2017-09-25 08:22:07 +08:00
|
|
|
justify-content: center;
|
2017-09-24 23:52:16 +08:00
|
|
|
grid-gap: 10px;
|
|
|
|
}
|
|
|
|
|
2017-10-11 08:37:45 +08:00
|
|
|
#header {
|
|
|
|
grid-area: header;
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-06-10 23:51:13 +08:00
|
|
|
padding: 4px;
|
2017-10-11 08:37:45 +08:00
|
|
|
}
|
|
|
|
|
2018-11-06 04:12:03 +08:00
|
|
|
#header button {
|
|
|
|
padding: 1px 5px 1px 5px;
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
2018-09-06 15:33:38 +08:00
|
|
|
#left-pane {
|
|
|
|
grid-area: left-pane;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#global-buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
padding: 10px 0 10px 0;
|
|
|
|
margin: 0 10px 0 16px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-box {
|
|
|
|
display: none;
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title-container {
|
|
|
|
grid-area: title;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tdialog {
|
2018-11-06 22:25:07 +08:00
|
|
|
display: none;
|
2018-09-06 15:33:38 +08:00
|
|
|
}
|
|
|
|
|
2018-04-12 10:44:33 +08:00
|
|
|
#note-detail-wrapper {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
grid-area: note-detail;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-top: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#note-detail-component-wrapper {
|
2018-05-22 04:08:34 +08:00
|
|
|
flex-grow: 100;
|
2018-04-12 10:44:33 +08:00
|
|
|
position: relative;
|
|
|
|
overflow: auto;
|
|
|
|
flex-basis: content;
|
|
|
|
}
|
|
|
|
|
2018-03-27 12:22:02 +08:00
|
|
|
.note-detail-component {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-03-27 11:48:45 +08:00
|
|
|
#note-detail-text {
|
2017-12-02 23:37:12 +08:00
|
|
|
border: 0 !important;
|
|
|
|
box-shadow: none !important;
|
2017-06-12 09:04:04 +08:00
|
|
|
/* This is because with empty content height of editor is 0 and it's impossible to click into it */
|
2018-04-11 11:15:41 +08:00
|
|
|
min-height: 200px;
|
2017-09-24 11:54:38 +08:00
|
|
|
overflow: auto;
|
2017-06-12 09:04:04 +08:00
|
|
|
}
|
|
|
|
|
2018-08-17 15:32:07 +08:00
|
|
|
#note-detail-wrapper.protected {
|
|
|
|
background: url('/images/shield.svg') no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
2017-09-05 09:37:55 +08:00
|
|
|
}
|
|
|
|
|
2017-08-24 11:36:16 +08:00
|
|
|
ul.fancytree-container {
|
2017-08-27 23:36:20 +08:00
|
|
|
outline: none !important;
|
2017-08-24 11:36:16 +08:00
|
|
|
}
|
2017-08-27 23:36:20 +08:00
|
|
|
|
2017-08-28 02:39:26 +08:00
|
|
|
/* icons from https://feathericons.com */
|
2017-08-27 23:36:20 +08:00
|
|
|
span.fancytree-node > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/file-16.png") 0 0;
|
2017-08-27 23:36:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span.fancytree-node.fancytree-folder > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/folder-16.png") 0 0;
|
2017-08-27 23:36:20 +08:00
|
|
|
}
|
|
|
|
|
2018-01-27 11:32:44 +08:00
|
|
|
span.fancytree-node.code > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/code-16.png") 0 0;
|
2017-09-09 11:14:42 +08:00
|
|
|
}
|
|
|
|
|
2018-01-27 11:32:44 +08:00
|
|
|
span.fancytree-node.fancytree-folder.code > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/code-folder-16.png") 0 0;
|
2018-01-27 11:32:44 +08:00
|
|
|
}
|
|
|
|
|
2018-03-11 22:49:22 +08:00
|
|
|
span.fancytree-node.file > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/paperclip-16.png") 0 0;
|
2018-02-22 08:53:46 +08:00
|
|
|
}
|
|
|
|
|
2018-10-31 03:26:31 +08:00
|
|
|
span.fancytree-node.relation-map > span.fancytree-icon {
|
|
|
|
background: url("../images/icons/relation-map-16.png") 0 0;
|
|
|
|
}
|
|
|
|
|
2018-03-08 09:52:34 +08:00
|
|
|
span.fancytree-node.render > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/play-16.png") 0 0;
|
2018-03-08 09:52:34 +08:00
|
|
|
}
|
|
|
|
|
2018-03-11 22:53:10 +08:00
|
|
|
span.fancytree-node.search > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/search-small-16.png") 0 0;
|
2018-03-11 22:53:10 +08:00
|
|
|
}
|
|
|
|
|
2018-01-27 11:32:44 +08:00
|
|
|
span.fancytree-node.protected > span.fancytree-icon {
|
|
|
|
filter: drop-shadow(2px 2px 2px black);
|
2017-09-09 11:14:42 +08:00
|
|
|
}
|
|
|
|
|
2017-11-22 07:39:56 +08:00
|
|
|
span.fancytree-node.multiple-parents .fancytree-title {
|
2017-11-28 07:16:42 +08:00
|
|
|
text-decoration: underline dotted;
|
2017-11-22 07:39:56 +08:00
|
|
|
}
|
|
|
|
|
2017-11-23 08:40:06 +08:00
|
|
|
span.fancytree-node.fancytree-active-clone:not(.fancytree-active) .fancytree-title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2018-05-27 04:16:34 +08:00
|
|
|
span.fancytree-node.tree-root > span.fancytree-icon {
|
2018-06-08 11:02:21 +08:00
|
|
|
background: url("../images/icons/tree-root-16.png") 0 0;
|
2018-05-27 04:16:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* first nesting level has lower left padding to avoid extra left padding. Other levels are not affected */
|
|
|
|
.ui-fancytree > li > ul {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2017-12-29 09:53:31 +08:00
|
|
|
/* By default not focused active tree item is not easily visible, this makes it more visible */
|
|
|
|
span.fancytree-active:not(.fancytree-focused) .fancytree-title {
|
|
|
|
background-color: #ddd !important;
|
|
|
|
border-color: #555 !important;
|
|
|
|
}
|
|
|
|
|
2017-09-04 06:53:28 +08:00
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: auto;
|
|
|
|
/* prevent horizontal scrollbar */
|
|
|
|
overflow-x: hidden;
|
2017-09-06 10:01:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-11 09:33:39 +08:00
|
|
|
.icon-action:hover {
|
|
|
|
text-decoration: none;
|
2017-09-06 10:01:22 +08:00
|
|
|
}
|
|
|
|
|
2017-12-05 07:21:57 +08:00
|
|
|
.icon-action {
|
|
|
|
cursor: pointer;
|
2018-03-08 12:58:34 +08:00
|
|
|
display: block;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2017-12-05 07:21:57 +08:00
|
|
|
}
|
|
|
|
|
2017-12-16 11:35:42 +08:00
|
|
|
.ui-widget-content a:not(.ui-tabs-anchor) {
|
2017-10-06 08:15:45 +08:00
|
|
|
color: #337ab7 !important;
|
2017-10-07 10:46:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#header-title {
|
2018-02-04 01:44:22 +08:00
|
|
|
padding: 5px 20px 5px 10px;
|
2017-10-07 10:46:30 +08:00
|
|
|
font-size: large;
|
|
|
|
font-weight: bold;
|
2017-10-09 23:28:56 +08:00
|
|
|
}
|
|
|
|
|
2018-11-06 04:12:03 +08:00
|
|
|
#header .btn-sm {
|
2017-10-09 23:28:56 +08:00
|
|
|
margin-bottom: 2px;
|
|
|
|
margin-right: 8px;
|
2017-10-12 08:37:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ui-tooltip {
|
|
|
|
max-width: 600px;
|
|
|
|
max-height: 600px;
|
|
|
|
overflow: auto;
|
2017-11-07 09:13:36 +08:00
|
|
|
}
|
|
|
|
|
2017-11-27 01:56:07 +08:00
|
|
|
.alert {
|
|
|
|
padding: 5px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2018-04-18 08:04:27 +08:00
|
|
|
#tree {
|
|
|
|
overflow: auto;
|
2018-06-05 08:22:41 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-basis: 60%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-results {
|
|
|
|
padding: 0 5px 5px 15px;
|
|
|
|
flex-basis: 40%;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2018-04-18 08:04:27 +08:00
|
|
|
margin-top: 10px;
|
2018-06-05 08:22:41 +08:00
|
|
|
display: none;
|
|
|
|
overflow: auto;
|
|
|
|
border-bottom: 2px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-results ul {
|
|
|
|
padding: 5px 5px 5px 15px;
|
2018-04-18 08:04:27 +08:00
|
|
|
}
|
|
|
|
|
2017-12-13 10:40:55 +08:00
|
|
|
/*
|
|
|
|
* .electron-in-page-search-window is a class specified to default
|
|
|
|
* <webview> element for search window.
|
|
|
|
*/
|
|
|
|
.electron-in-page-search-window {
|
|
|
|
position: fixed;
|
|
|
|
top: 50px;
|
|
|
|
right: 0;
|
|
|
|
border: solid grey 1px;
|
|
|
|
background-color: white;
|
|
|
|
width: 300px;
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* .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-24 03:35:20 +08:00
|
|
|
/* Allow to use <kbd> elements inside the title to define shortcut hints. */
|
2017-12-27 08:54:43 +08:00
|
|
|
.ui-menu kbd, button kbd {
|
2017-12-24 03:35:20 +08:00
|
|
|
color: black;
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2017-12-27 08:54:43 +08:00
|
|
|
.ui-menu kbd {
|
|
|
|
margin-left: 30px;
|
2018-01-02 07:53:52 +08:00
|
|
|
float: right;
|
2017-12-27 08:54:43 +08:00
|
|
|
}
|
|
|
|
|
2017-12-27 09:54:41 +08:00
|
|
|
#note-source {
|
|
|
|
height: 98%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
2018-01-03 09:52:36 +08:00
|
|
|
.suppressed {
|
2018-06-10 22:53:39 +08:00
|
|
|
display: none;
|
2018-01-20 08:36:41 +08:00
|
|
|
}
|
|
|
|
|
2018-11-06 19:46:29 +08:00
|
|
|
.dropdown-menu a:hover:not(.disabled) {
|
|
|
|
background-color: #eee !important;
|
2018-01-20 08:36:41 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-11-06 04:12:03 +08:00
|
|
|
.dropdown-menu a:not(.selected) .check {
|
2018-01-22 12:06:25 +08:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2018-01-20 08:36:41 +08:00
|
|
|
.dropdown-menu kbd
|
|
|
|
{
|
|
|
|
color: black;
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu kbd {
|
|
|
|
float: right;
|
|
|
|
}
|
2018-01-21 23:33:32 +08:00
|
|
|
|
2018-11-06 19:46:29 +08:00
|
|
|
.dropdown-item.disabled, .dropdown-item.disabled kbd {
|
|
|
|
color: #aaa !important;
|
|
|
|
}
|
|
|
|
|
2018-01-21 23:33:32 +08:00
|
|
|
#note-detail-code {
|
2018-04-11 12:10:11 +08:00
|
|
|
min-height: 200px;
|
2018-05-27 07:58:08 +08:00
|
|
|
overflow: auto;
|
2018-01-21 23:33:32 +08:00
|
|
|
}
|
|
|
|
|
2018-05-27 07:27:47 +08:00
|
|
|
#note-detail-render {
|
|
|
|
min-height: 200px;
|
|
|
|
}
|
|
|
|
|
2018-01-21 23:33:32 +08:00
|
|
|
.CodeMirror {
|
2018-01-31 11:44:46 +08:00
|
|
|
font-family: "Liberation Mono", "Lucida Console", monospace;
|
2018-05-27 03:28:36 +08:00
|
|
|
height: auto;
|
2018-08-17 15:32:07 +08:00
|
|
|
background: inherit;
|
2018-01-22 09:15:42 +08:00
|
|
|
}
|
|
|
|
|
2018-05-27 07:58:08 +08:00
|
|
|
.CodeMirror-scroll {
|
|
|
|
min-height: 200px;
|
|
|
|
}
|
|
|
|
|
2018-01-22 09:15:42 +08:00
|
|
|
#note-id-display {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
2018-02-05 09:23:30 +08:00
|
|
|
bottom: 8px;
|
2018-01-22 09:15:42 +08:00
|
|
|
z-index: 1000;
|
2018-02-03 23:37:57 +08:00
|
|
|
color: lightgrey;
|
2018-01-22 12:06:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#note-type-dropdown {
|
|
|
|
max-height: 500px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2018-01-29 00:19:31 +08:00
|
|
|
}
|
|
|
|
|
2018-02-05 09:23:30 +08:00
|
|
|
.cm-matchhighlight {background-color: #eeeeee}
|
|
|
|
|
2018-08-06 15:41:01 +08:00
|
|
|
#label-list, #relation-list, #attribute-list {
|
2018-02-05 09:23:30 +08:00
|
|
|
color: #777777;
|
2018-07-28 23:59:55 +08:00
|
|
|
padding: 5px;
|
|
|
|
display: none;
|
2018-02-05 09:23:30 +08:00
|
|
|
}
|
|
|
|
|
2018-08-06 15:41:01 +08:00
|
|
|
#label-list button, #relation-list button, #attribute-list button {
|
2018-02-05 09:23:30 +08:00
|
|
|
padding: 2px;
|
2018-02-05 11:44:15 +08:00
|
|
|
margin-right: 5px;
|
2018-02-19 10:28:24 +08:00
|
|
|
}
|
|
|
|
|
2018-03-28 10:11:06 +08:00
|
|
|
#file-table th, #file-table td {
|
2018-02-19 10:28:24 +08:00
|
|
|
padding: 10px;
|
|
|
|
font-size: large;
|
2018-04-09 10:38:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#children-overview {
|
2018-04-11 12:10:11 +08:00
|
|
|
flex-grow: 1000;
|
|
|
|
flex-shrink: 1000;
|
|
|
|
flex-basis: 0px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-content: flex-start;
|
|
|
|
height: 100px;
|
|
|
|
overflow: auto;
|
2018-04-09 10:38:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.child-overview {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: large;
|
|
|
|
padding: 10px;
|
2018-04-11 09:08:00 +08:00
|
|
|
background: #f4f4f4;
|
2018-04-09 10:38:52 +08:00
|
|
|
width: 150px;
|
2018-04-11 12:10:11 +08:00
|
|
|
height: 90px;
|
|
|
|
line-height: 2em;
|
2018-04-09 10:38:52 +08:00
|
|
|
margin-right: 20px;
|
|
|
|
border-radius: 15px;
|
|
|
|
overflow: hidden;
|
2018-04-11 09:08:00 +08:00
|
|
|
text-align: center;
|
2018-04-11 11:15:41 +08:00
|
|
|
margin-top: 15px;
|
2018-04-11 12:10:11 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
word-wrap: break-word;
|
2018-04-11 09:08:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.child-overview a {
|
|
|
|
color: #444;
|
2018-05-22 08:12:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#sql-console-query {
|
|
|
|
height: 150px;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sql-console-query .CodeMirror {
|
|
|
|
height: 150px;
|
2018-05-27 10:54:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#history-navigation {
|
|
|
|
margin: 0 20px 0 5px;
|
|
|
|
display: flex;
|
2018-06-01 08:00:39 +08:00
|
|
|
}
|
|
|
|
|
2018-06-09 22:34:51 +08:00
|
|
|
.btn:not(.btn-primary):not(.btn-danger) {
|
2018-06-09 21:48:18 +08:00
|
|
|
border-color: #bbb;
|
2018-06-02 23:47:16 +08:00
|
|
|
background-color: #eee;
|
2018-06-01 08:00:39 +08:00
|
|
|
}
|
|
|
|
|
2018-06-06 11:28:10 +08:00
|
|
|
.btn.active:not(.btn-primary) {
|
2018-06-02 23:47:16 +08:00
|
|
|
background-color: #ccc;
|
2018-06-01 11:21:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#note-path-list .current a {
|
|
|
|
font-weight: bold;
|
2018-06-09 10:17:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
button.icon-button {
|
2018-06-09 21:28:50 +08:00
|
|
|
height: 28px;
|
|
|
|
width: 28px;
|
|
|
|
background: no-repeat center;
|
2018-06-09 11:18:53 +08:00
|
|
|
}
|
|
|
|
|
2018-10-31 03:22:05 +08:00
|
|
|
button.icon-button24 {
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
background: no-repeat center;
|
|
|
|
}
|
|
|
|
|
2018-06-09 21:44:40 +08:00
|
|
|
#note-actions {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#note-actions .dropdown-menu {
|
|
|
|
width: 15em;
|
|
|
|
}
|
|
|
|
|
2018-06-09 11:18:53 +08:00
|
|
|
/* Themes */
|
|
|
|
|
|
|
|
html.theme-black, html.theme-black img, html.theme-black video {
|
|
|
|
filter: invert(100%) hue-rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
html.theme-black body {
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
html.theme-dark {
|
|
|
|
filter: invert(90%) hue-rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
html.theme-dark img, html.theme-dark video {
|
|
|
|
filter: invert(100%) hue-rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
html.theme-dark body {
|
|
|
|
background: #191819;
|
2018-08-04 04:56:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.ck.ck-block-toolbar-button {
|
|
|
|
transform: translateX(10px);
|
2018-08-06 20:43:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#note-detail-promoted-attributes {
|
2018-08-06 23:24:35 +08:00
|
|
|
max-width: 70%;
|
2018-08-06 20:43:42 +08:00
|
|
|
margin: auto;
|
2018-08-06 23:24:35 +08:00
|
|
|
}
|
|
|
|
|
2018-08-29 02:55:21 +08:00
|
|
|
#note-detail-promoted-attributes td, #note-detail-promoted-attributes th {
|
2018-08-06 23:24:35 +08:00
|
|
|
padding: 5px;
|
2018-08-06 23:53:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.pointer {
|
|
|
|
cursor: pointer;
|
2018-08-07 04:29:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.show-recent-notes-button {
|
|
|
|
background: url('/images/icons/clock-16.png') no-repeat center;
|
|
|
|
cursor: pointer;
|
2018-08-22 21:31:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
table.promoted-attributes-in-tooltip {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.promoted-attributes-in-tooltip td, table.promoted-attributes-in-tooltip th {
|
|
|
|
padding: 10px;
|
2018-08-29 02:55:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#note-detail-render-help {
|
|
|
|
margin: 50px;
|
|
|
|
padding: 20px;
|
2018-11-06 19:46:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.context-menu {
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.context-menu .dropdown-item {
|
|
|
|
padding: 2px 10px 2px 10px;
|
2018-02-05 09:23:30 +08:00
|
|
|
}
|