Badge.css (504B)
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 .badge { 6 --size: 17px; 7 --radius: calc(var(--size) / 2); 8 height: var(--size); 9 min-width: var(--size); 10 line-height: var(--size); 11 background: var(--theme-toolbar-background-hover); 12 color: var(--theme-body-color); 13 border-radius: var(--radius); 14 padding: 0 4px; 15 font-size: 0.9em; 16 }