mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-02 20:19:27 +01:00
* Preferences: Fix hints are not visible for tabs with scrollbar
This commit is contained in:
parent
7429dac075
commit
63a168573a
@ -10,7 +10,6 @@
|
|||||||
|
|
||||||
table.prefTable {
|
table.prefTable {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||||
background-image:url(../../../api/templates/default/images/hint.png);
|
background-image:url(../../../api/templates/default/images/hint.png);
|
||||||
@ -35,11 +34,10 @@ tr.prefRow > td {
|
|||||||
display: none;
|
display: none;
|
||||||
width: 255px;
|
width: 255px;
|
||||||
max-height: 99%;
|
max-height: 99%;
|
||||||
height: 98%;
|
height: calc(99% - 150px);
|
||||||
background-color: #f0f0ff;
|
background-color: #f0f0ff;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin-top: -4px;
|
top: 80px;
|
||||||
top: 0;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
*/
|
*/
|
||||||
table.prefTable {
|
table.prefTable {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||||
background-image: url(../../../api/templates/default/images/hint.png);
|
background-image: url(../../../api/templates/default/images/hint.png);
|
||||||
@ -50,11 +49,10 @@ tr.prefRow > td {
|
|||||||
display: none;
|
display: none;
|
||||||
width: 255px;
|
width: 255px;
|
||||||
max-height: 99%;
|
max-height: 99%;
|
||||||
height: 98%;
|
height: calc(-51%);
|
||||||
background-color: #f0f0ff;
|
background-color: #f0f0ff;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin-top: -4px;
|
top: 80px;
|
||||||
top: 0;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
@ -138,10 +136,9 @@ tr.prefRow > td {
|
|||||||
display: none;
|
display: none;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
max-height: 99%;
|
max-height: 99%;
|
||||||
height: 97%;
|
height: calc(97% - 150px);
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin-top: -4px;
|
top: 100px;
|
||||||
top: 0;
|
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
border: 2px solid dimgrey;
|
border: 2px solid dimgrey;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -56,10 +56,9 @@ tr.prefRow > td {
|
|||||||
display: none;
|
display: none;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
max-height: 99%;
|
max-height: 99%;
|
||||||
height: 97%;
|
height: ~"calc(97% - 150px)";
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin-top: -4px;
|
top: 100px;
|
||||||
top: 0;
|
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
border: 2px solid dimgrey;
|
border: 2px solid dimgrey;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
Loading…
Reference in New Issue
Block a user