Skip to content

Commit

Permalink
gnome-shell: fix colour scheme and panel in lock screen in 3.26
Browse files Browse the repository at this point in the history
  • Loading branch information
peterychuang committed Sep 17, 2017
1 parent 85151e7 commit 8b4ce18
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/gnome-shell-compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -2783,7 +2783,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#panel.lock-screen {
background-color: rgba(0, 0, 0, 0.3);
background-color: transparent;
}

.screen-shield-background {
Expand All @@ -2792,7 +2792,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: #424242;
background-size: cover;
}

Expand Down
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/gnome-shell-dark-compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -2783,7 +2783,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#panel.lock-screen {
background-color: rgba(0, 0, 0, 0.3);
background-color: transparent;
}

.screen-shield-background {
Expand All @@ -2792,7 +2792,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: #424242;
background-size: cover;
}

Expand Down
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/gnome-shell-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -2783,7 +2783,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#panel.lock-screen {
background-color: rgba(0, 0, 0, 0.3);
background-color: transparent;
}

.screen-shield-background {
Expand All @@ -2792,7 +2792,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: #424242;
background-size: cover;
}

Expand Down
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/gnome-shell-light-compact.css
Original file line number Diff line number Diff line change
Expand Up @@ -2783,7 +2783,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#panel.lock-screen {
background-color: rgba(0, 0, 0, 0.3);
background-color: transparent;
}

.screen-shield-background {
Expand All @@ -2792,7 +2792,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: #424242;
background-size: cover;
}

Expand Down
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/gnome-shell-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -2783,7 +2783,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#panel.lock-screen {
background-color: rgba(0, 0, 0, 0.3);
background-color: transparent;
}

.screen-shield-background {
Expand All @@ -2792,7 +2792,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: #424242;
background-size: cover;
}

Expand Down
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/gnome-shell.css
Original file line number Diff line number Diff line change
Expand Up @@ -2783,7 +2783,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#panel.lock-screen {
background-color: rgba(0, 0, 0, 0.3);
background-color: transparent;
}

.screen-shield-background {
Expand All @@ -2792,7 +2792,7 @@ StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: #424242;
background-size: cover;
}

Expand Down
4 changes: 2 additions & 2 deletions src/gnome-shell/3.26/sass/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2099,15 +2099,15 @@ StScrollBar {
color: $inverse_secondary_fg_color;
}

#panel.lock-screen { background-color: $alt_bg_color; }
#panel.lock-screen { background-color: $panel_bg_color; }

.screen-shield-background { //just the shadow, really
background: black;
box-shadow: $shadow_5;
}

#lockDialogGroup {
background: #607D8B url("assets/noise-texture.svg");
background: $grey_800;
background-size: cover;
}

Expand Down

0 comments on commit 8b4ce18

Please sign in to comment.