mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
66 lines
1.9 KiB
CSS
66 lines
1.9 KiB
CSS
/* Overrides/fixes for pgAdmin specific styling */
|
|
|
|
/* Ensure simple forms don't hit the top of the screen */
|
|
body {
|
|
padding-top: 50px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
/* Use the full width of the screen */
|
|
.container {
|
|
width: 100% !important;
|
|
}
|
|
|
|
/* Restyle the Alertify dialogs */
|
|
.alertify .ajs-dialog {
|
|
border: 0px solid rgba(0,0,0,.2);
|
|
}
|
|
|
|
.alertify .ajs-header {
|
|
background-color: #428bca;
|
|
color: #fff;
|
|
}
|
|
|
|
.alertify .ajs-content {
|
|
padding-left: 0 !important;
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
.alertify .ajs-commands button.ajs-maximize {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAK0lEQVQY02P8//8/AzGABUoTUs3IwkAkIEshIw41/8k2kfoK/xOjkJGQiQBkfAYjQxwwQgAAAABJRU5ErkJggg==) !important;
|
|
}
|
|
|
|
.alertify.ajs-modeless.ajs-pinnable .ajs-commands button.ajs-pin {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAArrAAAK6wGCiw1aAAAANElEQVQY02P8//8/AxJA4UABIwMDAwMLLgl0TdgUYgWDROF/HD7/z8DAwMiCxbdwSdq6EQDM+gkiVH1IsgAAAABJRU5ErkJggg==) !important;
|
|
}
|
|
|
|
.alertify .ajs-commands button.ajs-close {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAVElEQVQY05WQuQ0AMQgEB8lN0H9vdhnj4B7ZJwfcJkjsImBCpaIGMMYQIDNjNbe+Su9d1bsee5yM0+AbXMPfkHrdWNKv1ZVn2oJiw5OZ8eABiCrwCW8QwRIof5qAAAAAAElFTkSuQmCC) !important;
|
|
}
|
|
|
|
/* iFrames should have no border */
|
|
iframe {
|
|
border-width: 0;
|
|
}
|
|
|
|
/* Ensure the codemirror editor displays full height gutters when resized */
|
|
.CodeMirror, .CodeMirror-gutters {
|
|
height: 100% !important;
|
|
}
|
|
|
|
/* Padding for the treeview */
|
|
.browser-browser-pane {
|
|
padding-left: 0;
|
|
}
|
|
|
|
/* Alert info panel */
|
|
.alert-info-panel {
|
|
border: 2px solid #a1a1a1;
|
|
margin-top: 2em;
|
|
padding: 5px 5px;
|
|
background: #dddddd;
|
|
border-radius: 5px;
|
|
height: 8em;
|
|
overflow: scroll;
|
|
}
|