2015-02-06 13:15:36 +00:00
|
|
|
/* Overrides/fixes for pgAdmin specific styling */
|
2015-01-28 15:57:03 +00:00
|
|
|
|
2015-02-26 10:06:22 +00:00
|
|
|
/* Ensure simple forms don't hit the top of the screen */
|
|
|
|
|
body {
|
|
|
|
|
padding-top: 50px;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-28 18:02:13 +00:00
|
|
|
/* Use the full width of the screen */
|
|
|
|
|
.container {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-28 15:57:03 +00:00
|
|
|
/* Restyle the Alertify dialogs */
|
|
|
|
|
.alertify .ajs-dialog {
|
|
|
|
|
border: 0px solid rgba(0,0,0,.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alertify .ajs-header {
|
|
|
|
|
background-color: #428bca;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2015-02-06 13:15:36 +00:00
|
|
|
|
2015-02-15 17:10:53 -05:00
|
|
|
.alertify .ajs-content {
|
|
|
|
|
padding-left: 0 !important;
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-26 10:06:22 +00:00
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 13:15:36 +00:00
|
|
|
/* iFrames should have no border */
|
|
|
|
|
iframe {
|
|
|
|
|
border-width: 0;
|
|
|
|
|
}
|
2015-02-13 13:13:36 +00:00
|
|
|
|
|
|
|
|
/* Ensure the codemirror editor displays full height gutters when resized */
|
|
|
|
|
.CodeMirror, .CodeMirror-gutters {
|
|
|
|
|
height: 100% !important;
|
|
|
|
|
}
|
2015-02-13 13:24:13 +00:00
|
|
|
|
|
|
|
|
/* Padding for the treeview */
|
|
|
|
|
.browser-browser-pane {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-15 17:10:53 -05:00
|
|
|
/* 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;
|
2015-02-26 10:06:22 +00:00
|
|
|
}
|