mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-09 23:11:57 +01:00
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 {
|
table.egwGridView_grid tr.subentry:hover {
|
||||||
background: #ffdd73 !important;
|
background: #ffdd73 !important;
|
||||||
}
|
}
|
||||||
|
table.egwGridView_grid tr.drop-hover {
|
||||||
|
background: #ffdd73 !important;
|
||||||
|
}
|
||||||
table.egwGridView_grid span.arrow {
|
table.egwGridView_grid span.arrow {
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -1531,7 +1531,7 @@ option:checked {
|
|||||||
color: #ff0000;
|
color: #ff0000;
|
||||||
}
|
}
|
||||||
.drop-hover {
|
.drop-hover {
|
||||||
background-color: #ffdd73 !important;
|
background-color: #ffdd73;
|
||||||
}
|
}
|
||||||
.ui-icon-close {
|
.ui-icon-close {
|
||||||
/*visibility: hidden;*/
|
/*visibility: hidden;*/
|
||||||
@ -6037,6 +6037,9 @@ table.egwGridView_grid tr.subentry {
|
|||||||
table.egwGridView_grid tr.subentry:hover {
|
table.egwGridView_grid tr.subentry:hover {
|
||||||
background: #ffdd73 !important;
|
background: #ffdd73 !important;
|
||||||
}
|
}
|
||||||
|
table.egwGridView_grid tr.drop-hover {
|
||||||
|
background: #ffdd73 !important;
|
||||||
|
}
|
||||||
table.egwGridView_grid span.arrow {
|
table.egwGridView_grid span.arrow {
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -183,7 +183,7 @@ option:checked {background-color: @egw_color_1_e;}
|
|||||||
}
|
}
|
||||||
|
|
||||||
// used in mail for drag and drop mails
|
// 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{
|
.ui-icon-close{
|
||||||
/*visibility: hidden;*/
|
/*visibility: hidden;*/
|
||||||
|
@ -327,7 +327,10 @@ table.egwGridView_grid{
|
|||||||
|
|
||||||
&:hover {background: @color_selected_row !important;}
|
&:hover {background: @color_selected_row !important;}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tr.drop-hover {
|
||||||
|
background: @color_selected_row !important;
|
||||||
|
}
|
||||||
|
|
||||||
span.arrow {
|
span.arrow {
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
|
Loading…
Reference in New Issue
Block a user