#toolbar-item-workbench-tray { // Hide logo .menu-item__tools { display: none; } // Custom icons .toolbar-icon { &:before { left: var(--gin-spacing-s); background: var(--gin-icon-color); background-image: none; mask-size: var(--gin-icon-size-toolbar) var(--gin-icon-size-toolbar); mask-repeat: no-repeat; mask-position: center center; } &:hover:before, &.is-active:before { background: var(--gin-color-primary); } } .toolbar-icon-workbench-content { &:before { mask-image: icon('tool'); } } .toolbar-icon-workbench-create-content { &:before { mask-image: icon('edit'); } } .toolbar-icon-workbench-my-edited { &:before { mask-image: icon('list'); } } .toolbar-icon-workbench-all-content { &:before { mask-image: icon('content'); } } .toolbar-icon-workbench-configure { &:before { mask-image: icon('config'); } } } .gin-secondary-toolbar .toolbar-secondary { // Hide icons .toolbar-tray .toolbar-icon { &:before { display: none; } } }