fune/browser/components/screenshots/screenshots-buttons.css
Sam Foster f3819a9d6c Bug 1820015 - Make the screenshots UI keyboard accessible. r=niklas
* Move the chrome panel buttons into a `box` which is inserted into #navigator-toolbox
* Adjust what open/closed means using hidden instead
* Capture a weak ref to the focused element on open, and attempt to put focus back on exit
* Add some restore-focus tests
* Fix a bug where cancel via overlay "X" button wasn't exiting properly
* Place initial focus in the preview dialog button on the download button

Differential Revision: https://phabricator.services.mozilla.com/D181184
2023-12-18 19:01:44 +00:00

34 lines
981 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 http://mozilla.org/MPL/2.0/. */
:host {
position: absolute;
/* position about 4px above the container ensuring overlap with toolbar/chrome */
top: -8px;
inset-inline-end: 10px;
z-index: 3;
padding: 12px;
background-color: var(--arrowpanel-background);
border-radius: var(--arrowpanel-border-radius);
}
.full-page {
background-image: url("chrome://browser/content/screenshots/menu-fullpage.svg");
}
.visible-page {
background-image: url("chrome://browser/content/screenshots/menu-visible.svg");
}
.full-page, .visible-page {
-moz-context-properties: fill, stroke;
fill: currentColor;
stroke: var(--color-accent-primary);
background-position: center top;
background-repeat: no-repeat;
background-size: 46px 46px;
min-width: 90px;
padding: 46px 5px 5px;
margin: 2px;
}