/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at . */ .close-btn { width: 14px; height: 14px; border: 1px solid transparent; border-radius: 2px; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0; } .close-btn:focus { outline: none; } .close-btn .close { mask: url(/images/close.svg) no-repeat; mask-size: 100%; background-color: var(--theme-comment); width: 8px; height: 8px; transition: all 0.15s ease-in-out; padding: 0; margin-top: 0; } .close-btn:hover img.close { background-color: white; } .close-btn:hover { background-color: var(--theme-selection-background); } .close-btn:focus { background-color: var(--theme-selection-background); } .close-btn:focus img.close { background-color: white; } .close-btn.big { width: 16px; height: 18px; } img.close::before { width: 100%; height: 100%; padding: 6px; }