ExtensionDetail.css (764B)
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 .extension-backgroundscript { 6 display: flex; 7 column-gap: calc(var(--base-unit) * 2); 8 } 9 10 .extension-backgroundscript__status { 11 display: flex; 12 align-items: center; 13 float: inline-end; 14 } 15 16 .extension-backgroundscript__status::before { 17 background-color: var(--grey-50); 18 border-radius: var(--border-radius-circle); 19 content: ""; 20 height: calc(var(--base-unit) * 2); 21 margin-inline-end: var(--base-unit); 22 width: calc(var(--base-unit) * 2); 23 } 24 25 .extension-backgroundscript__status--running::before { 26 background-color: var(--success-background); 27 }