CloseButton.css (755B)
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 .close-btn { 6 width: 16px; 7 height: 16px; 8 border: 1px solid transparent; 9 border-radius: 2px; 10 padding: 1px; 11 color: var(--theme-icon-color); 12 } 13 14 .close-btn:hover { 15 color: var(--theme-selection-color); 16 background-color: var(--theme-selection-background); 17 } 18 19 .close-btn .dbg-img { 20 display: block; 21 width: 12px; 22 height: 12px; 23 /* inherit the button's text color for the icon's color */ 24 background-color: currentColor; 25 } 26 27 .close-btn.big { 28 width: 20px; 29 height: 20px; 30 } 31 32 .close-btn.big .dbg-img { 33 width: 16px; 34 height: 16px; 35 }