Compare commits
No commits in common. "4bf82275d353126a9dccc52a9d56865dbf1bf886" and "487ad5e736b084608d9f2b69e1dd401c2795e0c5" have entirely different histories.
4bf82275d3
...
487ad5e736
@ -14,23 +14,20 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-menu-item {
|
.sidebar-menu-item {
|
||||||
margin: 5px 0px 5px -20px;
|
margin: 5px;
|
||||||
padding: 10px 0px 10px 35px;
|
margin-right: 10px;
|
||||||
|
padding: 10px;
|
||||||
background-color: var(--dark-blue);
|
background-color: var(--dark-blue);
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-radius: 0;
|
|
||||||
border-color: var(--color-primary);
|
|
||||||
width: calc(100% + 40px);
|
|
||||||
}
|
}
|
||||||
.sidebar-menu-item.active {
|
.sidebar-menu-item.active {
|
||||||
|
opacity: .75;
|
||||||
border-right: solid 3px var(--color-primary);
|
border-right: solid 3px var(--color-primary);
|
||||||
|
width: calc(100% + 15px);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-shadow: 0px 0px 12px #00000070;
|
|
||||||
transition: ease-in-out 0.05s;
|
|
||||||
font-size: 1.61rem;
|
|
||||||
}
|
}
|
||||||
.active {
|
.active {
|
||||||
background-color: var(--light-blue);
|
background-color: var(--light-blue);
|
||||||
|
@ -18,11 +18,6 @@
|
|||||||
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover:not(.button){
|
|
||||||
opacity: 1 !important;
|
|
||||||
color: #C4C4C4;
|
|
||||||
}
|
|
||||||
|
|
||||||
details[open] summary ~ * {
|
details[open] summary ~ * {
|
||||||
animation: sweep .15s ease-in-out;
|
animation: sweep .15s ease-in-out;
|
||||||
}
|
}
|
||||||
@ -73,7 +68,7 @@ body{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pageTitle{
|
.pageTitle{
|
||||||
margin: 4px;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
|
@ -50,6 +50,3 @@ li input {
|
|||||||
.tree > li:first-child:before {
|
.tree > li:first-child:before {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.tree input{
|
|
||||||
width: 60px;
|
|
||||||
}
|
|
@ -8,7 +8,7 @@ import { Table, TableListEntry } from "../components/Table";
|
|||||||
const Permission = ({name, value}) => {
|
const Permission = ({name, value}) => {
|
||||||
return <li className="flex is-vertical-align">
|
return <li className="flex is-vertical-align">
|
||||||
<label>{name}</label>
|
<label>{name}</label>
|
||||||
<input max={10} min={0} type='number' defaultValue={value}></input>
|
<input max={10} min={0} type='number' style={{maxWidth: '60px'}} defaultValue={value}></input>
|
||||||
</li>;
|
</li>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user