summaryrefslogtreecommitdiffstats
path: root/browser/components/sidebar/sidebar-customize.css
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/sidebar/sidebar-customize.css')
-rw-r--r--browser/components/sidebar/sidebar-customize.css57
1 files changed, 57 insertions, 0 deletions
diff --git a/browser/components/sidebar/sidebar-customize.css b/browser/components/sidebar/sidebar-customize.css
new file mode 100644
index 0000000000..d78477e8ba
--- /dev/null
+++ b/browser/components/sidebar/sidebar-customize.css
@@ -0,0 +1,57 @@
+/* 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 https://mozilla.org/MPL/2.0/. */
+
+.container {
+ padding-inline: var(--space-small);
+ font-size: 15px;
+}
+
+.customize-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ -moz-context-properties: fill;
+ fill: currentColor;
+ color: currentColor;
+
+ .customize-close-button::part(button) {
+ background-image: url("chrome://global/skin/icons/close-12.svg");
+ }
+}
+
+.customize-firefox-tools {
+ .inputs {
+ display: flex;
+ flex-direction: column;
+ gap: var(--space-medium);
+ }
+
+ .input-wrapper {
+ display: flex;
+ align-items: center;
+ gap: var(--space-small);
+
+ > input {
+ margin-inline-start: 0;
+ }
+
+ > label {
+ display: inline-flex;
+ align-items: center;
+ gap: var(--space-small);
+ font-size: 0.9em;
+ }
+
+ .icon {
+ -moz-context-properties: fill;
+ fill: currentColor;
+ background-image: var(--tool-icon);
+ background-size: var(--icon-size-default);
+ width: var(--icon-size-default);
+ height: var(--icon-size-default);
+ background-position: center;
+ background-repeat: no-repeat;
+ }
+ }
+}