PaneToggleButton.css (638B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */ 4 5 .toggle-button { 6 padding: 4px 6px; 7 } 8 9 .toggle-button .dbg-img { 10 vertical-align: middle; 11 } 12 13 .toggle-button.end { 14 margin-inline-end: 0; 15 margin-inline-start: auto; 16 } 17 18 .toggle-button.start { 19 margin-inline-start: 0; 20 } 21 22 html[dir="rtl"] .toggle-button.start .dbg-img, 23 html[dir="ltr"] .toggle-button.end:not(.vertical) .dbg-img { 24 transform: scaleX(-1); 25 } 26 27 .toggle-button.end.vertical .dbg-img { 28 transform: rotate(-90deg); 29 }