by roundabout, Thursday, 27 February 2020, 16:53:21 (1582822401), pushed by roundabout, Sunday, 11 May 2025, 13:22:49 (1746969769)
Author identity: nana-4 <hnmaigo@gmail.com>
eab1cc15714d5bb76b2604dca0f398df0b67c053
src/_sass/gnome-shell/_common-3.26.scss
@@ -1,10 +1,3 @@
.lightbox { background-color: black; }
.flashspot { background-color: white; }
.hidden {
color: rgba(0,0,0,0);
}
/* Tiled window previews */
.tile-preview {
background-color: rgba(on(dark, primary), 0.3);
@@ -79,19 +72,6 @@
box-shadow: $shadow-2;
}
/* Auth Dialogs & Screen Shield */
.framed-user-icon {
background-size: contain;
border: none;
color: on($os-background);
border-radius: $corner-radius;
&:hover {
border-color: on($os-background);
color: on($os-background);
}
}
// LOGIN DIALOG
.login-dialog-banner-view {
src/_sass/gnome-shell/_common-3.28.scss
@@ -1,10 +1,3 @@
.lightbox { background-color: black; }
.flashspot { background-color: white; }
.hidden {
color: rgba(0,0,0,0);
}
/* Tiled window previews */
.tile-preview {
background-color: rgba(on(dark, primary), 0.3);
@@ -109,19 +102,6 @@
box-shadow: $shadow-2;
}
/* Auth Dialogs & Screen Shield */
.framed-user-icon {
background-size: contain;
border: none;
color: on($os-background);
border-radius: $corner-radius;
&:hover {
border-color: on($os-background);
color: on($os-background);
}
}
// LOGIN DIALOG
.login-dialog-banner-view {
src/_sass/gnome-shell/_common-3.30.scss
@@ -1,10 +1,3 @@
.lightbox { background-color: black; }
.flashspot { background-color: white; }
.hidden {
color: rgba(0,0,0,0);
}
/* Tiled window previews */
.tile-preview {
background-color: rgba(on(dark, primary), 0.3);
@@ -109,19 +102,6 @@
box-shadow: $shadow-2;
}
/* Auth Dialogs & Screen Shield */
.framed-user-icon {
background-size: contain;
border: none;
color: on($os-background);
border-radius: $corner-radius;
&:hover {
border-color: on($os-background);
color: on($os-background);
}
}
// LOGIN DIALOG
.login-dialog-banner-view {
src/_sass/gnome-shell/_common-3.32.scss
@@ -1,10 +1,3 @@
.lightbox { background-color: black; }
.flashspot { background-color: white; }
.hidden {
color: rgba(0,0,0,0);
}
/* Tiled window previews */
.tile-preview {
background-color: rgba(on(dark, primary), 0.3);
@@ -23,12 +16,6 @@
border-radius: 0;
}
// Rubberband for select-area screenshots
.select-area-rubberband {
background-color: rgba(on(dark, primary), 0.3);
border: 1px solid on(dark, primary);
}
/* Eeeky things */
//magnifier
@@ -141,19 +128,6 @@
}
}
/* Auth Dialogs & Screen Shield */
.user-icon {
background-size: contain;
border: none;
color: on($os-background);
border-radius: $circular-radius;
&:hover {
border-color: on($os-background);
color: on($os-background);
}
}
// LOGIN DIALOG
.login-dialog-banner-view {
src/_sass/gnome-shell/_common-3.34.scss
@@ -1,10 +1,3 @@
.lightbox { background-color: black; }
.flashspot { background-color: white; }
.hidden {
color: rgba(0,0,0,0);
}
/* Tiled window previews */
.tile-preview {
background-color: rgba(on(dark, primary), 0.3);
@@ -23,12 +16,6 @@
border-radius: 0;
}
// Rubberband for select-area screenshots
.select-area-rubberband {
background-color: rgba(on(dark, primary), 0.3);
border: 1px solid on(dark, primary);
}
// Pointer location
.ripple-pointer-location {
width: 50px;
@@ -161,19 +148,6 @@
}
}
/* Auth Dialogs & Screen Shield */
.user-icon {
background-size: contain;
border: none;
color: on($os-background);
border-radius: $circular-radius;
&:hover {
border-color: on($os-background);
color: on($os-background);
}
}
// LOGIN DIALOG
.login-dialog-banner-view {
src/_sass/gnome-shell/_components.scss
@@ -39,7 +39,7 @@
@import 'components/overview/dash';
@import 'components/overview/workspace-switcher';
// A11y / misc
// @import 'components/misc/misc';
@import 'components/misc/misc';
// @import 'components/misc/a11y';
// @import 'components/misc/tile-preview';
// @import 'components/misc/keyboard';
src/_sass/gnome-shell/components/misc/_misc.scss
@@ -1,30 +1,43 @@
// Rubberband for select-area screenshots
.select-area-rubberband {
background-color: transparentize($selected_bg_color,0.7);
border: 1px solid $selected_bg_color;
border: 1px solid on(dark, primary);
background-color: rgba(on(dark, primary), .3);
}
// User icon
.user-icon {
$user-icon: if($version >= 3.32, ".user-icon", ".framed-user-icon");
#{$user-icon} {
border: 0;
border-radius: $circular-radius;
background-size: contain;
color: $osd_fg_color;
border-radius: 99px;
color: inherit;
&:hover {
color: lighten($osd_fg_color,30%);
border-color: transparent;
color: inherit;
}
}
.lightbox { background-color: black; }
.flashspot { background-color: white; }
// Lightbox
.lightbox {
background-color: black;
}
// Flashspot
.flashspot {
background-color: white;
}
// Hidden
.hidden { color: rgba(0,0,0,0);}
.hidden {
color: transparent;
}
// Caps-lock warning
.caps-lock-warning-label {
text-align: center;
padding-bottom: 8px;
@include fontsize($base_font_size - 1);
color: $warning_color;
font-size: 1em;
color: $warning;
}