// Main UI elements
.editor-toolbar-main {
display: flex;
+ flex-wrap: wrap;
}
// Buttons
padding: 4px 6px;
display: block;
}
+.editor-button-icon svg {
+ width: 24px;
+ height: 24px;
+ fill: #000;
+}
// Containers
.editor-dropdown-menu-container {
font-weight: 700;
}
+// Specific UI elements
+.editor-color-select-row {
+ display: flex;
+}
+.editor-color-select-option {
+ width: 28px;
+ height: 28px;
+ cursor: pointer;
+}
+.editor-color-select-option:hover {
+ border-radius: 3px;
+ box-sizing: border-box;
+ z-index: 3;
+ box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.25);
+}
+
// In-editor elements
.editor-image-wrap {
position: relative;