mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-23 15:48:40 +00:00
add empty page design and inactive input buttons
This commit is contained in:
parent
1c738fea65
commit
b7f258948d
|
|
@ -385,6 +385,15 @@ input[type="range"] {
|
|||
&:hover, &:focus {
|
||||
background: var(--button-colored-background-hover);
|
||||
}
|
||||
|
||||
&.inactive {
|
||||
background: #ccc;
|
||||
cursor: default;
|
||||
|
||||
&:hover, &:focus {
|
||||
background: #ccc;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
|
|
|
|||
15
section.scss
15
section.scss
|
|
@ -1,4 +1,19 @@
|
|||
|
||||
.emptyPage {
|
||||
width: 80%;
|
||||
font-size: 15rem;
|
||||
margin: 0 auto;
|
||||
margin: 5rem;
|
||||
padding: 3rem;
|
||||
text-align: center;
|
||||
border: 1rem solid rgba(0, 0, 0, 0.1);
|
||||
|
||||
&:before {
|
||||
font-family: 'FontAwesome', serif;
|
||||
content: '\f03a';
|
||||
color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.box {
|
||||
box-sizing: border-box;
|
||||
|
|
|
|||
18
styles.css
18
styles.css
|
|
@ -3910,6 +3910,11 @@ input[type="range"] {
|
|||
flex-shrink: 0; }
|
||||
.input button:hover, .input button:focus {
|
||||
background: var(--button-colored-background-hover); }
|
||||
.input button.inactive {
|
||||
background: #ccc;
|
||||
cursor: default; }
|
||||
.input button.inactive:hover, .input button.inactive:focus {
|
||||
background: #ccc; }
|
||||
.input input {
|
||||
box-sizing: border-box;
|
||||
font-size: 1rem;
|
||||
|
|
@ -4460,6 +4465,19 @@ body > nav {
|
|||
line-height: 60px;
|
||||
font-size: 9px; }
|
||||
|
||||
.emptyPage {
|
||||
width: 80%;
|
||||
font-size: 15rem;
|
||||
margin: 0 auto;
|
||||
margin: 5rem;
|
||||
padding: 3rem;
|
||||
text-align: center;
|
||||
border: 1rem solid rgba(0, 0, 0, 0.1); }
|
||||
.emptyPage:before {
|
||||
font-family: 'FontAwesome', serif;
|
||||
content: '\f03a';
|
||||
color: rgba(0, 0, 0, 0.1); }
|
||||
|
||||
.box {
|
||||
box-sizing: border-box;
|
||||
margin-top: 1rem;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user