trilium/src/public/stylesheets/mobile.css

86 lines
1.3 KiB
CSS
Raw Normal View History

2018-12-24 05:28:57 +08:00
html, body {
2018-12-25 05:39:17 +08:00
height: 100%;
width: 100%;
2018-12-24 05:28:57 +08:00
margin: 0;
padding: 0;
}
2018-12-25 05:39:17 +08:00
#container-row {
height: 100%;
}
2018-12-24 05:28:57 +08:00
#tree {
font-size: larger;
width: 100vw;
height: 100vh;
overflow: auto;
}
2018-12-25 17:58:40 +08:00
#tree .action-button {
position: relative;
top: -5px;
margin-left: 10px;
}
#detail {
2018-12-25 05:39:17 +08:00
padding: 20px 20px 10px 35px;
height: 100%;
flex-direction: column;
}
#detail-content {
position: relative;
overflow: auto;
flex-direction: column;
height: 100%;
2018-12-25 03:38:38 +08:00
}
2018-12-25 05:39:17 +08:00
#note-title-row {
display: flex;
padding-right: 10px;
}
.action-button {
background: none;
border: none;
cursor: pointer;
font-size: 1.5em;
padding-left: 0.5em;
padding-right: 0.5em;
}
2018-12-24 05:28:57 +08:00
.fancytree-custom-icon {
font-size: 2em;
}
.fancytree-title {
font-size: 1.5em;
margin-left: 0.6em !important;
}
.fancytree-node {
padding: 5px;
}
.fancytree-node .fancytree-expander {
background: none;
width: auto;
height: auto;
}
.fancytree-node .fancytree-expander:before {
font-family: 'jam-icons' !important;
speak:none;font-style:normal;
font-weight:normal;
font-variant:normal;
text-transform:none;
line-height:1;
font-size: 2em;
padding-left: 5px;
padding-right: 5px;
content: "\e9bc";
}
.fancytree-node.fancytree-expanded .fancytree-expander:before {
content: "\e9ba";
}