mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
38 lines
731 B
SCSS
38 lines
731 B
SCSS
|
@import "constants";
|
||
|
@import "mixins";
|
||
|
|
||
|
.mce-image-loader {
|
||
|
display: none !important;
|
||
|
|
||
|
+ .image-selection-container {
|
||
|
height: 28px;
|
||
|
left: 140px;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
width: 338px;
|
||
|
|
||
|
.select_button {
|
||
|
background-color: $brand-success;
|
||
|
border-color: $brand-success;
|
||
|
color: $color-white;
|
||
|
cursor: pointer;
|
||
|
line-height: 20px;
|
||
|
padding: 6px 12px;
|
||
|
position: relative;
|
||
|
text-align: center;
|
||
|
width: 76px;
|
||
|
z-index: 2;
|
||
|
}
|
||
|
|
||
|
input[type=text] {
|
||
|
border: 1px solid $color-gainsboro;
|
||
|
border-radius: 4px;
|
||
|
height: 30px;
|
||
|
left: -5px;
|
||
|
padding-left: 10px;
|
||
|
position: relative;
|
||
|
width: calc(100% - 100px);
|
||
|
}
|
||
|
}
|
||
|
}
|