summaryrefslogtreecommitdiffstats
path: root/toolkit/content/widgets/panel-list/panel-list.css
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /toolkit/content/widgets/panel-list/panel-list.css
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/content/widgets/panel-list/panel-list.css')
-rw-r--r--toolkit/content/widgets/panel-list/panel-list.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/toolkit/content/widgets/panel-list/panel-list.css b/toolkit/content/widgets/panel-list/panel-list.css
new file mode 100644
index 0000000000..4358fc0cf8
--- /dev/null
+++ b/toolkit/content/widgets/panel-list/panel-list.css
@@ -0,0 +1,59 @@
+/* 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 http://mozilla.org/MPL/2.0/. */
+
+:host([showing]) {
+ visibility: hidden;
+}
+
+:host(:not([open])) {
+ display: none;
+}
+
+:host {
+ position: absolute;
+ font: menu;
+ background-color: var(--in-content-box-background);
+ border-radius: 4px;
+ padding: 6px 0;
+ margin-bottom: 16px;
+ box-shadow: var(--shadow-30);
+ min-width: 12em;
+ z-index: var(--z-index-popup, 10);
+ white-space: nowrap;
+ cursor: default;
+ overflow-y: auto;
+ box-sizing: border-box;
+}
+
+:host(:not([slot=submenu])) {
+ max-height: 100%;
+}
+
+:host([stay-open]) {
+ position: initial;
+ display: inline-block;
+}
+
+:host([inxulpanel]) {
+ position: static;
+ margin: 0;
+}
+
+:host(:not([inxulpanel])) {
+ border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
+}
+
+.list {
+ margin: 0;
+ padding: 0;
+}
+
+::slotted(hr:not([hidden])) {
+ display: block !important;
+ height: 1px !important;
+ background: var(--in-content-box-border-color) !important;
+ padding: 0 !important;
+ margin: 6px 0 !important;
+ border: none !important;
+}