no-skin: fix toolbar icons position

This commit is contained in:
Sebastian Castro 2020-04-17 09:00:45 +02:00 committed by muxator
parent 705b6c5e2e
commit 780eaad573
3 changed files with 7 additions and 6 deletions

View file

@ -42,9 +42,6 @@
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@ -60,7 +57,7 @@
content: "\e843";
left: -9px;
position: absolute;
top: -7px;
top: -9px;
}
.buttonicon-settings:before {
content: "\e851";
@ -90,7 +87,7 @@
.ep_font_color .buttonicon:before { content: '\e84e' !important; border-bottom: solid 2px #e42a2a; }
.buttonicon-underline:before {
top: -7px;
top: -8px;
left: -8px;
position: absolute;
}

View file

@ -41,6 +41,6 @@ body {
@media only screen and (max-width: 720px) {
#editorcontainerbox {
margin-bottom: 37px; /* Leave space for the bottom toolbar on mobile */
margin-bottom: 39px; /* Leave space for the bottom toolbar on mobile */
}
}

View file

@ -24,4 +24,8 @@ button, .btn
color: var(--text-color);
}
.buttonicon:before, [class^="buttonicon-"]:before, [class*=" buttonicon-"]:before {
line-height: 18px;
}