summaryrefslogtreecommitdiffstats
path: root/browser/themes/shared/migration/migration-wizard.css
diff options
context:
space:
mode:
Diffstat (limited to 'browser/themes/shared/migration/migration-wizard.css')
-rw-r--r--browser/themes/shared/migration/migration-wizard.css30
1 files changed, 25 insertions, 5 deletions
diff --git a/browser/themes/shared/migration/migration-wizard.css b/browser/themes/shared/migration/migration-wizard.css
index 457af1f66e..060133613a 100644
--- a/browser/themes/shared/migration/migration-wizard.css
+++ b/browser/themes/shared/migration/migration-wizard.css
@@ -13,9 +13,9 @@
}
h1 {
- font-size: 1.30em;
- font-weight: normal;
- margin-block: 0 16px;
+ font-size: var(--embedded-wizard-header-font-size, 1.30em);
+ font-weight: var(--embedded-wizard-header-font-weight, normal);
+ margin-block: var(--embedded-wizard-header-margin-block, 0 16px);
min-height: 1em;
}
@@ -157,13 +157,17 @@ div[name="page-selection"]:not([show-import-all]) summary {
}
div[name="page-selection"][show-import-all]:not([single-item]) label:not(#select-all) {
- margin-inline-start: 24px;
+ margin-inline: var(--resource-type-label-margin-inline, 24px 0);
}
div[name="page-selection"][show-import-all] #select-all {
display: flex;
}
+div[name="page-selection"][show-import-all][hide-select-all] #select-all {
+ display: none;
+}
+
div[name="page-selection"][migrator-type="browser"] > .buttons > #import-from-file,
div[name="page-selection"][migrator-type="browser"][no-permissions] > .buttons > #import,
div[name="page-selection"][migrator-type="browser"]:not([no-permissions]) > .buttons > #get-permissions,
@@ -217,7 +221,8 @@ summary {
}
#resource-type-list > label {
- margin-block-start: 16px;
+ margin-block: var(--resource-type-label-margin-block, 16px 0);
+ margin-inline: var(--resource-type-label-margin-inline, 0);
}
:host(:not([dialog-mode])) .cancel-close,
@@ -382,3 +387,18 @@ div[name="page-selection"][show-import-all] .resource-selection-details {
"c b";
margin-block: 16px 0;
}
+
+:host([hide-option-expander-subtitle]) .selected-data {
+ display: none;
+}
+
+p.migration-wizard-subheader {
+ font-size: var(--embedded-wizard-subheader-font-size, .85em);
+ font-weight: var(--embedded-wizard-subheader-font-weight, 400);
+ margin-block: var(--embedded-wizard-subheader-margin-block, 0 28px);
+ line-height: 1.2em;
+
+ &[hidden] {
+ display: none;
+ }
+}