mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
Increase the width of the scrollbars. Fixes #6978
This commit is contained in:
parent
c7a49490a2
commit
950809ee55
@ -27,6 +27,7 @@ Bug fixes
|
|||||||
| `Issue #6906 <https://redmine.postgresql.org/issues/6906>`_ - Fixed an issue where referenced table drop-down should be disabled in foreign key -> columns after one row is added.
|
| `Issue #6906 <https://redmine.postgresql.org/issues/6906>`_ - Fixed an issue where referenced table drop-down should be disabled in foreign key -> columns after one row is added.
|
||||||
| `Issue #6955 <https://redmine.postgresql.org/issues/6955>`_ - Ensure that sort order should be maintained when renaming a server group.
|
| `Issue #6955 <https://redmine.postgresql.org/issues/6955>`_ - Ensure that sort order should be maintained when renaming a server group.
|
||||||
| `Issue #6963 <https://redmine.postgresql.org/issues/6963>`_ - Ensure that the user should be allowed to set the schema of an extension while creating it.
|
| `Issue #6963 <https://redmine.postgresql.org/issues/6963>`_ - Ensure that the user should be allowed to set the schema of an extension while creating it.
|
||||||
|
| `Issue #6978 <https://redmine.postgresql.org/issues/6978>`_ - Increase the width of the scrollbars.
|
||||||
| `Issue #6986 <https://redmine.postgresql.org/issues/6986>`_ - Fixed an issue where the user can't debug function with timestamp parameter.
|
| `Issue #6986 <https://redmine.postgresql.org/issues/6986>`_ - Fixed an issue where the user can't debug function with timestamp parameter.
|
||||||
| `Issue #6989 <https://redmine.postgresql.org/issues/6989>`_ - Fixed an issue where the Change Password menu option is missing for internal authentication source when more than one authentication source is defined.
|
| `Issue #6989 <https://redmine.postgresql.org/issues/6989>`_ - Fixed an issue where the Change Password menu option is missing for internal authentication source when more than one authentication source is defined.
|
||||||
| `Issue #7005 <https://redmine.postgresql.org/issues/7005>`_ - Fixed an issue where On-demand rows throw an error when any row cell is edited and saved it then scroll to get more rows.
|
| `Issue #7005 <https://redmine.postgresql.org/issues/7005>`_ - Fixed an issue where On-demand rows throw an error when any row cell is edited and saved it then scroll to get more rows.
|
||||||
|
@ -1099,22 +1099,23 @@ textarea {
|
|||||||
/* Webkit customizations */
|
/* Webkit customizations */
|
||||||
|
|
||||||
::-webkit-scrollbar, ::-webkit-scrollbar-corner {
|
::-webkit-scrollbar, ::-webkit-scrollbar-corner {
|
||||||
width: $scrollbar-width;
|
width: $scrollbar-width !important;
|
||||||
height: $scrollbar-width;
|
height: $scrollbar-width !important;
|
||||||
background-color: rgba($scrollbar-base-color, 0.2);
|
background-color: rgba($scrollbar-base-color, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
border: 0.25rem solid transparent;
|
border: 0.25rem solid transparent;
|
||||||
border-radius: $border-radius*2;
|
border-radius: $border-radius*2;
|
||||||
background-clip: content-box;
|
|
||||||
background-color: rgba($scrollbar-base-color, 0.7);
|
background-color: rgba($scrollbar-base-color, 0.7);
|
||||||
background: rgba($scrollbar-base-color, 0.7) !important;
|
background: rgba($scrollbar-base-color, 0.7) !important;
|
||||||
|
background-clip: content-box !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb:hover {
|
::-webkit-scrollbar-thumb:hover {
|
||||||
background-color: $scrollbar-base-color;
|
border: 0.25rem solid transparent;
|
||||||
background: $scrollbar-base-color !important;
|
background-color: $scrollbar-base-color !important;
|
||||||
|
ackground-clip: content-box !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user