mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
improve navigation
This commit is contained in:
parent
c51f1c4034
commit
4192f86a6b
|
|
@ -7,7 +7,7 @@ pre {
|
|||
border-radius: 3px;
|
||||
border: 1px solid #ccc;
|
||||
padding: 1rem;
|
||||
overflow-x: scroll;
|
||||
overflow-x: auto;
|
||||
counter-reset: line;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
|
|
|||
8
nav.scss
8
nav.scss
|
|
@ -7,6 +7,14 @@ body > nav {
|
|||
background: var(--nav-category-background);
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#nav-side-outer {
|
||||
overflow-y: auto;
|
||||
height: 100%;
|
||||
|
||||
scrollbar-color: var(--button-colored-background) var(--nav-category-background);
|
||||
scrollbar-width: thin;
|
||||
|
||||
|
|
|
|||
18
styles.css
18
styles.css
|
|
@ -46,7 +46,7 @@ pre {
|
|||
border-radius: 3px;
|
||||
border: 1px solid #ccc;
|
||||
padding: 1rem;
|
||||
overflow-x: scroll;
|
||||
overflow-x: auto;
|
||||
counter-reset: line;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
|
@ -3259,6 +3259,10 @@ p {
|
|||
p + p {
|
||||
margin-top: 5px; }
|
||||
|
||||
.blurry-text {
|
||||
text-shadow: 0 0 .9rem #000;
|
||||
color: transparent; }
|
||||
|
||||
.tooltip {
|
||||
cursor: pointer;
|
||||
color: var(--box-highlight);
|
||||
|
|
@ -4017,13 +4021,19 @@ body > nav {
|
|||
background: var(--nav-category-background);
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
flex-direction: column; }
|
||||
|
||||
#nav-side-outer {
|
||||
overflow-y: auto;
|
||||
height: 100%;
|
||||
scrollbar-color: var(--button-colored-background) var(--nav-category-background);
|
||||
scrollbar-width: thin; }
|
||||
body > nav::-webkit-scrollbar {
|
||||
#nav-side-outer::-webkit-scrollbar {
|
||||
width: 7px; }
|
||||
body > nav::-webkit-scrollbar-thumb {
|
||||
#nav-side-outer::-webkit-scrollbar-thumb {
|
||||
background: var(--button-colored-background); }
|
||||
body > nav::-webkit-scrollbar-track {
|
||||
#nav-side-outer::-webkit-scrollbar-track {
|
||||
background: var(--nav-category-background); }
|
||||
|
||||
#nav-side-inner {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user