2015-02-06 07:15:36 -06:00
|
|
|
/* Overrides/fixes for pgAdmin specific styling */
|
2015-01-28 09:57:03 -06:00
|
|
|
|
2015-02-26 04:06:22 -06:00
|
|
|
/* Ensure simple forms don't hit the top of the screen */
|
|
|
|
body {
|
2018-09-04 05:24:51 -05:00
|
|
|
font-family: $font-family-primary;
|
2015-02-26 04:06:22 -06:00
|
|
|
padding-top: 50px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2016-08-18 10:51:09 -05:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.pg-navbar {
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-navbar .navbar-brand {
|
|
|
|
padding: 10px 15px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-navbar .navbar-nav > li > a {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-docker {
|
|
|
|
top: 40px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-30 08:02:01 -06:00
|
|
|
.pg-navbar {
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
2016-08-18 10:51:09 -05:00
|
|
|
.pg-docker {
|
|
|
|
position:absolute;
|
|
|
|
left:0px;
|
|
|
|
right:0px;
|
|
|
|
top:50px;
|
|
|
|
bottom:0px;
|
|
|
|
}
|
|
|
|
|
2015-06-30 00:51:55 -05:00
|
|
|
.app-icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
|
|
|
|
2015-01-28 12:02:13 -06:00
|
|
|
/* Use the full width of the screen */
|
|
|
|
.container {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2015-07-20 05:36:17 -05:00
|
|
|
|
2018-08-29 07:50:45 -05:00
|
|
|
.pg-panel-content {
|
|
|
|
position:absolute;
|
|
|
|
top:0px;
|
|
|
|
left:0px;
|
|
|
|
right:0px;
|
|
|
|
bottom:0px;
|
|
|
|
height: 100%!important;
|
|
|
|
}
|
2015-07-20 05:36:17 -05:00
|
|
|
|
2015-02-06 07:15:36 -06:00
|
|
|
/* iFrames should have no border */
|
|
|
|
iframe {
|
|
|
|
border-width: 0;
|
|
|
|
}
|
2015-02-13 07:13:36 -06:00
|
|
|
|
2015-02-13 07:24:13 -06:00
|
|
|
/* Padding for the treeview */
|
|
|
|
.browser-browser-pane {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2015-03-13 05:35:12 -05:00
|
|
|
/* Disabled menu items */
|
|
|
|
.mnu-disabled {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-gray !important;
|
2015-03-13 05:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-07-24 06:13:24 -05:00
|
|
|
* Bootstrap 3 remove submenus as they don't work overly well on Mobile. The
|
2015-03-13 05:35:12 -05:00
|
|
|
* following CSS adds them back in - for our purposes they actually work fine
|
|
|
|
* on Mobile and are perfectly responsive
|
|
|
|
*/
|
|
|
|
.dropdown-submenu {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu>.dropdown-menu {
|
2016-03-15 07:30:01 -05:00
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
|
|
|
margin-top: -6px;
|
|
|
|
margin-left: -1px;
|
|
|
|
-webkit-border-radius: 0 6px 6px 6px;
|
|
|
|
-moz-border-radius: 0 6px 6px 6px;
|
|
|
|
border-radius: 0 6px 6px 6px;
|
2015-03-13 05:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu:hover>.dropdown-menu {
|
2016-03-15 07:30:01 -05:00
|
|
|
display: block;
|
2015-03-13 05:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu>a:after {
|
2016-03-15 07:30:01 -05:00
|
|
|
display: block;
|
2015-03-13 05:35:12 -05:00
|
|
|
content:" ";
|
2016-03-15 07:30:01 -05:00
|
|
|
float: right;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 0 5px 5px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-left-color: $color-gray-light;
|
2016-03-15 07:30:01 -05:00
|
|
|
margin-top: 5px;
|
2017-09-15 08:45:02 -05:00
|
|
|
margin-right: -10px;
|
2015-03-13 05:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu:hover>a:after {
|
2018-09-04 05:24:51 -05:00
|
|
|
border-left-color: $color-bg;
|
2015-03-13 05:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu.pull-left {
|
2016-03-15 07:30:01 -05:00
|
|
|
float: none;
|
2015-03-13 05:35:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-submenu.pull-left>.dropdown-menu {
|
2016-03-15 07:30:01 -05:00
|
|
|
left: -100%;
|
|
|
|
margin-left: 10px;
|
|
|
|
-webkit-border-radius: 6px 0 6px 6px;
|
|
|
|
-moz-border-radius: 6px 0 6px 6px;
|
|
|
|
border-radius: 6px 0 6px 6px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-inverse > li > a,
|
|
|
|
.navbar-inverse .navbar-nav > li > a {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-inverse .navbar-brand {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-brand;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
2015-07-14 02:45:59 -05:00
|
|
|
.navbar-inverse .navbar-brand:hover {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-brand;
|
2015-07-14 02:45:59 -05:00
|
|
|
}
|
|
|
|
|
2017-04-18 09:09:09 -05:00
|
|
|
.navbar-inverse .navbar-brand:focus {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-brand;
|
2017-04-18 09:09:09 -05:00
|
|
|
}
|
|
|
|
|
2017-06-07 07:57:49 -05:00
|
|
|
.navbar-inverse .navbar-nav > .open > a,
|
|
|
|
.navbar-inverse .navbar-nav > .active > a,
|
|
|
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
|
|
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-gray-dark none;
|
2017-06-07 07:57:49 -05:00
|
|
|
}
|
|
|
|
|
2015-06-30 00:51:55 -05:00
|
|
|
.dropdown-menu > hr {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu > li > a > i {
|
|
|
|
margin-left: -17px;
|
2017-04-14 05:23:25 -05:00
|
|
|
width: 13px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu > li > a > span {
|
|
|
|
padding-left: 3px;
|
2016-04-13 03:58:38 -05:00
|
|
|
cursor:pointer;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu > li > a > .has-icon {
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
|
2017-06-07 07:57:49 -05:00
|
|
|
.dropdown-menu > li > a:hover,
|
|
|
|
.dropdown-menu > li > a:focus {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
|
|
|
background: $color-gray-dark none;
|
2017-06-07 07:57:49 -05:00
|
|
|
}
|
|
|
|
|
2015-06-30 00:51:55 -05:00
|
|
|
.form-group fieldset {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2015-06-30 00:51:55 -05:00
|
|
|
padding: 0px 0px 0px 5px;
|
|
|
|
border-width: 1px;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 2px;
|
|
|
|
margin-bottom: 2px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-gray-lighter;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-group legend {
|
|
|
|
padding: 0.1em 0.5em;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
margin-left: 0;
|
|
|
|
text-align: left;
|
|
|
|
width: 95%;
|
|
|
|
font-size: 105%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-group .fieldset-content {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .backform-tab {
|
2015-08-11 08:49:27 -05:00
|
|
|
position: absolute;
|
2016-05-16 08:35:36 -05:00
|
|
|
margin: 0px 0px 75px;
|
2015-08-11 08:49:27 -05:00
|
|
|
padding: 0px;
|
|
|
|
top: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .backform-tab > .tab-content {
|
|
|
|
padding: 0px;
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 100%;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.backform-tab .tab-pane {
|
2015-08-11 08:49:27 -05:00
|
|
|
padding: 7px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-group fieldset .caret {
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-top: -2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-top: 5px solid;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-group fieldset .collapsed .caret {
|
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
border-top: 5px solid transparent;
|
|
|
|
border-left: 5px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pgadmin-control {
|
|
|
|
padding: 0px 15px 5px 15px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
display: inline-block;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .pgadmin-control .uneditable-input {
|
|
|
|
border: 0px !important;
|
|
|
|
-webkit-box-shadow: none !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
-webkit-transition: none !important;
|
|
|
|
-o-transition: none !important;
|
|
|
|
transition: none !important;
|
|
|
|
background-color: transparent !important;
|
|
|
|
height: 20px;
|
|
|
|
padding: 0px;
|
|
|
|
margin-top: 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .set-group {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pgadmin-control-group {
|
|
|
|
margin: 0px;
|
2015-07-23 08:01:56 -05:00
|
|
|
padding: 2px 0px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.control-label {
|
|
|
|
margin: 0px;
|
2018-03-23 04:57:37 -05:00
|
|
|
padding: 5px 25px 5px 5px;
|
2015-06-30 00:51:55 -05:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pgadmin-controls {
|
|
|
|
padding-right: 3px;
|
|
|
|
padding-left: 3px;
|
|
|
|
}
|
2016-04-13 06:24:46 -05:00
|
|
|
.pgadmin-controls.SQL {
|
|
|
|
padding-right: 3px;
|
|
|
|
padding-left: 1px;
|
2016-12-16 07:04:16 -06:00
|
|
|
height: 100%;
|
2016-04-13 06:24:46 -05:00
|
|
|
}
|
2016-03-10 09:31:43 -06:00
|
|
|
.pgadmin-controls > textarea.form-control,
|
|
|
|
.pgadmin-controls > textarea.form-control[disabled] {
|
|
|
|
min-width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.pgadmin-controls > div.checkbox, .pgadmin-controls > div.checkbox[disabled] {
|
|
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pgadmin-controls > .uneditable-input, .pgadmin-controls > .pgadmin-node-select,
|
|
|
|
.pgadmin-controls > input.form-control, .pgadmin-controls > select.form-control,
|
|
|
|
.pgadmin-controls > .uneditable-input[disabled],
|
|
|
|
.pgadmin-controls > .pgadmin-node-select[disabled],
|
|
|
|
.pgadmin-controls > input.form-control[disabled],
|
|
|
|
.pgadmin-controls > select.form-control[disabled] {
|
2016-03-14 04:31:36 -05:00
|
|
|
min-height: 28px;
|
2016-03-10 09:31:43 -06:00
|
|
|
padding: 3px 6px !important;
|
|
|
|
}
|
2015-06-30 00:51:55 -05:00
|
|
|
|
2016-05-21 05:11:35 -05:00
|
|
|
.pgadmin-controls > span.select2 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-06-30 00:51:55 -05:00
|
|
|
.obj_properties fieldset > div > .pgadmin-control-group > label {
|
2016-05-16 09:20:49 -05:00
|
|
|
min-height: 28px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties fieldset > .fieldset-content {
|
2016-04-07 07:40:16 -05:00
|
|
|
border-radius:5px;
|
|
|
|
padding: 5px 10px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-primary-lighter;
|
2016-04-07 07:40:16 -05:00
|
|
|
border-width: 2px;
|
|
|
|
border-style: ridge;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .badge {
|
2016-04-07 07:40:16 -05:00
|
|
|
display: block;
|
|
|
|
text-align: left;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 1px;
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-primary;
|
2016-04-07 07:40:16 -05:00
|
|
|
border-radius:5px;
|
|
|
|
padding: 5px 7px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .badge .caret {
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
margin-left: 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-top: 5px solid;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
margin-top: -2px;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .collapsed .caret {
|
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
border-top: 5px solid transparent;
|
|
|
|
border-left: 5px solid;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-top: -2.5px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties table {
|
2016-04-07 07:40:16 -05:00
|
|
|
display: table !important;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties table tr {
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 0px $color-bg solid;
|
2015-06-30 00:51:55 -05:00
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .pgadmin-properties {
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px $color-gray-dark solid;
|
2015-06-30 00:51:55 -05:00
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0.2px 2px 2px 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties table .spacer {
|
|
|
|
height: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties table td {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group {
|
2016-04-08 05:58:47 -05:00
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group button {
|
|
|
|
padding: 5px;
|
2015-07-14 02:45:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group-below {
|
2016-04-08 05:58:47 -05:00
|
|
|
text-align: right;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-gray-light;
|
2015-07-22 07:26:17 -05:00
|
|
|
border-width: 2px 1px 0px;
|
|
|
|
border-style: inset;
|
|
|
|
border-left-style: solid
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
2016-04-25 11:36:39 -05:00
|
|
|
.pg-prop-btn-group > button {
|
2016-04-25 01:23:48 -05:00
|
|
|
margin: 2px 3px 2px 0px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
2016-04-25 11:36:39 -05:00
|
|
|
.pg-prop-btn-group > button:first-child {
|
2016-04-25 01:23:48 -05:00
|
|
|
margin-left: 3px;
|
2016-04-08 05:58:47 -05:00
|
|
|
}
|
|
|
|
|
2016-04-25 11:36:39 -05:00
|
|
|
.pg-prop-btn-group > button:last-child {
|
2016-04-25 01:23:48 -05:00
|
|
|
margin-right: 3px;
|
2016-04-08 05:58:47 -05:00
|
|
|
}
|
2016-08-03 07:38:12 -05:00
|
|
|
.btn-group-sm>.btn, .btn-sm{
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 3px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group > .btn {
|
|
|
|
min-width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group > .btn-group > .btn {
|
|
|
|
min-width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group > .btn-group > .btn + .dropdown-toggle {
|
|
|
|
min-width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group button.dropdown-toggle {
|
|
|
|
padding-left: 5px !important;
|
|
|
|
padding-right: 5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group .dropdown-menu {
|
|
|
|
min-width: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-btn-group .backgrid-filter.form-search {
|
|
|
|
position: relative;
|
|
|
|
width: 248px;
|
|
|
|
height: 30px;
|
|
|
|
float: right;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2016-04-08 05:58:47 -05:00
|
|
|
|
2015-06-30 00:51:55 -05:00
|
|
|
.pg-prop-content {
|
|
|
|
position: absolute;
|
|
|
|
overflow: auto;
|
2015-07-22 07:26:17 -05:00
|
|
|
padding-bottom: 7px;
|
2015-07-21 23:16:11 -05:00
|
|
|
padding-top: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
2016-04-18 02:08:53 -05:00
|
|
|
height: 100%;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
2016-04-18 02:08:53 -05:00
|
|
|
/* A generic class to make the overflow hidden of a DOM element */
|
|
|
|
.pg-no-overflow {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-14 02:45:59 -05:00
|
|
|
.pg-prop-has-btn-group-below {
|
2015-07-22 07:26:17 -05:00
|
|
|
margin-bottom: 33px;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
2015-07-14 02:45:59 -05:00
|
|
|
.has-pg-prop-btn-group {
|
2016-04-18 02:08:53 -05:00
|
|
|
top: 39px;
|
|
|
|
padding-top: 8px;
|
|
|
|
height: calc(100% - 39px);
|
2015-07-14 02:45:59 -05:00
|
|
|
}
|
2015-06-30 00:51:55 -05:00
|
|
|
|
|
|
|
.pg-prop-content > div {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-content .uneditable-input {
|
2016-03-14 04:31:36 -05:00
|
|
|
white-space: initial;
|
2015-06-30 00:51:55 -05:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
-o-text-overow: ellipsis;
|
2016-03-14 04:31:36 -05:00
|
|
|
height: auto !important;
|
2015-06-30 00:51:55 -05:00
|
|
|
}
|
|
|
|
|
2015-07-23 08:01:56 -05:00
|
|
|
.form-control {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-gray-dark;
|
2016-04-15 09:30:27 -05:00
|
|
|
padding: 3px 6px;
|
2015-07-23 08:01:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-control[disabled],
|
|
|
|
.form-control[readonly],
|
|
|
|
fieldset[disabled] .form-control {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-gray-dark;
|
2015-07-23 08:01:56 -05:00
|
|
|
}
|
2015-10-20 02:03:18 -05:00
|
|
|
|
|
|
|
.highlight {
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 5px;
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
|
|
|
border: 1px solid $color-gray-lighter;
|
2015-10-20 02:03:18 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-fa::before {
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
text-rendering: auto;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
transform: translate(0, 0);
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: -18px;
|
|
|
|
margin-right: 9px;
|
|
|
|
}
|
2015-10-28 12:06:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
/* Sub-Node */
|
|
|
|
|
|
|
|
.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
|
|
|
|
border-bottom-width: 1px;
|
2016-12-19 03:21:49 -06:00
|
|
|
padding: 3px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.subnode > table.backgrid{
|
2016-03-15 07:30:01 -05:00
|
|
|
width: 100%;
|
|
|
|
margin: 0px;
|
2015-12-17 07:48:42 -06:00
|
|
|
padding: 0;
|
2016-03-15 07:30:01 -05:00
|
|
|
margin-bottom: 15px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > thead th{
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-primary;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > thead > th, .backgrid > tbody > td {
|
2016-04-07 07:40:16 -05:00
|
|
|
line-height: 18px;
|
2016-03-15 09:12:20 -05:00
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > thead > th {
|
2016-03-15 09:12:20 -05:00
|
|
|
letter-spacing:0.5px
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > tbody > td {
|
2015-12-17 07:48:42 -06:00
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > thead th a {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
2016-12-19 03:21:49 -06:00
|
|
|
font-size: 12px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid > th.object {
|
|
|
|
width: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-cell, .delete-cell {
|
|
|
|
text-align:center !important;
|
|
|
|
width:25px;
|
2017-07-06 07:11:40 -05:00
|
|
|
height:29px !important;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
2016-05-15 15:27:59 -05:00
|
|
|
.backgrid.presentation {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2016-05-15 15:27:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid.presentation td.renderable {
|
2017-07-24 06:13:24 -05:00
|
|
|
padding: 6px 3px 3px 3px;
|
2016-12-19 08:26:20 -06:00
|
|
|
font-size: 12px;
|
2016-05-15 15:27:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid:not(.presentation) td.renderable:not(.editable):not(.delete-cell) {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
Resolved few intialization issue with Node model data, moved the
privileges functionality out of the backform.pgadmin.js to make it more
modular. Now - privileges will expect the privileges data in following
format:
<name_of_the_property> : [{
"privileges": [{
"privilege_type": <privilege_type>,
"privilege": true,
"with_grant": false
},
...
],
"grantee": <grantee>,
"grantor": <grantor>
},
...
]
Example:
acl": [{
"privileges": [{
"privilege_type": "CONNECT",
"privilege": true,
"with_grant": false
}],
"grantee": '',
"grantor": 'ashesh'
},{
"privileges": [{
"privilege_type": "CREATE",
"privilege": true,
"with_grant": false
},{
"privilege": true,
"privilege_type": "TEMPORARY",
"with_grant": false
}],
"grantee": test,
"grantor": ashesh
}]
2015-12-23 00:40:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid tr.header td.renderable:not(.editable):not(.delete-cell) {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-light;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.sql-editor-grid-container .backgrid > thead > th.renderable,
|
|
|
|
.sql-editor-grid-container .backgrid > tbody > td.renderable {
|
2016-04-14 09:04:03 -05:00
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2015-10-28 12:06:09 -05:00
|
|
|
.subnode-header {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-primary;
|
2016-03-15 07:30:01 -05:00
|
|
|
height: 35px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
2016-03-15 07:30:01 -05:00
|
|
|
border-radius: 3px 3px 0px 0px;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subnode-header .control-label {
|
2016-03-22 08:31:48 -05:00
|
|
|
font-size: 13px;
|
2016-03-15 07:30:01 -05:00
|
|
|
font-weight: normal !important;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.subnode-header > button.add {
|
2016-03-15 07:30:01 -05:00
|
|
|
float: right;
|
|
|
|
margin-right: 3px;
|
|
|
|
margin-bottom: 3px;
|
2016-07-26 06:54:59 -05:00
|
|
|
margin-top: 5px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.subnode {
|
2016-03-15 07:30:01 -05:00
|
|
|
padding-top: 0px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.subnode-dialog {
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: auto;
|
|
|
|
right: 0;
|
2016-03-15 07:30:01 -05:00
|
|
|
height: auto;
|
2015-10-28 12:06:09 -05:00
|
|
|
margin-left: 23px;
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2015-10-28 12:06:09 -05:00
|
|
|
margin-top: 0px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px solid $color-gray-light;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
.subnode-body {
|
2016-03-15 07:30:01 -05:00
|
|
|
height: auto;
|
|
|
|
overflow: inherit;
|
2015-10-28 12:06:09 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
.subnode-footer {
|
2016-03-15 07:30:01 -05:00
|
|
|
height: 38px;
|
2015-10-28 12:06:09 -05:00
|
|
|
margin: 0px, 15px;
|
2016-03-15 07:30:01 -05:00
|
|
|
min-height: 40px;
|
2015-10-28 12:06:09 -05:00
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub-node-form {
|
2016-03-15 07:30:01 -05:00
|
|
|
height: auto;
|
2015-12-17 07:48:42 -06:00
|
|
|
padding: 1px;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.sub-node-form > .nav-tabs {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2015-10-28 12:06:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.sub-node-form > ul.tab-content{
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-bg;
|
2015-10-28 12:06:09 -05:00
|
|
|
padding-left: 15px;
|
|
|
|
left: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.backgrid tr.new {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: rgba($color-primary, 0.1) !important;
|
2015-10-28 12:06:09 -05:00
|
|
|
box-sizing: border-box;
|
2018-09-04 05:24:51 -05:00
|
|
|
outline: 1px solid rgba($color-primary, 0.8);
|
2015-10-28 12:06:09 -05:00
|
|
|
outline-offset: -1px;
|
|
|
|
}
|
2015-12-04 04:19:08 -06:00
|
|
|
|
|
|
|
/* Remove default left padding from checkbox for bootstrap-switch */
|
|
|
|
.checkbox {
|
|
|
|
margin-top: 0px !important;
|
|
|
|
margin-bottom: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox label {
|
|
|
|
padding-left: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bootstrap-switch > .bootstrap-switch-container > input {
|
2015-12-17 07:48:42 -06:00
|
|
|
height: 0px;
|
|
|
|
width: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 0px solid $color-fg;
|
2015-12-04 04:19:08 -06:00
|
|
|
}
|
2015-12-17 07:48:42 -06:00
|
|
|
|
|
|
|
.switch-cell {
|
|
|
|
height: 0px; width: 0px;
|
|
|
|
}
|
Resolved few intialization issue with Node model data, moved the
privileges functionality out of the backform.pgadmin.js to make it more
modular. Now - privileges will expect the privileges data in following
format:
<name_of_the_property> : [{
"privileges": [{
"privilege_type": <privilege_type>,
"privilege": true,
"with_grant": false
},
...
],
"grantee": <grantee>,
"grantor": <grantor>
},
...
]
Example:
acl": [{
"privileges": [{
"privilege_type": "CONNECT",
"privilege": true,
"with_grant": false
}],
"grantee": '',
"grantor": 'ashesh'
},{
"privileges": [{
"privilege_type": "CREATE",
"privilege": true,
"with_grant": false
},{
"privilege": true,
"privilege_type": "TEMPORARY",
"with_grant": false
}],
"grantee": test,
"grantor": ashesh
}]
2015-12-23 00:40:20 -06:00
|
|
|
|
2016-05-25 03:16:31 -05:00
|
|
|
/* Center align the switch in backgrid */
|
|
|
|
td.switch-cell > div.bootstrap-switch {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2016-01-09 06:29:56 -06:00
|
|
|
.width_percent_5 { width: 5%; }
|
|
|
|
.width_percent_10 { width: 10%; }
|
|
|
|
.width_percent_15 { width: 15%; }
|
|
|
|
.width_percent_20 { width: 20%; }
|
|
|
|
.width_percent_25 { width: 25%; }
|
|
|
|
.width_percent_30 { width: 30%; }
|
|
|
|
.width_percent_35 { width: 35%; }
|
|
|
|
.width_percent_40 { width: 40%; }
|
|
|
|
.width_percent_45 { width: 45%; }
|
|
|
|
.width_percent_50 { width: 50%; }
|
|
|
|
.width_percent_55 { width: 55%; }
|
|
|
|
.width_percent_60 { width: 60%; }
|
|
|
|
.width_percent_65 { width: 65%; }
|
|
|
|
.width_percent_70 { width: 70%; }
|
|
|
|
.width_percent_75 { width: 75%; }
|
|
|
|
.width_percent_80 { width: 80%; }
|
|
|
|
.width_percent_85 { width: 85%; }
|
|
|
|
.width_percent_90 { width: 90%; }
|
|
|
|
.width_percent_95 { width: 95%; }
|
|
|
|
.width_percent_99 { width: 99%; }
|
|
|
|
.width_percent_100 { width: 100%; }
|
2016-01-04 02:04:45 -06:00
|
|
|
|
|
|
|
.pg-prop-header {
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
2016-03-15 07:30:01 -05:00
|
|
|
top : 0;
|
2016-01-04 02:04:45 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.pg-prop-footer{
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
2016-03-15 07:30:01 -05:00
|
|
|
bottom : 0;
|
2016-05-16 08:35:36 -05:00
|
|
|
z-index: 4;
|
2016-01-04 02:04:45 -06:00
|
|
|
}
|
2016-01-09 06:29:56 -06:00
|
|
|
.subnode-header-form {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2016-03-15 07:30:01 -05:00
|
|
|
color: black;
|
|
|
|
padding: 3px 0 10px 0;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-top: solid 1.5px $color-bg;
|
2016-03-15 07:30:01 -05:00
|
|
|
font-size: 12px;
|
2016-01-09 06:29:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.subnode-header-form button.add {
|
2016-03-15 07:30:01 -05:00
|
|
|
float: right;
|
|
|
|
margin-right: 0px;
|
2016-01-09 06:29:56 -06:00
|
|
|
}
|
|
|
|
|
2016-04-07 05:51:16 -05:00
|
|
|
.subnode-error .help-block {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-danger;
|
2016-04-07 05:51:16 -05:00
|
|
|
}
|
|
|
|
|
2016-01-09 06:29:56 -06:00
|
|
|
.select2-container--default .select2-search--inline .select2-search__field {
|
2016-03-15 07:30:01 -05:00
|
|
|
background: transparent none repeat scroll 0% 0%;
|
|
|
|
border: medium none;
|
|
|
|
outline: 0px none;
|
|
|
|
box-shadow: none;
|
|
|
|
width: 100% !important;
|
2016-01-09 06:29:56 -06:00
|
|
|
}
|
|
|
|
|
2016-01-09 10:23:12 -06:00
|
|
|
.renderable > .select2-container {
|
2016-03-15 07:30:01 -05:00
|
|
|
width: 100% !important;
|
2016-01-09 10:23:12 -06:00
|
|
|
}
|
|
|
|
|
2016-01-09 06:29:56 -06:00
|
|
|
div.rolmembership {
|
2016-03-15 07:30:01 -05:00
|
|
|
margin-top: 15px;
|
2016-01-09 06:29:56 -06:00
|
|
|
}
|
2016-01-17 10:51:02 -06:00
|
|
|
|
|
|
|
fieldset.inline-fieldset {
|
|
|
|
margin: 0px; margin-left: 2px; margin-right: 2px;
|
2016-03-15 07:30:01 -05:00
|
|
|
padding-right: 10px; padding-left: 10px; padding-top: 6px; padding-bottom: 12px;
|
2016-04-25 03:04:47 -05:00
|
|
|
border: 1px solid; border-radius: 5px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-gray-lighter; box-shadow: 0.1px 0.1px 0.1px $color-gray-lighter;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
2016-03-18 11:54:43 -05:00
|
|
|
fieldset.inline-fieldset-without-border {
|
|
|
|
margin: 0px; margin-left: 0px; margin-right: 0px;
|
|
|
|
padding-right: 0px; padding-left: 0px; padding-top: 0px; padding-bottom: 0px;
|
|
|
|
border: 0px solid; border-radius: 0px; display: inline-block;
|
|
|
|
}
|
|
|
|
|
2016-01-17 10:51:02 -06:00
|
|
|
fieldset.inline-fieldset > legend {
|
2018-09-04 05:24:51 -05:00
|
|
|
display: block; border: 0px solid $color-fg; box-shadow: none;
|
2016-03-15 07:30:01 -05:00
|
|
|
box-sizing: content-box; top: auto; bottom: auto; left: auto;
|
2016-08-24 01:40:54 -05:00
|
|
|
font-size: 14px; font-style: normal; font-weight: 600;
|
2016-03-15 07:30:01 -05:00
|
|
|
height: 20px; line-height: 20px; margin: 0px; padding-bottom: 0px;
|
|
|
|
padding-left: 5px; padding-right: 5px; padding-top: 0px;
|
|
|
|
vertical-align: middle; width: auto;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
2016-03-18 11:54:43 -05:00
|
|
|
fieldset.inline-fieldset-without-border legend {
|
|
|
|
border: none; margin-bottom: 0px !important;
|
|
|
|
}
|
2016-01-17 10:51:02 -06:00
|
|
|
|
|
|
|
fieldset.inline-fieldset > div {
|
2016-03-15 07:30:01 -05:00
|
|
|
padding: 0px; margin: 0px; border: 0px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel {
|
2016-03-15 07:30:01 -05:00
|
|
|
float: left; width: 100%;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li {
|
2016-03-22 08:31:48 -05:00
|
|
|
border-top-left-radius: 10px;
|
|
|
|
border-top-right-radius: 10px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li:first-child {
|
2016-03-22 08:31:48 -05:00
|
|
|
border-top-left-radius: 3px; border-top-right-radius: 10px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li > a,
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li > a:active,
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li > a:hover,
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li > a:focus {
|
2016-04-07 07:40:16 -05:00
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li:first-child > a,
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li:first-child > a:active,
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li:first-child > a:hover,
|
|
|
|
div.inline-tab-panel > ul.nav-tabs > li:first-child > a:focus {
|
2016-04-07 07:40:16 -05:00
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
margin-left: 1px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.tab-content {
|
2018-09-04 05:24:51 -05:00
|
|
|
padding-left: 5px; padding-right: 5px; border-color: $color-gray-lighter;
|
2016-04-07 07:40:16 -05:00
|
|
|
border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;
|
|
|
|
border-width: 0px 1px 1px 1px; border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px; border-style: solid solid;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.tab-content > div.tab-pane {
|
2016-04-07 07:40:16 -05:00
|
|
|
min-height: 150px; padding: 0px !important;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.tab-content > div.tab-pane > *:first-child {
|
2016-04-07 07:40:16 -05:00
|
|
|
margin-top: 5px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
div.inline-tab-panel > ul.tab-content > div.tab-pane > *:last-child {
|
2016-04-07 07:40:16 -05:00
|
|
|
margin-bottom: 5px;
|
2016-01-17 10:51:02 -06:00
|
|
|
}
|
2016-04-07 07:40:16 -05:00
|
|
|
|
|
|
|
.pgadmin-control-error-message{
|
|
|
|
padding-left: 4px;
|
2016-03-15 07:30:01 -05:00
|
|
|
}
|
2016-04-07 07:40:16 -05:00
|
|
|
|
2016-03-15 07:30:01 -05:00
|
|
|
td.edit-cell.editable.sortable.renderable.editor {
|
2016-04-07 07:40:16 -05:00
|
|
|
outline: 0px;
|
2016-03-15 07:30:01 -05:00
|
|
|
}
|
|
|
|
|
2016-04-07 07:40:16 -05:00
|
|
|
.privilege_label{
|
|
|
|
font-size: 10px!important;
|
2016-03-15 07:30:01 -05:00
|
|
|
}
|
2016-04-07 07:40:16 -05:00
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > th, .backgrid > td {
|
2016-04-07 07:40:16 -05:00
|
|
|
padding: 2px;
|
|
|
|
font-weight: normal!important;
|
2016-03-15 07:30:01 -05:00
|
|
|
}
|
|
|
|
|
2016-04-07 07:40:16 -05:00
|
|
|
.subnode > table.backgrid > thead > tr > th:first-child{
|
2018-09-04 05:24:51 -05:00
|
|
|
border-left-color: $color-primary;
|
2016-03-15 07:30:01 -05:00
|
|
|
}
|
|
|
|
|
2016-04-07 07:40:16 -05:00
|
|
|
.subnode > table.backgrid > thead > tr > th:last-child{
|
2018-09-04 05:24:51 -05:00
|
|
|
border-right-color: $color-primary;
|
2016-03-15 07:30:01 -05:00
|
|
|
}
|
2016-05-21 05:11:35 -05:00
|
|
|
|
2016-04-07 07:40:16 -05:00
|
|
|
.select2-container .select2-selection--single .select2-selection__rendered{
|
|
|
|
padding-left: 5px;
|
2016-03-15 10:45:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Message panel shown on browser tabs */
|
|
|
|
.pg-panel-message {
|
|
|
|
margin-top: 25px !important;
|
2016-05-05 10:42:16 -05:00
|
|
|
width: 80%;
|
2016-03-15 10:45:40 -05:00
|
|
|
margin: 0 auto;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
2016-03-16 09:48:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid .textarea-cell {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid .textarea-cell.editor textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2016-03-22 08:31:48 -05:00
|
|
|
}
|
|
|
|
|
Backform control for selecting multiple columns.
Usage:
{
id: 'columns', label: '{{ _('Columns') }}',
type: 'collection', group: '{{ _('Definition') }}', editable:true,
canDelete: true, canAdd: true, control: Backform.MultiColumnSelectControl,
deps: ['index'], node: 'column',
model: pgBrowser.Node.Model.extend({
keys: ['column'],
defaults: {
column: undefined
}
})
}
Note: When using this control model should have column attribute. And node property should be column.
2016-03-22 11:52:34 -05:00
|
|
|
.select2-container--default.select2-container--focus
|
|
|
|
.select2-selection--multiple {
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px solid $color-gray-light !important;
|
2016-09-22 09:27:59 -05:00
|
|
|
outline: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select2-container--default.select2-container--focus {
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-primary-light;
|
2016-09-22 09:27:59 -05:00
|
|
|
outline: 0;
|
2018-09-04 05:24:51 -05:00
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba($color-primary, .6);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba($color-primary, .6);
|
Backform control for selecting multiple columns.
Usage:
{
id: 'columns', label: '{{ _('Columns') }}',
type: 'collection', group: '{{ _('Definition') }}', editable:true,
canDelete: true, canAdd: true, control: Backform.MultiColumnSelectControl,
deps: ['index'], node: 'column',
model: pgBrowser.Node.Model.extend({
keys: ['column'],
defaults: {
column: undefined
}
})
}
Note: When using this control model should have column attribute. And node property should be column.
2016-03-22 11:52:34 -05:00
|
|
|
}
|
|
|
|
|
2016-03-22 11:36:54 -05:00
|
|
|
/* CSS for SqlField control */
|
|
|
|
.sql_field_layout {
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px solid rgba($color-gray-light, 1) !important;
|
2016-03-22 11:36:54 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2016-04-13 06:24:46 -05:00
|
|
|
.tab-pane.SQL {
|
|
|
|
padding: 0px 7px 0px 0px;
|
2016-12-16 07:04:16 -06:00
|
|
|
height: 100%;
|
2016-04-13 06:24:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.pgadmin-control-group.sql {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2016-12-16 07:04:16 -06:00
|
|
|
height: 100%;
|
2016-03-22 11:36:54 -05:00
|
|
|
}
|
|
|
|
|
2016-03-22 08:31:48 -05:00
|
|
|
.nav-tabs{
|
|
|
|
border-bottom:0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs>li {
|
|
|
|
margin-bottom:0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs>li>a{
|
2018-09-04 05:24:51 -05:00
|
|
|
border-radius: 5px 5px 0 0;
|
2016-03-22 08:31:48 -05:00
|
|
|
margin-right:1px;
|
|
|
|
border:0px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-primary;
|
2016-03-22 08:31:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs>li > a:hover , .nav-tabs>li > a:focus{
|
|
|
|
border:0px;
|
|
|
|
margin-bottom:0px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color:$color-fg;
|
2016-03-22 08:31:48 -05:00
|
|
|
padding-bottom: 4px!important;
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-white;
|
2016-03-22 08:31:48 -05:00
|
|
|
}
|
|
|
|
.nav-tabs>li.active>a ,.nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover ,.nav-tabs>li.active>a:active{
|
|
|
|
border:0px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color:$color-fg;
|
2016-03-22 08:31:48 -05:00
|
|
|
margin-top: 0px;
|
|
|
|
padding-top: 7px!important;
|
|
|
|
padding-bottom: 4px!important;
|
|
|
|
margin-top:0px!important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .nav>li>a {
|
|
|
|
font-size: 13px;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
padding-top: 4px;
|
2018-09-04 05:24:51 -05:00
|
|
|
padding-bottom:0px;
|
|
|
|
margin-top:3px;
|
2016-03-22 08:31:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.obj_properties .backform-tab > .nav-tabs {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2016-03-22 08:31:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.nav.nav-tabs {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2016-03-22 08:31:48 -05:00
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
2018-09-04 05:24:51 -05:00
|
|
|
|
2016-04-07 07:40:16 -05:00
|
|
|
.pg-panel-depends-container >table.backgrid.table-bordered {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-panel-depends-container > table > thead > tr > th {
|
|
|
|
padding: 2px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px $color-gray-lighter solid;
|
2016-04-04 05:06:28 -05:00
|
|
|
}
|
2016-04-07 07:40:16 -05:00
|
|
|
|
|
|
|
.pg-panel-depends-container > table > thead > tr > th:first-child {
|
|
|
|
border-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-panel-depends-container > table > thead > tr > th:last-child {
|
|
|
|
border-right: 0px;
|
|
|
|
}
|
|
|
|
|
2016-04-08 00:39:58 -05:00
|
|
|
.pgadmin-control-group span.wcTabIcon {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
2016-04-13 06:24:46 -05:00
|
|
|
|
2016-04-29 05:11:24 -05:00
|
|
|
.select2-results span.wcTabIcon {
|
|
|
|
padding-left: 20px;
|
|
|
|
background-position: 0px 2px;
|
|
|
|
}
|
|
|
|
|
2017-07-24 06:13:24 -05:00
|
|
|
/* This rule will stop Chrome apply highlighting to elements such as DIV's used as modals */
|
2016-04-15 09:30:27 -05:00
|
|
|
*:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Alert info panel */
|
|
|
|
.alert-info-panel {
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 2px solid $color-gray-light;
|
2016-04-15 09:30:27 -05:00
|
|
|
margin-top: 2em;
|
2017-07-24 06:13:24 -05:00
|
|
|
padding: 5px 5px;
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-gray-lighter;
|
2016-04-15 09:30:27 -05:00
|
|
|
border-radius: 5px;
|
|
|
|
height: 8em;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.button-label {
|
2018-09-04 05:24:51 -05:00
|
|
|
font-family: $font-family-primary;
|
2016-04-25 01:23:48 -05:00
|
|
|
font-size: initial;
|
|
|
|
}
|
2017-06-30 04:21:05 -05:00
|
|
|
|
2016-04-28 01:22:04 -05:00
|
|
|
.backform_control_notes {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
|
|
|
border: 1px solid $color-gray-light;
|
2016-04-28 01:22:04 -05:00
|
|
|
border-radius: 3px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-gray-dark;
|
2016-04-28 01:22:04 -05:00
|
|
|
display: block;
|
2018-09-04 05:24:51 -05:00
|
|
|
font-family: $font-family-editor;
|
2016-04-28 01:22:04 -05:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.42857;
|
|
|
|
margin: 0 0 10px;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 5px 10px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2016-05-15 05:29:32 -05:00
|
|
|
|
2016-04-28 01:22:04 -05:00
|
|
|
div.backform_control_notes label.control-label {
|
|
|
|
min-width: 0px;
|
|
|
|
}
|
2016-05-10 02:17:46 -05:00
|
|
|
|
|
|
|
form[name="change_password_form"] .help-block {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-danger !important;
|
2016-05-12 13:34:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.file_selection_ctrl .create_input span {
|
|
|
|
padding-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file_selection_ctrl .create_input input[type="text"] {
|
|
|
|
height: 23px;
|
|
|
|
padding: 2px;
|
|
|
|
width: 194px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file_selection_ctrl .browse_file_input {
|
|
|
|
display: inline-block;
|
|
|
|
width: 220px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file_selection_ctrl button.select_item {
|
|
|
|
display: inline;
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-gray;
|
|
|
|
background: -webkit-linear-gradient( $color-gray, $color-gray);
|
|
|
|
background: -o-linear-gradient( $color-gray, $color-gray-light);
|
|
|
|
background: -moz-linear-gradient( $color-gray, $color-gray-light);
|
|
|
|
background: linear-gradient( $color-gray, $color-gray-light);
|
|
|
|
color: $color-fg-inverse;
|
2016-05-12 13:34:28 -05:00
|
|
|
padding: 9px 0px 9px 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: -7px;
|
|
|
|
margin-top: -4px;
|
|
|
|
min-width: 30px;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file_selection_ctrl button.select_item:focus,
|
|
|
|
.file_selection_ctrl button.select_item:active {
|
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file_selection_ctrl input[type="text"] {
|
|
|
|
width: calc(100% - 17px);
|
|
|
|
border: none;
|
|
|
|
margin-left: -6px;
|
|
|
|
margin-top: -3px;
|
|
|
|
height: 32px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
2016-05-14 04:59:03 -05:00
|
|
|
|
|
|
|
/* Overriding the css for the dropzone */
|
|
|
|
.dropzone .dz-preview .dz-progress {
|
|
|
|
height: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone .dz-preview .dz-progress .dz-upload {
|
|
|
|
bottom: initial;
|
|
|
|
}
|
2016-05-15 05:29:32 -05:00
|
|
|
|
|
|
|
/* Fix Alertify dialog alignment for Backform controls */
|
|
|
|
.alertify_tools_dialog_properties {
|
|
|
|
bottom: 0 !important;
|
|
|
|
left: 0 !important;
|
|
|
|
position: absolute !important;
|
|
|
|
right: 0 !important;
|
|
|
|
top: 35px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For Backup & Restore Dialog */
|
|
|
|
.custom_switch_label_class {
|
|
|
|
min-width: 0px !important;
|
|
|
|
padding-bottom: 10px !important;
|
|
|
|
font-size: 13px !important;
|
|
|
|
font-weight: normal !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom_switch_control_class {
|
|
|
|
min-width: 0px !important;
|
|
|
|
padding-bottom: 10px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* animate blink */
|
|
|
|
.blink {
|
|
|
|
animation: blink-animation 1s steps(5, start) infinite;
|
|
|
|
-webkit-animation: blink-animation 1s steps(5, start) infinite;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blink-animation {
|
|
|
|
to {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes blink-animation {
|
|
|
|
to {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
2016-06-03 05:13:05 -05:00
|
|
|
|
2016-06-06 07:34:08 -05:00
|
|
|
|
2016-06-03 05:13:05 -05:00
|
|
|
/* Override Backgrid's default z-index */
|
|
|
|
.dashboard-tab-container .backgrid-filter .search {
|
|
|
|
z-index: 10 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-tab-container .backgrid-filter .clear {
|
|
|
|
z-index: 10 !important;
|
|
|
|
}
|
2016-06-03 05:43:42 -05:00
|
|
|
|
|
|
|
.backgrid .string-cell.editor input[type=password] {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.backgrid > tbody > td.editor input[type=password] {
|
2016-06-03 05:43:42 -05:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 5px;
|
|
|
|
margin: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
}
|
2016-06-06 07:34:08 -05:00
|
|
|
|
|
|
|
.subnode-footer {
|
|
|
|
text-align: right;
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-gray-light;
|
2016-06-06 07:34:08 -05:00
|
|
|
border-style: inset inset inset solid;
|
|
|
|
border-width: 2px 1px 0;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subnode-footer .ajs-button {
|
|
|
|
margin: 2px 2px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management {
|
|
|
|
margin: 0 10px !important;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2017-11-28 08:10:12 -06:00
|
|
|
.close-error-bar {
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-danger;
|
2017-11-28 08:10:12 -06:00
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close-error-bar a {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
2017-11-28 08:10:12 -06:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-06-06 07:34:08 -05:00
|
|
|
.user_management .search_users form {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management table {
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
border: 0 none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management .backform-tab {
|
|
|
|
height: calc(100% - 75px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management .search_users {
|
|
|
|
float:right;
|
|
|
|
margin-right: 5px;
|
|
|
|
padding:0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management .search_users input{
|
|
|
|
height:15px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management .user_container {
|
|
|
|
height: calc(100% - 35px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_management input[placeholder] {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alertify_tools_dialog_backgrid_properties {
|
|
|
|
top: 43px !important;
|
2016-06-07 03:23:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.user_management_pg-alertify-button {
|
|
|
|
line-height: 16px;
|
2016-06-08 03:30:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.pg-panel-statistics-container >table.backgrid.table-bordered {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-panel-statistics-container > table > thead > tr > th {
|
|
|
|
padding: 2px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px solid $color-gray-lighter;
|
2016-06-08 03:30:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.pg-panel-statistics-container > table > thead > tr > th:first-child {
|
|
|
|
border-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pg-panel-statistics-container > table > thead > tr > th:last-child {
|
|
|
|
border-right: 0px;
|
2016-06-13 10:17:36 -05:00
|
|
|
}
|
2016-06-14 11:23:25 -05:00
|
|
|
|
|
|
|
.pgadmin-controls input[type="checkbox"]{
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-top: 10px !important;
|
2016-06-15 05:59:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure query tool results can horizontal scroll */
|
|
|
|
table.backgrid {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2016-06-29 06:16:02 -05:00
|
|
|
|
|
|
|
.aciTree.aciTreeLoad {
|
|
|
|
background: none;
|
|
|
|
}
|
2016-07-05 06:11:36 -05:00
|
|
|
|
2016-08-29 02:51:45 -05:00
|
|
|
.pgadmin-controls.sql_field_layout {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2016-09-22 09:27:59 -05:00
|
|
|
.pgadmin-controls.focused {
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-primary-light;
|
2016-09-22 09:27:59 -05:00
|
|
|
outline: 0;
|
2018-09-04 05:24:51 -05:00
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba($color-primary, .6);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba($color-primary, .6);
|
2016-09-22 09:27:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.bootstrap-datetimepicker-widget td,
|
|
|
|
.bootstrap-datetimepicker-widget th {
|
|
|
|
display: table-cell;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-block {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
2016-11-15 03:55:32 -06:00
|
|
|
|
|
|
|
.backgrid td.editor input[type=password] {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 5px;
|
|
|
|
margin: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.backgrid td.editor input[type=password]::-ms-clear {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-11-18 04:55:00 -06:00
|
|
|
|
|
|
|
/* Disable text selection where not wanted */
|
|
|
|
body {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2017-01-07 22:29:17 -06:00
|
|
|
.enable-selection, .form-control, .backgrid td, .ajs-content {
|
2016-11-18 04:55:00 -06:00
|
|
|
-webkit-user-select: text;
|
|
|
|
-moz-user-select: text;
|
|
|
|
-ms-user-select: text;
|
|
|
|
user-select: text;
|
2016-11-24 09:38:30 -06:00
|
|
|
}
|
|
|
|
|
2016-12-19 03:21:49 -06:00
|
|
|
.dashboard-tab-container table,
|
|
|
|
.pg-panel-statistics-container table,
|
|
|
|
.pg-panel-depends-container table,
|
|
|
|
.pg-panel-depends-container table {
|
|
|
|
font-size: 12px !important;
|
2017-01-30 08:02:01 -06:00
|
|
|
}
|
2017-07-18 09:13:16 -05:00
|
|
|
|
|
|
|
.backgrid tr th button {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
2017-07-18 09:13:16 -05:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Latest backgrid adds column name like `label` to td element, override color*/
|
|
|
|
.backgrid td.label {
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-gray-dark;
|
2017-07-18 09:13:16 -05:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
2017-07-24 06:13:24 -05:00
|
|
|
}
|
2017-08-01 06:07:17 -05:00
|
|
|
|
|
|
|
/* Security label's label column font size */
|
|
|
|
.override_label_class_font_size {
|
|
|
|
font-size: inherit !important;
|
|
|
|
}
|
2017-09-18 05:57:44 -05:00
|
|
|
|
|
|
|
/* To align 'X' in alert on login page */
|
|
|
|
.alert-dismissable, .alert-dismissible {
|
|
|
|
padding-right: 35px !important;
|
|
|
|
}
|
2017-11-21 10:28:01 -06:00
|
|
|
|
|
|
|
/* Override CSS for Colour Picker to match it with pgAdmin4 style */
|
|
|
|
.sp-replacer {
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-bg;
|
|
|
|
border: solid 1px $color-gray-light;
|
2017-11-21 10:28:01 -06:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sp-replacer:hover {
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-gray-light;
|
2017-11-21 10:28:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.sp-replacer.sp-active {
|
2018-09-04 05:24:51 -05:00
|
|
|
border-color: $color-primary-light;
|
2017-11-21 10:28:01 -06:00
|
|
|
border-radius: 4px;
|
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sp-replacer.sp-disabled {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-gray-lighter;
|
2017-11-21 10:28:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.sp-container {
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-bg;
|
|
|
|
border: solid 1px $color-gray-light;
|
2017-11-21 10:28:01 -06:00
|
|
|
border-radius: 3px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sp-palette-button-container button,
|
|
|
|
.sp-palette-button-container button:hover {
|
|
|
|
padding: 5px;
|
2018-09-04 05:24:51 -05:00
|
|
|
background-color: $color-primary;
|
2017-11-21 10:28:01 -06:00
|
|
|
background-image: none;
|
2018-09-04 05:24:51 -05:00
|
|
|
font-family: $font-family-primary;
|
2017-11-21 10:28:01 -06:00
|
|
|
font-size: 12px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-fg-inverse;
|
2017-11-21 10:28:01 -06:00
|
|
|
text-shadow: none;
|
|
|
|
-webkit-font-smoothing: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sp-container button:active {
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px solid $color-primary;
|
2017-11-21 10:28:01 -06:00
|
|
|
border-bottom: none;
|
2018-09-04 05:24:51 -05:00
|
|
|
-webkit-box-shadow: inset 0 0 5px 2px $color-primary, 0 1px 0 0 $color-primary-light;
|
|
|
|
-moz-box-shadow: inset 0 0 5px 2px $color-primary, 0 1px 0 0 $color-primary-light;
|
|
|
|
-ms-box-shadow: inset 0 0 5px 2px $color-primary, 0 1px 0 0 $color-primary-light;
|
|
|
|
-o-box-shadow: inset 0 0 5px 2px $color-primary, 0 1px 0 0 $color-primary-light;
|
|
|
|
box-shadow: inset 0 0 5px 2px $color-primary, 0 1px 0 0 $color-primary-light;
|
2017-11-21 10:28:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.sp-dd {
|
|
|
|
font-size: 8px;
|
2018-09-04 05:24:51 -05:00
|
|
|
color: $color-gray;
|
2017-11-21 10:28:01 -06:00
|
|
|
}
|
2017-11-21 11:22:25 -06:00
|
|
|
|
|
|
|
/* CSS for custom checkbox editor in SlickGrid */
|
|
|
|
.multi-checkbox .check {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-11-22 10:28:08 -06:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2018-09-04 05:24:51 -05:00
|
|
|
border: 1px solid $color-gray-dark;
|
2017-11-21 11:22:25 -06:00
|
|
|
margin: 3px;
|
|
|
|
text-align: center;
|
2017-11-22 10:28:08 -06:00
|
|
|
line-height: 16px;
|
2017-11-21 11:22:25 -06:00
|
|
|
}
|
|
|
|
|
2017-11-22 10:28:08 -06:00
|
|
|
.multi-checkbox .check.checked,
|
2017-11-21 11:22:25 -06:00
|
|
|
.multi-checkbox .check.unchecked {
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-bg;
|
2017-11-21 11:22:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.multi-checkbox .check.partial {
|
2018-09-04 05:24:51 -05:00
|
|
|
background: $color-gray-lighter;
|
2017-11-21 11:22:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.multi-checkbox .check.checked:after {
|
|
|
|
content: "\2713";
|
|
|
|
}
|
|
|
|
|
|
|
|
.multi-checkbox .check.partial:after {
|
2017-11-22 10:28:08 -06:00
|
|
|
content: "\003F";
|
2017-11-21 11:22:25 -06:00
|
|
|
}
|
2018-01-12 08:34:39 -06:00
|
|
|
|
|
|
|
/* Override default bootstrap popover fonts & size */
|
|
|
|
.popover-content {
|
2018-09-04 05:24:51 -05:00
|
|
|
font-family: $font-family-primary;
|
2018-01-12 08:34:39 -06:00
|
|
|
font-size: 13px;
|
|
|
|
}
|
2018-09-04 05:24:51 -05:00
|
|
|
|
|
|
|
|
|
|
|
.btn.btn-default[disabled] {
|
|
|
|
color: $color-gray;
|
|
|
|
}
|