latest pixelegg changes

This commit is contained in:
Ralf Becker 2014-02-12 17:28:01 +00:00
parent 432c076aee
commit ebbedf9a37
3 changed files with 5 additions and 9 deletions

View File

@ -1370,13 +1370,13 @@ span.ui-icon-search {
color: #1e1e1e; color: #1e1e1e;
} }
.ui-dialog-buttonset button.ui-button-text-only { .ui-dialog-buttonset button.ui-button-text-only {
background-color: #cdcdcd !important; background-color: #cdcdcd;
background: inherit; background: inherit;
color: #000000 !important; color: #000000 !important;
font-weight: normal !important; font-weight: normal !important;
} }
.ui-dialog-buttonset button.ui-button-text-only:hover { .ui-dialog-buttonset button.ui-button-text-only:hover {
background-color: #b4b4b4 !important; background-color: #b4b4b4;
} }
/*###########################################*/ /*###########################################*/
/*Dialog: calendar edit series*/ /*Dialog: calendar edit series*/

View File

@ -104,7 +104,7 @@ egw_LAB.wait(function() {
// ADD // ADD Button
function add_quick_Listeners(){ function add_quick_Listeners(){
@ -112,11 +112,7 @@ egw_LAB.wait(function() {
// ADD // ADD
document.getElementById('quick_add').addEventListener("mouseover",quick_add_func_over,false); document.getElementById('quick_add').addEventListener("mouseover",quick_add_func_over,false);
document.getElementById('quick_add').addEventListener("mouseout",quick_add_func_out,false); document.getElementById('quick_add').addEventListener("mouseout",quick_add_func_out,false);
} else if (window.attachEvent){ // Added For Inetenet Explorer versions previous to IE9 } else if (window.attachEvent){ // Added For Inetenet Explorer versions previous to IE9
document.getElementById('quick_add').attachEvent("onmouseover",quick_add_func_over); document.getElementById('quick_add').attachEvent("onmouseover",quick_add_func_over);
document.getElementById('quick_add').attachEvent("onmouseout",quick_add_func_out); document.getElementById('quick_add').attachEvent("onmouseout",quick_add_func_out);
} }

View File

@ -267,12 +267,12 @@ span.ui-icon-search{
&:hover{ background-color: @gray_30; color: @gray_90;} &:hover{ background-color: @gray_30; color: @gray_90;}
} }
button.ui-button-text-only {background-color: @gray_20 !important; button.ui-button-text-only {background-color: @gray_20;
background: inherit; background: inherit;
color: @gray_100 !important; color: @gray_100 !important;
font-weight: normal !important; font-weight: normal !important;
&:hover{ background-color: @gray_30 !important;} &:hover{ background-color: @gray_30;}
} }
} }