##// END OF EJS Templates
on("destroy",...) -> once("destroy",...) so we don't keep a reference to it, preventing gc...
on("destroy",...) -> once("destroy",...) so we don't keep a reference to it, preventing gc Thanks to Sylvain Corlay for the suggestion.

File last commit:

r17932:bf2aa859
r18058:c7253b21
Show More
widgets.less
274 lines | 6.3 KiB | text/x-less | LessCssLexer
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .widget-area {
Jonathan Frederic
Halign dict colons
r14610 /*
LESS file that styles IPython notebook widgets and the area they sit in.
The widget area typically looks something like this:
+------------------------------------------+
| widget-area |
| +--------+---------------------------+ |
| | prompt | widget-subarea | |
| | | +--------+ +--------+ | |
| | | | widget | | widget | | |
| | | +--------+ +--------+ | |
| +--------+---------------------------+ |
+------------------------------------------+
*/
page-break-inside : avoid;
Jonathan Frederic
Adjust weidget box so widget_subarea aligns with codecell
r14236 .hbox();
Jonathan Frederic
Add widget subarea style
r14220
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .widget-subarea {
Jonathan Frederic
Halign dict colons
r14610 padding : 0.44em 0.4em 0.4em 1px;
margin-left : 6px;
Jonathan Frederic
MAJOR CSS FIXES...
r14295 .border-box-sizing();
.vbox();
.box-flex2();
Jonathan Frederic
Align-start widget subarea
r15259 .align-start();
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
}
Jonathan Frederic
MAJOR CSS FIXES...
r14295
Jonathan Frederic
Halign dict colons
r14610 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
THE WIDGET AREA). */
Jonathan Frederic
MAJOR CSS FIXES...
r14295
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .slide-track {
Jonathan Frederic
Halign dict colons
r14610 /* Slider Track */
border : 1px solid #CCCCCC;
background : #FFFFFF;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .corner-all(); /* Round the corners of the slide track */
}
Jonathan Frederic
MAJOR CSS FIXES...
r14295
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .widget-hslider {
Jonathan Frederic
Halign dict colons
r14610 /* Horizontal jQuery Slider
Both the horizontal and vertical versions of the slider are characterized
by a styled div that contains an invisible jQuery slide div which
contains a visible slider handle div. This is requred so we can control
how the slider is drawn and 'fix' the issue where the slide handle
doesn't stop at the end of the slide.
Both horizontal and vertical sliders have this div nesting:
+------------------------------------------+
| widget-(h/v)slider |
| +--------+---------------------------+ |
| | ui-slider | |
| | +------------------+ | |
| | | ui-slider-handle | | |
| | +------------------+ | |
| +--------+---------------------------+ |
+------------------------------------------+
*/
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
/* Fix the padding of the slide track so the ui-slider is sized
correctly. */
Jonathan Frederic
Halign dict colons
r14610 padding-left : 8px;
padding-right : 5px;
overflow : visible;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
/* Default size of the slider */
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953 width : 350px;
Jonathan Frederic
Added bottom margin to text widget
r15363 height : 5px;
max-height : 5px;
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953 margin-top : 13px;
Jonathan Frederic
Added bottom margin to text widget
r15363 margin-bottom: 10px;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
/* Style the slider track */
.slide-track();
/* Make the div a flex box (makes FF behave correctly). */
.hbox();
Jonathan Frederic
Added slider vertical mode, and...
r14296
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .ui-slider {
Jonathan Frederic
Halign dict colons
r14610 /* Inner, invisible slide div */
border : 0px !important;
background : none !important;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
.hbox();
.box-flex1();
Jonathan Frederic
MAJOR CSS FIXES...
r14295
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .ui-slider-handle {
Jonathan Frederic
Halign dict colons
r14610 width : 14px !important;
height : 28px !important;
margin-top : -8px !important;
Jonathan Frederic
MAJOR CSS FIXES...
r14295 }
Gordon Ball
Adjust range style so that the vertical range marker is visible
r17114
.ui-slider-range {
height : 12px !important;
margin-top : -4px !important;
}
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
}
Jonathan Frederic
MAJOR CSS FIXES...
r14295
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .widget-vslider {
Jonathan Frederic
Halign dict colons
r14610 /* Vertical jQuery Slider */
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
/* Fix the padding of the slide track so the ui-slider is sized
correctly. */
Jonathan Frederic
Halign dict colons
r14610 padding-bottom : 8px;
overflow : visible;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
/* Default size of the slider */
Jonathan Frederic
Halign dict colons
r14610 width : 5px;
max-width : 5px;
height : 250px;
margin-left : 12px;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
/* Style the slider track */
.slide-track();
/* Make the div a flex box (makes FF behave correctly). */
.vbox();
.ui-slider {
Jonathan Frederic
Halign dict colons
r14610 /* Inner, invisible slide div */
border : 0px !important;
background : none !important;
margin-left : -4px;
margin-top : 5px;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
.vbox();
.box-flex1();
Jonathan Frederic
Added ProgressView
r14298
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .ui-slider-handle {
Jonathan Frederic
Halign dict colons
r14610 width : 28px !important;
height : 14px !important;
margin-left : -9px;
Jonathan Frederic
MAJOR CSS FIXES...
r14295 }
Gordon Ball
Adjust range style so that the vertical range marker is visible
r17114
.ui-slider-range {
width : 12px !important;
margin-left : -1px !important;
}
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
}
Jonathan Frederic
MAJOR CSS FIXES...
r14295
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .widget-text {
Jonathan Frederic
Halign dict colons
r14610 /* String Textbox - used for TextBoxView and TextAreaView */
width : 350px;
Jonathan Frederic
Added bottom margin to text widget
r15363 margin : 0px !important;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
.widget-listbox {
Jonathan Frederic
Halign dict colons
r14610 /* Listbox */
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953 width : 350px;
Jonathan Frederic
Halign dict colons
r14610 margin-bottom : 0px;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
.widget-numeric-text {
Jonathan Frederic
Halign dict colons
r14610 /* Single Line Textbox - used for IntTextView and FloatTextView */
width : 150px;
Jonathan Frederic
Added a class for RadioButtons container...
r15364 margin : 0px !important;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
.widget-progress {
Jonathan Frederic
Halign dict colons
r14610 /* Progress Bar */
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953 margin-top: 6px;
width : 350px;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444
Jonathan Frederic
Ran jdfreder/bootstrap2to3
r16913 .progress-bar {
Jonathan Frederic
Halign dict colons
r14610 /* Disable progress bar animation */
-webkit-transition : none;
-moz-transition : none;
-ms-transition : none;
-o-transition : none;
transition : none;
Jonathan Frederic
MAJOR CSS FIXES...
r14295 }
Jonathan Frederic
Add widget subarea style
r14220 }
Jonathan Frederic
Added style for widget modal
r14407
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .widget-combo-btn {
Jonathan Frederic
Halign dict colons
r14610 /* ComboBox Main Button */
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953 min-width : 125px;
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
Jonathan Frederic
Finished style attributes.
r17724 .widget_item .dropdown-menu li a {
color: inherit;
}
Jonathan Frederic
Halign dict colons
r14610 .widget-hbox {
/* Horizontal widgets */
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .hbox();
Jonathan Frederic
Remove forgotten hreadout
r17932 margin: 5px;
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953
input[type="checkbox"] {
margin-top: 9px;
}
Jonathan Frederic
Cleaned up hbox and vbox widget div styles,...
r17929
.widget-label {
/* Horizontal Label */
min-width : 10ex;
padding-right : 8px;
padding-top : 5px;
text-align : right;
vertical-align : text-top;
}
.widget-readout {
padding-left : 8px;
padding-top : 5px;
text-align : left;
vertical-align : text-top;
}
Jonathan Frederic
fix width overriden by 04abbe99
r15006 }
Jonathan Frederic
Halign dict colons
r14610
Jonathan Frederic
fix width overriden by 04abbe99
r15006 .widget-vbox {
/* Vertical widgets */
.vbox();
Jonathan Frederic
Cleaned up hbox and vbox widget div styles,...
r17929
.widget-label {
/* Vertical Label */
padding-bottom : 5px;
text-align : center;
vertical-align : text-bottom;
}
.widget-readout {
/* Vertical Label */
padding-top : 5px;
text-align : center;
vertical-align : text-top;
}
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
Jonathan Frederic
Halign dict colons
r14610
Jonathan Frederic
Added style for widget modal
r14407 .widget-modal {
Jonathan Frederic
s/Container/Box
r17637 /* Box - ModalView */
Jonathan Frederic
Halign dict colons
r14610 overflow : hidden;
position : absolute !important;
top : 0px;
left : 0px;
margin-left : 0px !important;
Jonathan Frederic
Added style for widget modal
r14407 }
Jonathan Frederic
Removed max height from widget modal body
r14411 .widget-modal-body {
Jonathan Frederic
s/Container/Box
r17637 /* Box - ModalView Body */
Jonathan Frederic
Removed max height from widget modal body
r14411 max-height: none !important;
}
Jonathan Frederic
Address Sylvain's comments.
r17658 .widget-box {
Jonathan Frederic
s/Container/Box
r17637 /* Box */
Jonathan Frederic
Added style for widget modal
r14407 .border-box-sizing();
Jonathan Frederic
Added align-start to widget container.
r15267 .align-start();
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 }
Jonathan Frederic
Added a class for RadioButtons container...
r15364 .widget-radio-box {
/* Contains RadioButtonsWidget */
.vbox();
.border-box-sizing();
padding-top: 4px;
Jonathan Frederic
Fix widget widths for Bootstrap3
r16953
label {
margin-top: 0px;
}
Jonathan Frederic
Added a class for RadioButtons container...
r15364 }
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 .docked-widget-modal {
Jonathan Frederic
Halign dict colons
r14610 /* Horizontal Label */
Jonathan Frederic
- Fixed CSS so it also applies to widgets within modals...
r14444 overflow: hidden;
position: relative !important;
top: 0px !important;
left: 0px !important;
margin-left: 0px !important;
Jonathan Frederic
Finished style attributes.
r17724 }