forked from extern/egroupware
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:
parent
5e30ceb669
commit
cc2a7f7d64
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;*/
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user