style: Adjust the tooltip style; fix inconsistency with screenshot UI

- remove screenshot tooltips using a style different from other tooltips
- tone down how dark they are
- fix missing background adjustment for high contrast

Fixes #6660

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2757>
This commit is contained in:
Sam Hewitt 2023-05-02 11:01:12 -02:30
parent 578b89e61d
commit b6ab909180
2 changed files with 3 additions and 4 deletions

View File

@ -167,6 +167,7 @@ stage {
// tooltip
%tooltip {
background-color: transparentize(black, 0.1);
border: 1px solid transparentize($light_1, 0.9);
color: $light_1;
border-radius: 99px;
@ -174,6 +175,7 @@ stage {
text-align: center;
@if $is_highcontrast {
background-color: black;
border-color: $hc_inset_color;
}
}

View File

@ -195,10 +195,7 @@ $screenshot_ui_button_red: $error_color;
}
.screenshot-ui-tooltip {
color: $osd_fg_color;
background-color: $osd_bg_color;
border-radius: 99px;
padding: $base_padding $base_padding * 2;
@extend %tooltip;
text-align: center;
-y-offset: 24px;
}