mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 16:57:00 -06:00
52 lines
853 B
CSS
52 lines
853 B
CSS
/* Styles for the main browser */
|
|
.browser-pane-container {
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0px;
|
|
width: 100%;
|
|
height: calc(100% - 50px); /* Offset for the nav bar */
|
|
z-index: -1;
|
|
}
|
|
|
|
.browser-browser-pane {
|
|
overflow: auto;
|
|
}
|
|
|
|
.browser-inner-pane {
|
|
padding: 0px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.browser-center-pane {
|
|
overflow: hidden;
|
|
padding: 0px;
|
|
padding-bottom: 50px /* Offset the nav bar to ensure there's enough scroll space */
|
|
}
|
|
|
|
.browser-tab-bar {
|
|
padding-left: 5px;
|
|
padding-top: 5px;
|
|
background-color: #E6E6E6;
|
|
}
|
|
|
|
.browser-tab-panes {
|
|
height: 100%;
|
|
}
|
|
|
|
.browser-tab-pane {
|
|
height: 100%;
|
|
}
|
|
|
|
.browser-tab-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.pgadmin-node-select option {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.aciTree .aciTreeLi div.aciTreeLine {
|
|
display: table !important;
|
|
}
|