mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Render column headers at the correct width in the query tool under Firefox. Fixes #1680
This commit is contained in:
parent
54b35c711d
commit
b7c819e912
@ -362,7 +362,7 @@ li {
|
||||
|
||||
#datagrid .slick-header .slick-header-column.ui-state-default {
|
||||
color: #fff;
|
||||
padding: 4px 6px;
|
||||
padding: 4px 0 4px 6px;
|
||||
}
|
||||
|
||||
.long_text_editor {
|
||||
@ -424,3 +424,15 @@ input.editor-checkbox {
|
||||
#datagrid div.slick-header.ui-state-default {
|
||||
background: #2c76b4;
|
||||
}
|
||||
|
||||
/*
|
||||
SlickGrid, To fix the issue of width misalignment between Column Header &
|
||||
actual Column in Mozilla Firefox browser
|
||||
Ref: https://github.com/mleibman/SlickGrid/issues/742
|
||||
*/
|
||||
.slickgrid, .slickgrid *, .slick-header-column {
|
||||
box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box;
|
||||
-ms-box-sizing: content-box;
|
||||
}
|
Loading…
Reference in New Issue
Block a user