Added a class for RadioButtons container

with appropriate top padding...
This commit is contained in:
Jonathan Frederic 2014-02-10 09:27:22 -08:00
parent 033ea6d88c
commit 3b8beec541
2 changed files with 10 additions and 2 deletions

View File

@ -126,8 +126,7 @@ define(["notebook/js/widgets/widget"], function(WidgetManager){
.hide();
this.$container = $('<div />')
.appendTo(this.$el)
.addClass('widget-container')
.addClass('vbox');
.addClass('widget-radio-box');
this.$el_to_style = this.$container; // Set default element to style
this.update();
},

View File

@ -178,6 +178,7 @@
.widget-numeric-text {
/* Single Line Textbox - used for IntTextView and FloatTextView */
width : 150px;
margin : 0px !important;
}
.widget-progress {
@ -261,6 +262,14 @@
.align-start();
}
.widget-radio-box {
/* Contains RadioButtonsWidget */
.vbox();
.border-box-sizing();
padding-top: 4px;
}
.docked-widget-modal {
/* Horizontal Label */
overflow: hidden;