Fixed select menu styling and eliminated ColVis fade time
This commit is contained in:
parent
604b81071c
commit
f7733757f6
3 changed files with 19 additions and 16 deletions
|
@ -127,7 +127,6 @@
|
||||||
border: 1px solid #5b5b5b;
|
border: 1px solid #5b5b5b;
|
||||||
background: #4a4a4a ;
|
background: #4a4a4a ;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
text-shadow: #343434 0px -1px;
|
|
||||||
}
|
}
|
||||||
.ui-widget-header a {
|
.ui-widget-header a {
|
||||||
color: #444444;
|
color: #444444;
|
||||||
|
|
|
@ -1041,6 +1041,11 @@ button.ColVis_Button.ColVis_ShowAll {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ColVis_Button {
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
.library_toolbar .ui-button, .ColVis.TableTools .ui-button {
|
.library_toolbar .ui-button, .ColVis.TableTools .ui-button {
|
||||||
float: right;
|
float: right;
|
||||||
text-align:center;
|
text-align:center;
|
||||||
|
@ -3739,3 +3744,15 @@ hr {
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a
|
||||||
|
{
|
||||||
|
background: #ff5d1a;
|
||||||
|
color: #333;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li .ui-state-hover {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -449,20 +449,6 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
/*
|
/*
|
||||||
* Icon hover states in the toolbar.
|
* Icon hover states in the toolbar.
|
||||||
*/
|
*/
|
||||||
$libContent.on("mouseenter", ".fg-toolbar ul li", function(ev) {
|
|
||||||
$el = $(this);
|
|
||||||
|
|
||||||
if (!$el.hasClass("ui-state-disabled")) {
|
|
||||||
$el.addClass("ui-state-hover");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
$libContent.on("mouseleave", ".fg-toolbar ul li", function(ev) {
|
|
||||||
$el = $(this);
|
|
||||||
|
|
||||||
if (!$el.hasClass("ui-state-disabled")) {
|
|
||||||
$el.removeClass("ui-state-hover");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var colReorderMap = new Array();
|
var colReorderMap = new Array();
|
||||||
|
|
||||||
|
@ -783,7 +769,8 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
"aiExclude": [0, 1, 2, 31],
|
"aiExclude": [0, 1, 2, 31],
|
||||||
"sSize": "css",
|
"sSize": "css",
|
||||||
"fnStateChange": setFilterElement,
|
"fnStateChange": setFilterElement,
|
||||||
"buttonText": $.i18n._("Columns")
|
"buttonText": $.i18n._("Columns"),
|
||||||
|
"iOverlayFade": 0
|
||||||
},
|
},
|
||||||
|
|
||||||
"oColReorder": {
|
"oColReorder": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue