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;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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-01-06 02:25:22 +08:00
|
|
|
margin: 0 20px 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
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu-container {
|
|
|
|
padding: 3px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu-container .dropdown-item {
|
|
|
|
padding: 0 7px 0 10px;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
[data-toggle="tooltip"] {
|
|
|
|
text-decoration: dotted underline;
|
2018-12-29 02:47:02 +08:00
|
|
|
}
|