summaryrefslogtreecommitdiffstats
path: root/browser/components/firefoxview/history.css
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/firefoxview/history.css')
-rw-r--r--browser/components/firefoxview/history.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/browser/components/firefoxview/history.css b/browser/components/firefoxview/history.css
new file mode 100644
index 0000000000..dd2786a8c7
--- /dev/null
+++ b/browser/components/firefoxview/history.css
@@ -0,0 +1,80 @@
+/* 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/. */
+
+.history-sort-options:not([hidden]) {
+ display: flex;
+ gap: 24px;
+}
+
+.history-sort-option {
+ display: flex;
+ align-items: center;
+ gap: 8px;
+
+ & label {
+ white-space: nowrap;
+ }
+}
+
+.show-all-history-footer {
+ text-align: center;
+ margin-block-end: 24px;
+}
+
+.import-history-banner .banner-text {
+ display: flex;
+ flex-direction: column;
+ font-size: 0.95rem;
+ gap: 6px;
+}
+
+.import-history-banner .banner-text span:first-child {
+ font-weight: 600;
+}
+
+.import-history-banner [slot="main"] {
+ display: grid;
+ grid-template-columns: 1fr auto;
+ gap: 16px;
+ padding: 8px;
+}
+
+.import-history-banner .buttons {
+ display: flex;
+ align-items: center;
+ gap: 16px;
+}
+
+.choose-browser {
+ font-size: 0.87em;
+ cursor: pointer;
+}
+
+.import-history-banner .close {
+ background-image: url("chrome://global/skin/icons/close-12.svg");
+ background-repeat: no-repeat;
+ background-position: center center;
+ -moz-context-properties: fill;
+ fill: currentColor;
+ min-width: auto;
+ min-height: auto;
+ width: 24px;
+ height: 24px;
+ margin: 0;
+ padding: 0;
+ flex-shrink: 0;
+}
+
+dialog {
+ border: 1px solid transparent;
+ border-radius: 8px;
+ box-shadow: 0 2px 6px 0 rgba(0,0,0,0.3);
+ padding: 24px;
+}
+
+@media (prefers-color-scheme: dark) {
+ dialog {
+ --in-content-page-background: #42414d;
+ }
+}