mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
Added support for indent guides in the browser tree. Fixes #4596
This commit is contained in:
parent
72e5d4b426
commit
9fd9ca2673
@ -9,6 +9,7 @@ This release contains a number of bug fixes and new features since the release o
|
||||
New features
|
||||
************
|
||||
|
||||
| `Issue #4596 <https://redmine.postgresql.org/issues/4596>`_ - Added support for indent guides in the browser tree.
|
||||
| `Issue #6081 <https://redmine.postgresql.org/issues/6081>`_ - Added support for advanced table fields like the foreign key, primary key in the ERD tool.
|
||||
| `Issue #6529 <https://redmine.postgresql.org/issues/6529>`_ - Added index creation when generating SQL in the ERD tool.
|
||||
| `Issue #6657 <https://redmine.postgresql.org/issues/6657>`_ - Added support for authentication via the webserver (REMOTE_USER).
|
||||
|
@ -26,9 +26,28 @@
|
||||
align-items: center;
|
||||
white-space: nowrap;
|
||||
padding: 2px 0;
|
||||
padding-left: 2px;
|
||||
cursor: pointer !important;
|
||||
color: $tree-text-fg !important;
|
||||
&:before {
|
||||
content: '';
|
||||
background: $color-gray-light;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 100%;
|
||||
box-shadow: -16px 0 0 0 $color-gray-light,
|
||||
-32px 0 0 0 $color-gray-light,
|
||||
-48px 0 0 0 $color-gray-light,
|
||||
-64px 0 0 0 $color-gray-light,
|
||||
-80px 0 0 0 $color-gray-light,
|
||||
-96px 0 0 0 $color-gray-light,
|
||||
-112px 0 0 0 $color-gray-light,
|
||||
-128px 0 0 0 $color-gray-light,
|
||||
-144px 0 0 0 $color-gray-light,
|
||||
-160px 0 0 0 $color-gray-light,
|
||||
-176px 0 0 0 $color-gray-light,
|
||||
-192px 0 0 0 $color-gray-light,
|
||||
-208px 0 0 0 $color-gray-light;
|
||||
}
|
||||
&:hover, &.pseudo-active {
|
||||
background-color: $tree-bg-hover !important;
|
||||
color: $tree-fg-hover !important;
|
||||
|
Loading…
Reference in New Issue
Block a user