Compare commits
10 Commits
44bb88dda9
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 0bf3af329b | |||
| f263e54e52 | |||
| b81ef3c125 | |||
| fd2a4d0a59 | |||
| 70e92dc130 | |||
| 66f73f40f4 | |||
| dd28f5c620 | |||
| f4964feaa5 | |||
| e34ac7de95 | |||
| 7fdf63a6cc |
@ -101,8 +101,15 @@
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
.toastui-editor-popup-body label,
|
||||
.toastui-editor-popup-body button,
|
||||
.toastui-editor-popup-body .tab-item,
|
||||
.toastui-editor-popup-body span,
|
||||
.toastui-editor-popup-body input {
|
||||
font-family: var(--desktop-normal-font-family, "Inter-Regular", sans-serif) !important;
|
||||
}
|
||||
|
||||
.toastui-editor-dark .toastui-editor-popup-body label {
|
||||
font-family: var(--desktop-normal-font-family, "Inter-Regular", sans-serif);
|
||||
color: rgba(255, 255, 255, 0.85098);
|
||||
}
|
||||
|
||||
@ -117,7 +124,7 @@
|
||||
}
|
||||
|
||||
.toastui-editor-dark .toastui-editor-popup-body input[type='text'].disabled {
|
||||
color: #969aa5;
|
||||
color: rgba(255, 255, 255, 0.85098);
|
||||
border-color: #303238;
|
||||
background-color: rgba(48, 50, 56, 0.4);
|
||||
}
|
||||
@ -136,6 +143,10 @@
|
||||
border-bottom-color: #67ccff;
|
||||
}
|
||||
|
||||
.toastui-editor-dark .toastui-editor-popup-add-image .toastui-editor-file-name.has-file {
|
||||
color:#eee;
|
||||
}
|
||||
|
||||
.toastui-editor-dark .toastui-editor-popup-body .toastui-editor-file-name {
|
||||
border-color: #303238;
|
||||
color: #eee;
|
||||
|
||||
@ -70,6 +70,15 @@
|
||||
.v-icon {
|
||||
color: map-deep-get($config, #{$theme}, "v-icon-chevron-down") !important;
|
||||
}
|
||||
|
||||
.v-select .v-input__slot {
|
||||
border-radius: 8px !important;
|
||||
border: solid 1px map-deep-get($config, #{$theme}, "tui-datepicker-border-color") !important;
|
||||
}
|
||||
|
||||
.v-select fieldset {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.v-input__custom {
|
||||
|
||||
@ -549,5 +549,10 @@ export default {
|
||||
color: #000 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.datepicker-timeselect .v-input__slot {
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -802,17 +802,31 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.v-input__custom {
|
||||
|
||||
|
||||
&.half {
|
||||
width: calc(50% - 20px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@each $theme in dark, light {
|
||||
.v-application.#{$theme}-mode {
|
||||
.v-input__custom {
|
||||
&.v-input--is-readonly {
|
||||
&:not(.v-input--radio-group) {
|
||||
&:not(.v-input--checkbox) {
|
||||
::v-deep {
|
||||
.v-input__slot {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep {
|
||||
.tui-timepicker-row {
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user