mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
105 lines
1.9 KiB
SCSS
105 lines
1.9 KiB
SCSS
@import "constants";
|
|
@import "mixins";
|
|
|
|
.mce-image-loader {
|
|
display: none !important;
|
|
|
|
+ .image-selection-container {
|
|
height: 36px;
|
|
left: 140px;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 338px;
|
|
|
|
.select_button {
|
|
background-color: $brand-primary;
|
|
border-color: $brand-primary;
|
|
color: $color-white;
|
|
cursor: pointer;
|
|
line-height: 18px;
|
|
padding: 6px 12px;
|
|
position: relative;
|
|
text-align: center;
|
|
width: 76px;
|
|
z-index: 2;
|
|
}
|
|
|
|
input[type=text] {
|
|
border: 1px solid $color-concrete;
|
|
border-radius: 4px;
|
|
height: 30px;
|
|
left: -5px;
|
|
padding-left: 10px;
|
|
position: relative;
|
|
width: calc(100% - 100px);
|
|
}
|
|
|
|
&.error {
|
|
&::after {
|
|
color: $brand-danger;
|
|
content: attr(data-error);
|
|
left: 0;
|
|
position: absolute;
|
|
top: 40px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.mce-primary {
|
|
background-color: $brand-primary !important;
|
|
border-color: $brand-primary !important;
|
|
border-radius: $border-radius-default !important;
|
|
color: $color-white !important;
|
|
}
|
|
|
|
.mce-primary .mce-txt:hover {
|
|
color: $color-white !important;
|
|
}
|
|
|
|
.ql-editor {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.mce-top-part {
|
|
z-index: 5;
|
|
}
|
|
|
|
.mce-widget.mce-btn {
|
|
border-color: transparent !important;
|
|
|
|
&:not(.mce-active):hover,
|
|
&:not(.mce-active):active {
|
|
span,
|
|
i {
|
|
color: $brand-primary;
|
|
}
|
|
}
|
|
|
|
&.mce-active,
|
|
&.mce-active:hover,
|
|
&.mce-active:active,
|
|
&.mce-active:focus {
|
|
background-color: $brand-primary;
|
|
|
|
span,
|
|
i {
|
|
color: $color-white;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Caret symbol has unneeded border-left
|
|
.mce-splitbtn:hover .mce-open {
|
|
border-left: $color-white !important;
|
|
}
|
|
|
|
// Selected item list should be $brand-primary
|
|
.mce-menu-item.mce-active.mce-menu-item-normal {
|
|
background-color: $brand-primary !important;
|
|
}
|
|
|
|
// Fix for Safari artefacts
|
|
.mce-menu.mce-animate {
|
|
transform: none !important;
|
|
}
|