network: Make the device section headers not bold
The new device section headers will be simple text strings in the new designs. This is a part of the new system status design, see https://wiki.gnome.org/GnomeShell/Design/Guidelines/SystemStatus/ for design details. https://bugzilla.gnome.org/show_bug.cgi?id=704670
This commit is contained in:
parent
3271e65d56
commit
6295d0fc6c
@ -234,11 +234,6 @@ StScrollBar StButton#vhandle:active {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.popup-subtitle-menu-item, .popup-subtitle-menu-item:insensitive {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.popup-menu-icon {
|
||||
icon-size: 1.09em;
|
||||
}
|
||||
|
@ -180,7 +180,7 @@ const NMDevice = new Lang.Class({
|
||||
this._activeConnectionItem = null;
|
||||
this._overflowItem = null;
|
||||
|
||||
this.statusItem = new PopupMenu.PopupSwitchMenuItem('', this.connected, { style_class: 'popup-subtitle-menu-item' });
|
||||
this.statusItem = new PopupMenu.PopupSwitchMenuItem('', this.connected);
|
||||
this._statusChanged = this.statusItem.connect('toggled', Lang.bind(this, function(item, state) {
|
||||
let ok;
|
||||
if (state)
|
||||
@ -1245,8 +1245,7 @@ const NMVPNConnectionItem = new Lang.Class({
|
||||
this._activeConnection = null;
|
||||
this._activeConnectionChangedId = 0;
|
||||
|
||||
this.menuItem = new PopupMenu.PopupSwitchMenuItem(connection.get_id(), false,
|
||||
{ style_class: 'popup-subtitle-menu-item' });
|
||||
this.menuItem = new PopupMenu.PopupSwitchMenuItem(connection.get_id(), false);
|
||||
this.menuItem.connect('toggled', Lang.bind(this, this._toggle));
|
||||
|
||||
this._sync();
|
||||
|
Loading…
Reference in New Issue
Block a user