- onenote.git
- src
- electron
- window
- onenote
- style.css
This file ( 966B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
:root {
--p3x-onenote-navbar-bg: #7719aa;
--p3x-onenote-navbar-color: white;
--p3x-onenote-bottom-bar-height: 20px;
--p3x-onenote-bottom-bar-font-size: 12px;
}
body {
background-color: white;
padding: 0;
margin: 0;
overflow: hidden;
}
#p3x-onenote-bottom-bar {
cursor: pointer;
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: var(--p3x-onenote-bottom-bar-height);
font-size: var(--p3x-onenote-bottom-bar-font-size);
font-family: Roboto;
line-height: var(--p3x-onenote-bottom-bar-height);
background-color: var(--p3x-onenote-navbar-bg);
color: var(--p3x-onenote-navbar-color);
}
#p3x-onenote-webview {
position: fixed;
top: 0px;
left: 0px;
overflow: hidden;
width: 100%;
height: calc(100% - var(--p3x-onenote-bottom-bar-height));
}
.md-toast-content {
z-index: 110;
}