forked from extern/egroupware
* 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 {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||
background-image:url(../../../api/templates/default/images/hint.png);
|
||||
@ -35,11 +34,10 @@ tr.prefRow > td {
|
||||
display: none;
|
||||
width: 255px;
|
||||
max-height: 99%;
|
||||
height: 98%;
|
||||
height: calc(99% - 150px);
|
||||
background-color: #f0f0ff;
|
||||
padding: 5px;
|
||||
margin-top: -4px;
|
||||
top: 0;
|
||||
top: 80px;
|
||||
overflow-y: auto;
|
||||
z-index: 1;
|
||||
}
|
||||
|
@ -22,7 +22,6 @@
|
||||
*/
|
||||
table.prefTable {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||
background-image: url(../../../api/templates/default/images/hint.png);
|
||||
@ -50,11 +49,10 @@ tr.prefRow > td {
|
||||
display: none;
|
||||
width: 255px;
|
||||
max-height: 99%;
|
||||
height: 98%;
|
||||
height: calc(-51%);
|
||||
background-color: #f0f0ff;
|
||||
padding: 5px;
|
||||
margin-top: -4px;
|
||||
top: 0;
|
||||
top: 80px;
|
||||
overflow-y: auto;
|
||||
z-index: 1;
|
||||
}
|
||||
@ -138,10 +136,9 @@ tr.prefRow > td {
|
||||
display: none;
|
||||
width: 250px;
|
||||
max-height: 99%;
|
||||
height: 97%;
|
||||
height: calc(97% - 150px);
|
||||
padding: 5px;
|
||||
margin-top: -4px;
|
||||
top: 0;
|
||||
top: 100px;
|
||||
z-index: 1;
|
||||
border: 2px solid dimgrey;
|
||||
border-radius: 5px;
|
||||
|
@ -56,10 +56,9 @@ tr.prefRow > td {
|
||||
display: none;
|
||||
width: 250px;
|
||||
max-height: 99%;
|
||||
height: 97%;
|
||||
height: ~"calc(97% - 150px)";
|
||||
padding: 5px;
|
||||
margin-top: -4px;
|
||||
top: 0;
|
||||
top: 100px;
|
||||
z-index: 1;
|
||||
border: 2px solid dimgrey;
|
||||
border-radius: 5px;
|
||||
|
Loading…
Reference in New Issue
Block a user