CC-3508 : Double Scrollbar in Show Builder menu
This commit is contained in:
parent
cf4704ad89
commit
6c5eb384a5
6 changed files with 13 additions and 9 deletions
|
@ -87,8 +87,12 @@
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sb-content input.input_text {
|
.sb-content input.input_text.hasDatepicker {
|
||||||
width:100px;
|
width:95px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sb-content input.input_text.hasTimepicker {
|
||||||
|
width:60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sb-starts,
|
.sb-starts,
|
||||||
|
|
|
@ -342,7 +342,7 @@ select {
|
||||||
|
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
margin: 0 20px 0 20px;
|
margin: 0 5px 0 5px;
|
||||||
padding:10px 0 0 0;
|
padding:10px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -622,7 +622,7 @@ dl.inline-list dd {
|
||||||
}
|
}
|
||||||
.dataTables_filter input {
|
.dataTables_filter input {
|
||||||
background: url("images/search_auto_bg.png") no-repeat scroll 0 0 #DDDDDD;
|
background: url("images/search_auto_bg.png") no-repeat scroll 0 0 #DDDDDD;
|
||||||
width: 50%;
|
width: 40%;
|
||||||
border: 1px solid #5B5B5B;
|
border: 1px solid #5B5B5B;
|
||||||
margin-left: -8px;
|
margin-left: -8px;
|
||||||
padding: 5px 3px 4px 25px;
|
padding: 5px 3px 4px 25px;
|
||||||
|
|
|
@ -254,7 +254,8 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
"bJQueryUI": true,
|
"bJQueryUI": true,
|
||||||
"bAutoWidth": false,
|
"bAutoWidth": false,
|
||||||
"oLanguage": {
|
"oLanguage": {
|
||||||
"sSearch": ""
|
"sSearch": "",
|
||||||
|
"sLengthMenu": "Show _MENU_"
|
||||||
},
|
},
|
||||||
|
|
||||||
// R = ColReorder, C = ColVis
|
// R = ColReorder, C = ColVis
|
||||||
|
|
|
@ -739,7 +739,7 @@ var AIRTIME = (function(AIRTIME){
|
||||||
function setWidgetSize() {
|
function setWidgetSize() {
|
||||||
viewport = AIRTIME.utilities.findViewportDimensions();
|
viewport = AIRTIME.utilities.findViewportDimensions();
|
||||||
widgetHeight = viewport.height - 185;
|
widgetHeight = viewport.height - 185;
|
||||||
width = Math.floor(viewport.width - 110);
|
width = Math.floor(viewport.width - 80);
|
||||||
|
|
||||||
var libTableHeight = widgetHeight - 130;
|
var libTableHeight = widgetHeight - 130;
|
||||||
|
|
||||||
|
|
|
@ -817,8 +817,7 @@ var AIRTIME = (function(AIRTIME){
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event.ctrlKey === false) {
|
if (event.ctrlKey === false) {
|
||||||
$sbTable.find('.'+cursorSelClass)
|
$sbTable.find('.'+cursorSelClass).not($tr)
|
||||||
.not($tr)
|
|
||||||
.removeClass(cursorSelClass);
|
.removeClass(cursorSelClass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ AIRTIME = (function(AIRTIME) {
|
||||||
function setWidgetSize() {
|
function setWidgetSize() {
|
||||||
viewport = AIRTIME.utilities.findViewportDimensions();
|
viewport = AIRTIME.utilities.findViewportDimensions();
|
||||||
widgetHeight = viewport.height - 180;
|
widgetHeight = viewport.height - 180;
|
||||||
screenWidth = Math.floor(viewport.width - 120);
|
screenWidth = Math.floor(viewport.width - 90);
|
||||||
|
|
||||||
var libTableHeight = widgetHeight - 130,
|
var libTableHeight = widgetHeight - 130,
|
||||||
builderTableHeight = widgetHeight - 95;
|
builderTableHeight = widgetHeight - 95;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue