integarting admin dashboard
This commit is contained in:
63
public/Dashboard/scss/common/dark/components/_forms.scss
Normal file
63
public/Dashboard/scss/common/dark/components/_forms.scss
Normal file
@ -0,0 +1,63 @@
|
||||
/* Forms */
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
.input-group-append,
|
||||
.input-group-prepend {
|
||||
color: $input-placeholder-color;
|
||||
width: auto;
|
||||
border: none;
|
||||
|
||||
.input-group-text {
|
||||
background: darken($input-bg, 5%);
|
||||
border-color: $border-color;
|
||||
padding: $input-padding-y .75rem;
|
||||
color: $input-placeholder-color;
|
||||
}
|
||||
}
|
||||
.form-control {
|
||||
border: 1px solid $border-color;
|
||||
font-weight: 400;
|
||||
font-size: $input-font-size;
|
||||
}
|
||||
|
||||
select {
|
||||
&.form-control {
|
||||
padding: .4375rem .75rem;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
color: $input-placeholder-color;
|
||||
&:focus {
|
||||
outline: 1px solid $border-color;
|
||||
}
|
||||
@each $color, $value in $theme-colors {
|
||||
&.border-#{$color} {
|
||||
outline: 1px solid $value;
|
||||
&:focus {
|
||||
outline: 1px solid $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.form-group {
|
||||
label {
|
||||
font-size: $default-font-size;
|
||||
line-height: 1.4rem;
|
||||
vertical-align: top;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
&.has-danger {
|
||||
.form-control {
|
||||
border-color: theme-color(danger);
|
||||
}
|
||||
}
|
||||
.file-upload-default {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
}
|
||||
.file-upload-info {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user