More specific approach to fix the drag hover color selection issue, as the previous approach had potential to break other drop hover in other apps, eg. Calendar d-n-d.

This commit is contained in:
Hadi Nategh 2015-11-05 15:54:17 +00:00
parent 5e30ceb669
commit cc2a7f7d64
4 changed files with 12 additions and 3 deletions

View File

@ -6048,6 +6048,9 @@ table.egwGridView_grid tr.subentry {
table.egwGridView_grid tr.subentry:hover {
background: #ffdd73 !important;
}
table.egwGridView_grid tr.drop-hover {
background: #ffdd73 !important;
}
table.egwGridView_grid span.arrow {
-moz-user-select: none;
background-repeat: no-repeat;

View File

@ -1531,7 +1531,7 @@ option:checked {
color: #ff0000;
}
.drop-hover {
background-color: #ffdd73 !important;
background-color: #ffdd73;
}
.ui-icon-close {
/*visibility: hidden;*/
@ -6037,6 +6037,9 @@ table.egwGridView_grid tr.subentry {
table.egwGridView_grid tr.subentry:hover {
background: #ffdd73 !important;
}
table.egwGridView_grid tr.drop-hover {
background: #ffdd73 !important;
}
table.egwGridView_grid span.arrow {
-moz-user-select: none;
background-repeat: no-repeat;

View File

@ -183,7 +183,7 @@ option:checked {background-color: @egw_color_1_e;}
}
// used in mail for drag and drop mails
.drop-hover {background-color: @egw_color_1_e !important;}
.drop-hover {background-color: @egw_color_1_e}
.ui-icon-close{
/*visibility: hidden;*/

View File

@ -327,7 +327,10 @@ table.egwGridView_grid{
&:hover {background: @color_selected_row !important;}
}
tr.drop-hover {
background: @color_selected_row !important;
}
span.arrow {
-moz-user-select: none;