Files
tubestation/browser/components/backup/content/backup-common.css
Mike Conley a44f7c8ceb Bug 1904925 - Fill out more of the backup-settings reusable component. r=backup-reviewers,fluent-reviewers,firefox-desktop-core-reviewers ,flod,kpatenio
This exposes some UI to show the most recent backup timestamp
and location (if a recent backup exists), and buttons to show
that location, and to edit the location.

Differential Revision: https://phabricator.services.mozilla.com/D215543
2024-07-10 15:38:46 +00:00

27 lines
803 B
CSS

/* 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/. */
/**
* This stylesheet is for shared rules across multiple backup components.
* It assumes that common.css has been imported into the same scope.
*/
.backup-location-filepicker-input {
flex: 1;
margin-block: var(--space-xsmall);
margin-inline-start: 0;
padding-inline-start: var(--space-xxlarge);
background-repeat: no-repeat;
background-size: var(--icon-size-default);
background-position: var(--space-small) 50%;
/* For the placeholder icon */
-moz-context-properties: fill;
fill: currentColor;
&:dir(rtl) {
background-position-x: right var(--space-small);
}
}