init dev-push code ui base design
This commit is contained in:
77
assets/scss/datepicker.scss
Normal file
77
assets/scss/datepicker.scss
Normal file
@ -0,0 +1,77 @@
|
||||
@each $theme in dark, light {
|
||||
|
||||
// @include theme($theme);
|
||||
.v-application.#{$theme}-mode {
|
||||
|
||||
.search-box-label {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.datepicker-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
border-radius: 6px;
|
||||
border: solid 1px;
|
||||
height: 40px;
|
||||
// border-color: #424242;
|
||||
border-color: map-deep-get($config, #{$theme}, "tui-datepicker-border-color");
|
||||
|
||||
|
||||
.v-input {
|
||||
|
||||
// ----------------------
|
||||
&.v-input--is-readonly {
|
||||
border-color: rgba(0, 0, 0, 0);
|
||||
flex-grow: 1;
|
||||
|
||||
&:not(.v-input--radio-group) {
|
||||
&:not(.v-input--checkbox) {
|
||||
::v-deep {
|
||||
.v-input__slot {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
|
||||
fieldset {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// -------------------
|
||||
.v-input__append-outer {
|
||||
margin-top: 0;
|
||||
margin-left: 0;
|
||||
|
||||
#startpicker-container,
|
||||
#endpicker-container {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 36px;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.v-input__custom {
|
||||
flex: 0 0 auto;
|
||||
|
||||
&.half {
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
|
||||
&.large {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
&.datepicker-timeselect {
|
||||
border: solid 1px map-deep-get($config, #{$theme}, "tui-datepicker-border-color") !important;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user