diff --git a/htdocs/js/channelviewer.js b/htdocs/js/channelviewer.js index ce1867d..88fb2d0 100644 --- a/htdocs/js/channelviewer.js +++ b/htdocs/js/channelviewer.js @@ -58,39 +58,39 @@ Ext.ux.MumbleChannelViewer = function( config ){ Ext.applyIf( this, { // This stuff needs the above applied already - bbar: { - items: [ gettext("Auto-Refresh")+':', { - xtype: "checkbox", - ref: "../cbAutoRefresh", - scope: this, - handler: this.setAutoRefresh, - checked: (this.refreshInterval > 0), - }, { - xtype: "numberfield", - width: 30, - value: this.refreshInterval / 1000, - ref: "../nfAutoRefreshInterval", - scope: this, - listeners: { - render: function(c) { - Ext.QuickTips.register({ - target: c.getEl(), - text: gettext('Enter the interval in seconds in which the channel viewer should refresh and hit Enter.') - }); - }, - specialkey: function( field, ev ){ - if( ev.getKey() == ev.ENTER ){ - this.scope.setAutoRefresh(); // lawl - } - } + // x-btn x-btn-noicon + bbar: [ gettext("Auto-Refresh")+':', { + xtype: "checkbox", + ref: "../cbAutoRefresh", + scope: this, + handler: this.setAutoRefresh, + checked: (this.refreshInterval > 0), + }, { + xtype: "numberfield", + width: 30, + value: this.refreshInterval / 1000, + ref: "../nfAutoRefreshInterval", + scope: this, + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c.getEl(), + text: gettext('Enter the interval in seconds in which the channel viewer should refresh and hit Enter.') + }); }, - }, gettext("Seconds"), '->', { - xtype: "button", - text: gettext("Refresh"), - handler: this.refresh, - scope: this - }] - }, + specialkey: function( field, ev ){ + if( ev.getKey() == ev.ENTER ){ + this.scope.setAutoRefresh(); // lawl + } + } + }, + }, gettext("Seconds"), '->', { + xtype: "button", + template: null, + text: gettext("Refresh"), + handler: this.refresh, + scope: this + }] } ); Ext.ux.MumbleChannelViewer.superclass.constructor.call( this ); diff --git a/htdocs/mumble/style.css b/htdocs/mumble/style.css index e1d85d5..2c8e30f 100644 --- a/htdocs/mumble/style.css +++ b/htdocs/mumble/style.css @@ -1,3 +1,10 @@ +.form_hint_label { + font-family: Lucida Grande,Verdana,Arial,sans-serif; + font-size: 10px; + font-weight: 400; + font-style: normal; + color: #999999; +} a.mumble:link, a.mumble:visited, a.mumble:hover, a.mumble:active { font-weight: bold;