mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
- Base font size changed from 0.815rem to 0.875rem, for navbar from 0.875rem to 0.925rem. - Dialog sizes made consistent throughout the application. Now there are 3 size options for width and height each - sm, md, lg. Combination of any of these to be used hereafter - Alignment fix for controls of Node properties dialogs which includes showing text and label in one line without dialog size change, checkbox alignment, switch control alignment at places and other minor improvements in other dialogs - Error message design change in dialogs validation - SQL Editor data grid editor popup design changes which were missed - Design change for dashboard server activity grid - Login page language dropdown color fix - Properties accordion collapse design fix - Help, Info icon fixed across all dialogs which were not working if clicked exactly on the text - Added missing icon with buttons at few places - Shadow behind the dialogs is increased to make it look clearly separated and depth. - Control Alignment fix in maintenance dialog - Min height of alertify dialogs set for better UX - File dialog design fix when no files found - Grant wizard fixes - Scroll bar visibility on first page, use full space for SQL generated on the last page - Browser toolbar buttons changed to sync with SQL editor toolbar buttons - Rounded corners for docker floating dialog (no properties) - Renaming file in file dialog should show original file name - SQL data grid text edit popup buttons behaviour was swapped. This is fixed. - Import/Export dialog changes as per new design.
236 lines
5.2 KiB
CSS
236 lines
5.2 KiB
CSS
/*
|
|
backgrid
|
|
http://github.com/wyuenho/backgrid
|
|
|
|
Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
|
|
Licensed under the MIT license.
|
|
*/
|
|
|
|
.backgrid-container {
|
|
position: relative;
|
|
display: block;
|
|
width: 100%;
|
|
height: 465px;
|
|
padding: 0;
|
|
overflow: auto;
|
|
border: 0;
|
|
}
|
|
|
|
.backgrid {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
background-color: transparent;
|
|
border-collapse: collapse;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.backgrid th,
|
|
.backgrid td {
|
|
display: none;
|
|
height: 20px;
|
|
max-width: 250px;
|
|
padding: 4px 5px;
|
|
overflow: hidden;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
border-bottom: 1px solid #DDD;
|
|
}
|
|
|
|
.backgrid th.renderable,
|
|
.backgrid td.renderable {
|
|
display: table-cell;
|
|
}
|
|
|
|
.backgrid th {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.backgrid th.sortable a {
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.backgrid thead th {
|
|
vertical-align: bottom;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.backgrid thead th a {
|
|
display: block;
|
|
}
|
|
|
|
.backgrid.backgrid-striped tbody tr:nth-child(even) {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.backgrid tbody tr.empty {
|
|
font-style: italic;
|
|
color: gray;
|
|
}
|
|
|
|
.backgrid tbody tr.empty td {
|
|
display: inherit;
|
|
text-align: center;
|
|
}
|
|
|
|
.backgrid td.editor,
|
|
.backgrid tbody tr:nth-child(odd) td.editor {
|
|
background-color: rgba(82, 168, 236, 0.1);
|
|
outline: 1px solid rgba(82, 168, 236, 0.8);
|
|
outline-offset: -1px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
-webkit-transition-duration: 200ms;
|
|
-moz-transition-duration: 200ms;
|
|
-o-transition-duration: 200ms;
|
|
transition-duration: 200ms;
|
|
-webkit-transition-property: width, outline, background-color;
|
|
-moz-transition-property: width, outline, background-color;
|
|
-o-transition-property: width, outline, background-color;
|
|
transition-property: width, outline, background-color;
|
|
-webkit-transition-timing-function: ease-in-out;
|
|
-moz-transition-timing-function: ease-in-out;
|
|
-o-transition-timing-function: ease-in-out;
|
|
transition-timing-function: ease-in-out;
|
|
}
|
|
|
|
.backgrid td.editor input[type=text] {
|
|
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=text]::-ms-clear {
|
|
display: none;
|
|
}
|
|
|
|
.backgrid td.error,
|
|
.backgrid tbody tr:nth-child(odd) td.error {
|
|
background-color: rgba(255, 210, 77, 0.1);
|
|
outline: 1px solid #ffd24d;
|
|
}
|
|
|
|
.backgrid td.editor :focus,
|
|
.backgrid th.editor :focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.backgrid .sort-caret {
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 0;
|
|
margin-left: 0.3em;
|
|
border: 0;
|
|
content: "";
|
|
}
|
|
|
|
.backgrid .ascending .sort-caret {
|
|
vertical-align: baseline;
|
|
border-top: none;
|
|
border-right: 4px solid transparent;
|
|
border-bottom: 4px solid #000000;
|
|
border-left: 4px solid transparent;
|
|
}
|
|
|
|
.backgrid .descending .sort-caret {
|
|
vertical-align: super;
|
|
border-top: 4px solid #000000;
|
|
border-right: 4px solid transparent;
|
|
border-bottom: none;
|
|
border-left: 4px solid transparent;
|
|
}
|
|
|
|
.backgrid .string-cell,
|
|
.backgrid .uri-cell,
|
|
.backgrid .email-cell,
|
|
.backgrid .string-cell.editor input[type=text],
|
|
.backgrid .uri-cell.editor input[type=text],
|
|
.backgrid .email-cell.editor input[type=text] {
|
|
text-align: left;
|
|
}
|
|
|
|
.backgrid .date-cell,
|
|
.backgrid .time-cell,
|
|
.backgrid .datetime-cell,
|
|
.backgrid .number-cell,
|
|
.backgrid .integer-cell,
|
|
.backgrid .percent-cell,
|
|
.backgrid .date-cell.editor input[type=text],
|
|
.backgrid .time-cell.editor input[type=text],
|
|
.backgrid .datetime-cell.editor input[type=text],
|
|
.backgrid .number-cell.editor input[type=text],
|
|
.backgrid .integer-cell.editor input[type=text],
|
|
.backgrid .percent-cell.editor input[type=text] {
|
|
text-align: right;
|
|
}
|
|
|
|
.backgrid .boolean-cell,
|
|
.backgrid .boolean-cell.editor input[type=checkbox] {
|
|
text-align: center;
|
|
}
|
|
|
|
.backgrid .select-cell {
|
|
text-align: center;
|
|
}
|
|
|
|
.backgrid .select-cell.editor {
|
|
padding: 0;
|
|
}
|
|
|
|
.backgrid .select-cell.editor select {
|
|
display: block;
|
|
width: 100%;
|
|
height: 28px;
|
|
padding: 4px 5px;
|
|
margin: 0;
|
|
line-height: 28px;
|
|
vertical-align: middle;
|
|
background-color: white;
|
|
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;
|
|
}
|
|
|
|
.backgrid .select-cell.editor select[multiple] {
|
|
height: auto;
|
|
}
|
|
|
|
.backgrid .select-cell.editor :focus {
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
.backgrid .select-cell.editor select::-moz-focus-inner,
|
|
.backgrid .select-cell.editor optgroup::-moz-focus-inner,
|
|
.backgrid .select-cell.editor option::-moz-focus-inner,
|
|
.backgrid .select-cell.editor select::-o-focus-inner,
|
|
.backgrid .select-cell.editor optgroup::-o-focus-inner,
|
|
.backgrid .select-cell.editor option::-o-focus-inner {
|
|
border: 0;
|
|
} |