Recount-Server/web/sass/nav.scss

119 lines
3 KiB
SCSS
Raw Normal View History

header {
2024-01-14 18:00:51 -08:00
background-color: var(--#{$prefix}-nav-bg);
height: 30px;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
2024-01-15 19:26:51 -08:00
border-radius: $border-radius;
}
2024-01-12 21:59:19 -08:00
nav {
display: flex;
flex-direction: column;
2024-01-12 21:59:19 -08:00
2024-01-14 18:00:51 -08:00
a#logo-a {
font-size: 12pt;
pointer-events: none;
color: var(--#{$prefix}-nav-color);
background-color: var(--#{$prefix}-nav-logo-bg);
}
2024-01-12 21:59:19 -08:00
ul {
margin: 0;
padding: 0;
list-style: none;
padding-left: 0;
2024-01-12 21:59:19 -08:00
}
li {
2024-01-14 18:00:51 -08:00
margin-top: 8px;
margin-bottom: 8px;
2024-01-12 21:59:19 -08:00
}
a.active {
pointer-events: none;
2024-01-14 18:00:51 -08:00
background-color: var(--#{$prefix}-nav-active-bg);
color: var(--#{$prefix}-nav-active-color);
2024-01-12 21:59:19 -08:00
}
a {
transition: background-color $hl-trn-spd ease-in, color $hl-trn-spd ease-in;
border-radius: 5px;
text-align: center;
2024-01-14 18:00:51 -08:00
padding: 6px 0px;
display: inline-block;
cursor: pointer;
2024-01-14 18:00:51 -08:00
color: var(--#{$prefix}-nav-color);
width: 100%;
2024-01-12 21:59:19 -08:00
text-decoration: none;
}
a:hover {
2024-01-14 18:00:51 -08:00
background-color: var(--#{$prefix}-nav-hover);
2024-01-12 21:59:19 -08:00
}
}
2024-01-24 18:58:29 -08:00
2024-01-26 12:15:30 -08:00
#transaction-quick-access-panel {
height: 100%;
display:flex;
flex-direction: column;
.t-header {
display: flex;
margin-top: 10px;
margin-bottom: 20px;
input {
margin-top: auto;
margin-bottom: auto;
margin-left: 5px;
margin-right: 8px;
border-radius: 0.25rem;
border: 1px solid var(--#{$prefix}-text);
width: 1.25em;
height: 1.25em;
}
}
.t-list {
display: flex;
flex-grow: 1;
margin-left: 10px;
margin-right: 10px;
.tab-div {
height: 100%;
width: 50px;
display: flex;
#open-draft {
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
background-color: var(--#{$prefix}-base);
color: var(--#{$prefix}-text);
border: 2px solid var(--#{$prefix}-overlay1);
border-right-color: transparent;
margin-top: 40px;
margin-left: auto;
margin-right: -3px;
height: 50px;
width: 50px;
display:flex;
z-index: 1;
svg {
margin: auto;
}
}
}
.t-list-container {
overflow-y: scroll;
border: 2px solid var(--#{$prefix}-surface1);
margin: 5px;
margin-left: 0px;
background-color: var(--#{$prefix}-base);
height: 100%;
flex-grow: 1;
border-radius: $border-radius;
}
}
}
#quick-access-panel {
background-color: var(--#{$prefix}-base);
border-radius: $border-radius;
height: 100%;
border: 2px solid var(--#{$prefix}-surface1);
}