mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix an issue with uneditable text fields containing large amounts of data,
This commit is contained in:
parent
fd05dec29c
commit
9220dcaa97
@ -298,7 +298,7 @@ iframe {
|
|||||||
.pgadmin-controls > .pgadmin-node-select[disabled],
|
.pgadmin-controls > .pgadmin-node-select[disabled],
|
||||||
.pgadmin-controls > input.form-control[disabled],
|
.pgadmin-controls > input.form-control[disabled],
|
||||||
.pgadmin-controls > select.form-control[disabled] {
|
.pgadmin-controls > select.form-control[disabled] {
|
||||||
height: 28px;
|
min-height: 28px;
|
||||||
padding: 3px 6px !important;
|
padding: 3px 6px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -422,10 +422,11 @@ iframe {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pg-prop-content .uneditable-input {
|
.pg-prop-content .uneditable-input {
|
||||||
white-space: nowrap;
|
white-space: initial;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
-o-text-overow: ellipsis;
|
-o-text-overow: ellipsis;
|
||||||
|
height: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control {
|
.form-control {
|
||||||
|
Loading…
Reference in New Issue
Block a user