mirror of
https://github.com/strapi/strapi.git
synced 2025-09-22 23:09:47 +00:00
53 lines
900 B
SCSS
53 lines
900 B
SCSS
.controlsWrapper {
|
|
display: flex;
|
|
user-select: none;
|
|
> div:nth-child(even) {
|
|
border-left: 0;
|
|
border-right: 0;
|
|
}
|
|
}
|
|
|
|
.styleButton {
|
|
height: 31px;
|
|
min-width: 31px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid rgba(16,22,34,0.10);
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
line-height: 31px;
|
|
text-align: center;
|
|
// color: #999;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.styleButtonActive {
|
|
border: 0;
|
|
background: rgba(16,22,34,0.00);
|
|
box-shadow: inset 0 -1px 0 0 rgba(16,22,34,0.04), inset 0 1px 0 0 rgba(16,22,34,0.04);
|
|
}
|
|
|
|
.styleButtonItalic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.wysiwygInlineControls {
|
|
height: 49px;
|
|
width: 100%;
|
|
display: flex;
|
|
user-select: none;
|
|
> div:nth-child(even) {
|
|
border-left: 0;
|
|
border-right: 0;
|
|
}
|
|
padding: 8px 10px 0 10px;
|
|
background-color: #F3F4F4;
|
|
}
|
|
|
|
.wysiwygInlineControlsFocus {
|
|
border-color: #78caff;
|
|
}
|
|
|
|
.active {
|
|
background-color: red;
|
|
}
|