From 9011779be0b283edcfcaad32ae914f54579e7de1 Mon Sep 17 00:00:00 2001 From: Mike Lyons Date: Tue, 2 Jul 2013 14:52:40 -0700 Subject: [PATCH] Change the input css in the plugin for custom CX use case, this should be refactored to allow the plugin to take these as options --- js/jquery.knob.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/jquery.knob.js b/js/jquery.knob.js index ae36b6b..51afc6b 100644 --- a/js/jquery.knob.js +++ b/js/jquery.knob.js @@ -596,14 +596,14 @@ this.o.displayInput && this.i.css({ 'width' : ((this.o.width / 2 + 4) >> 0) + 'px' - ,'height' : ((this.o.width / 3) >> 0) + 'px' + ,'height' : '35px' ,'position' : 'absolute' ,'vertical-align' : 'middle' - ,'margin-top' : ((this.o.width / 3) >> 0) + 'px' + ,'margin-top' : '13px' ,'margin-left' : '-' + ((this.o.width * 3 / 4 + 2) >> 0) + 'px' ,'border' : 0 ,'background' : 'none' - ,'font' : 'bold ' + ((this.o.width / s) >> 0) + 'px Arial' + ,'font' : '100 30px Arial' ,'text-align' : 'center' ,'color' : this.o.inputColor || this.o.fgColor ,'padding' : '0px' @@ -682,4 +682,4 @@ ).parent(); }; -})(jQuery); \ No newline at end of file +})(jQuery);