##// END OF EJS Templates
Added slider vertical mode, and...
Added slider vertical mode, and fixed hbox element sizing.

File last commit:

r14296:55c13f2c
r14296:55c13f2c
Show More
widgetarea.less
107 lines | 2.4 KiB | text/x-less | LessCssLexer
.widget-area {
page-break-inside: avoid;
.hbox();
.widget-subarea {
padding: 0.44em 0.4em 0.4em 1px;
margin-left: 6px;
.border-box-sizing();
.vbox();
.box-flex2();
.widget-label {
min-width: 10ex;
padding-right: 8px;
text-align: right;
vertical-align: text-top;
padding-top: 3px;
}
.widget-hslider {
padding-left: 8px;
padding-right: 5px;
margin-top: 11px;
width: 348px;
height: 5px !important;
overflow: visible !important;
border: 1px solid #CCCCCC;
background: #FFFFFF;
.corner-all();
.ui-slider {
border: 0px !important;
background: none !important;
.ui-slider-handle {
width: 14px !important;
height: 28px !important;
margin-top: -7px !important;
}
}
}
.widget-vslider {
border: 1px solid #CCCCCC;
background: #FFFFFF;
height: 100%;
width: 5px;
margin-left: 12px;
padding-bottom: 14px;
.corner-all();
.ui-slider {
border: 0px !important;
background: none !important;
margin-left: -4px;
height: 100%;
margin-top: 5px;
.ui-slider-handle {
width: 28px !important;
height: 14px !important;
margin-left: -15px;
}
}
}
.widget-text {
width: 350px;
margin-bottom: 0px;
}
.widget-numeric-text {
width: 150px;
}
.widget-combo-btn {
min-width: 138px; /* + 26px drop arrow btn = 164px */
height: 30px;
}
.widget-container {
.border-box-sizing();
}
.widget-hbox {
.hbox();
.start();
.widget-container();
margin: 5px;
}
.widget-hbox-single {
.widget-hbox();
height: 30px;
}
.widget-hbox-vsingle {
.widget-hbox();
width: 30px;
height: 250px;
}
}
}