1 .filmstrip-toolbox, 2 .always-on-top-toolbox { 3 background-color: $newToolbarBackgroundColor; 4 border-radius: 3px; 5 display: flex; 6 z-index: $toolbarZ; 7 8 .toolbox-icon { 9 cursor: pointer; 10 padding: 7px; 11 width: 22px; 12 height : 22px; 13 14 &.toggled { 15 background: none; 16 } 17 18 &.disabled { 19 cursor: initial; 20 } 21 } 22 } 23 24 .always-on-top-toolbox { 25 flex-direction: row; 26 left: 50%; 27 position: absolute; 28 bottom: 10px; 29 transform: translateX(-50%); 30 padding: 3px !important; 31 } 32 33 .filmstrip-toolbox { 34 flex-direction: column; 35 }