File size: 759 Bytes
ae01f49 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | /* 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-panes {
height: 100%;
}
.browser-tab-pane {
height: 100%;
}
.browser-tab-content {
width: 100%;
height: 100%;
}
.pgadmin-node-select option {
padding-left: 20px;
}
.pg-login-icon {
font-size: 16px;
}
.pgadmin_header_logo {
cursor: default;
}
|