First complete upload on nas

This commit is contained in:
2024-09-18 11:20:28 +02:00
commit 4f086962fe
6456 changed files with 1232660 additions and 0 deletions
@@ -0,0 +1,52 @@
/* ==============
Form-elements
===================*/
label {
font-weight: 500;
color: $gray-800;
font-size: 14px;
}
.form-control {
font-size: $base-font;
&:focus {
border-color: $primary;
box-shadow: none;
}
}
.custom-control-input:checked~.custom-control-indicator {
background-color: $primary;
}
.custom-control-input:focus~.custom-control-indicator {
-webkit-box-shadow: 0 0 0 1px $white, 0 0 0 3px $primary;
box-shadow: 0 0 0 1px $white, 0 0 0 3px $primary;
}
.has-success {
.form-control {
border-color: $success;
box-shadow: none;
}
}
.has-warning {
.form-control {
border-color: $warning;
box-shadow: none;
}
}
.has-error {
.form-control {
border-color: $danger;
box-shadow: none;
}
}
.input-group-addon {
border-radius: 2px;
border: 1px solid $light;
}