mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
panel: Stylesheet updates and minor improvements for panel buttons
- spin out all the panel button styling into a drawing mixin - clean up the styles generally - make special cases for the clock and non-flat buttons - contrast fixes for non-flat buttons, fixes #6768 - new stop icon for the screen recording/cast indicators Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2804>
This commit is contained in:
parent
aa11d90693
commit
eacabbf443
7 changed files with 117 additions and 149 deletions
|
|
@ -83,7 +83,7 @@ var ScreenRecordingIndicator = GObject.registerClass({
|
|||
});
|
||||
this._box.add_child(this._label);
|
||||
|
||||
this._icon = new St.Icon({ icon_name: 'stop-symbolic' });
|
||||
this._icon = new St.Icon({icon_name: 'screencast-stop-symbolic'});
|
||||
this._box.add_child(this._icon);
|
||||
|
||||
this.hide();
|
||||
|
|
@ -150,7 +150,7 @@ var ScreenSharingIndicator = GObject.registerClass({
|
|||
let icon = new St.Icon({icon_name: 'screen-shared-symbolic'});
|
||||
this._box.add_child(icon);
|
||||
|
||||
icon = new St.Icon({icon_name: 'window-close-symbolic'});
|
||||
icon = new St.Icon({icon_name: 'screencast-stop-symbolic'});
|
||||
this._box.add_child(icon);
|
||||
|
||||
this._controller = global.backend.get_remote_access_controller();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue