2019-01-14 04:16:51 +08:00
|
|
|
body {
|
|
|
|
font-size: var(--main-font-size);
|
|
|
|
}
|
|
|
|
|
2018-12-29 02:47:02 +08:00
|
|
|
#container {
|
|
|
|
margin: 0 auto; /* center */
|
|
|
|
height: 100vh;
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas: "header header"
|
|
|
|
"left-pane title"
|
|
|
|
"left-pane note-detail";
|
|
|
|
grid-template-rows: auto
|
|
|
|
auto
|
|
|
|
1fr;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
grid-gap: 10px;
|
|
|
|
}
|
|
|
|
|
2019-04-29 03:24:13 +08:00
|
|
|
#container.distraction-free-mode {
|
|
|
|
grid-template-areas:
|
|
|
|
"title"
|
|
|
|
"note-detail" !important;
|
|
|
|
grid-template-rows: auto
|
|
|
|
auto
|
|
|
|
!important;
|
|
|
|
grid-template-columns: 1fr !important;
|
|
|
|
}
|
|
|
|
|
2018-12-29 02:47:02 +08:00
|
|
|
#search-box {
|
|
|
|
display: none;
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree {
|
|
|
|
overflow: auto;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-basis: 60%;
|
|
|
|
margin-top: 10px;
|
2019-02-03 03:45:38 +08:00
|
|
|
font-family: var(--tree-font-family);
|
2019-01-14 04:16:51 +08:00
|
|
|
font-size: var(--tree-font-size);
|
2018-12-29 02:47:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#left-pane {
|
|
|
|
grid-area: left-pane;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
|
|
|
grid-area: header;
|
2019-01-14 01:57:46 +08:00
|
|
|
background-color: var(--header-background-color);
|
2018-12-29 02:47:02 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header button {
|
|
|
|
padding: 1px 5px 1px 5px;
|
2019-01-14 04:04:08 +08:00
|
|
|
font-size: smaller;
|
2019-01-05 18:41:09 +08:00
|
|
|
margin-bottom: 2px;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#history-navigation {
|
|
|
|
margin: 0 15px 0 5px;
|
|
|
|
position: relative;
|
2019-01-05 18:49:17 +08:00
|
|
|
top: 2px;
|
2018-12-29 02:47:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#global-buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
padding: 10px 0 10px 0;
|
2019-03-30 06:24:41 +08:00
|
|
|
margin: 0 10px 0 10px;
|
2019-02-03 17:09:59 +08:00
|
|
|
border: 1px solid var(--main-border-color);
|
2019-01-07 03:59:19 +08:00
|
|
|
border-radius: 7px;
|
2018-12-29 17:04:59 +08:00
|
|
|
}
|
|
|
|
|
2019-03-17 18:38:27 +08:00
|
|
|
#context-menu-container, #context-menu-container .dropdown-menu {
|
2018-12-29 17:04:59 +08:00
|
|
|
padding: 3px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu-container .dropdown-item {
|
|
|
|
padding: 0 7px 0 10px;
|
2019-04-02 03:11:20 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rotate caret on hover */
|
|
|
|
.dropdown-menu > li > a:hover:after {
|
|
|
|
text-decoration: underline;
|
|
|
|
transform: rotate(-90deg);
|
2018-12-31 04:13:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.fancytree-loading span.fancytree-expander {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fancytree-loading span.fancytree-expander:after {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-top: 2px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
2019-01-14 04:16:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#note-detail-wrapper {
|
|
|
|
font-size: var(--detail-font-size);
|
2019-02-03 17:21:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2019-02-03 18:15:32 +08:00
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid var(--main-border-color);
|
2019-02-15 03:56:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#note-info-table td, #note-info-table th {
|
|
|
|
padding: 15px;
|
2019-02-24 18:36:01 +08:00
|
|
|
}
|
|
|
|
|
2019-03-01 05:32:54 +08:00
|
|
|
[data-toggle="tooltip"] span {
|
|
|
|
padding-bottom: 0;
|
|
|
|
border-bottom: 1px dotted;
|
2019-03-17 18:38:27 +08:00
|
|
|
}
|
|
|
|
|
2019-03-30 07:12:32 +08:00
|
|
|
.refresh-search-button {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2018-12-29 02:47:02 +08:00
|
|
|
}
|