diff --git a/services/web/public/stylesheets/app/editor.less b/services/web/public/stylesheets/app/editor.less index 0e3d48cf87..af3063cf22 100644 --- a/services/web/public/stylesheets/app/editor.less +++ b/services/web/public/stylesheets/app/editor.less @@ -92,6 +92,7 @@ .toolbar-editor { height: @editor-toolbar-height; background-color: @editor-toolbar-bg; + overflow: hidden; } .loading-screen { diff --git a/services/web/public/stylesheets/app/editor/toolbar.less b/services/web/public/stylesheets/app/editor/toolbar.less index f4521c1600..e5601fe4d3 100644 --- a/services/web/public/stylesheets/app/editor/toolbar.less +++ b/services/web/public/stylesheets/app/editor/toolbar.less @@ -249,9 +249,14 @@ /************************************** Formatting buttons ***************************************/ +.button-measurer-wrapper { + display: flex; +} + .formatting-btn { padding: 0; min-width: 32px; + width: 32px; height: 100%; display: flex; align-items: center; @@ -259,8 +264,14 @@ box-shadow: none; border: none; border-left: 1px solid #ccc; + border-radius: 0; &:last-child { border-right: 1px solid #ccc; } } + +.formatting-btn-icon { + font-style: normal; + line-height: 1.5; +}