mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Add New Server Connection > Server options keep loading(For empty Server group). 2) After clicking indent/Unindent(for all operations) for large query option left as it is till operation completes 3) Check sign beside options in Execute Option/Copy Header is little bit big 4) In explain > Analysis tab does not show ROWS column 5) In explain > Explain > analysis previous explain output is NOT cleared. New rows are appended. Same applies to the statistics tab. 6) Update new query tool connection tool tip. Fixes #7289 7) Explain-Analyze > Loops column is empty. 8) Explain-Analyze with Verbose & Costs > in ROW X columns upward arrows are missing. 9) Explain-Analyze with all option checked > background colors are missing for timing. 10) Explain-Analyze > Additional bullet is added before Hash Cond. 11) Browser Tree > Filtered rows icon is not working. 12) Create table with timestamp and default value as function now() > Add new row > Enter mandatory columns except column where default value is function(now()) > Click Save > New row added but column with default value has value [default]. not updated to actual value. / Default values are not considered for any column while adding a new entry. 13) Disable execute options in View/Edit data. 14) The Boolean column always shows null. 15) In Query history Remove & Remove all buttons are stuck to each other. 16) On Remove all, the right panel is empty. 17) Create a column with boolean[]/ text[], Try to add a new entry from data grid, enter “” quotes > Click Ok > Now try edit cell > You can not change value. 18) In query history - Select queries are suffixed by ’Save Data’ icon 19) Edit any table with PK > Try to insert duplicate PK > Error thrown > Correct pK value > Still old error shown > Not able to add new entry (This works when focus is moved from edited cell) 20) Clicking arrows after opening dropdown options, does not collapse dropdown. refs #6131
125 lines
2.9 KiB
JavaScript
125 lines
2.9 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
/* The standard theme */
|
|
import { createMuiTheme } from '@material-ui/core/styles';
|
|
import { fade, darken } from '@material-ui/core/styles/colorManipulator';
|
|
|
|
export default function(basicSettings) {
|
|
return createMuiTheme(basicSettings, {
|
|
palette: {
|
|
default: {
|
|
main: '#fff',
|
|
contrastText: '#222',
|
|
borderColor: '#bac1cd',
|
|
disabledBorderColor: '#bac1cd',
|
|
disabledContrastText: '#222',
|
|
hoverMain: '#ebeef3',
|
|
hoverContrastText: '#222',
|
|
hoverBorderColor: '#bac1cd',
|
|
},
|
|
primary: {
|
|
main: '#326690',
|
|
light: '#d6effc',
|
|
contrastText: '#fff',
|
|
hoverMain: darken('#326690', 0.25),
|
|
hoverBorderColor: darken('#326690', 0.25),
|
|
disabledMain: '#326690',
|
|
},
|
|
success: {
|
|
main: '#26852B',
|
|
light: '#D9ECDA',
|
|
contrastText: '#000',
|
|
},
|
|
error: {
|
|
main: '#CC0000',
|
|
light: '#FAECEC',
|
|
contrastText: '#fff',
|
|
},
|
|
warning: {
|
|
main: '#eea236',
|
|
light: '#fce5c5',
|
|
contrastText: '#000',
|
|
},
|
|
info: {
|
|
main: '#fde74c',
|
|
},
|
|
grey: {
|
|
'200': '#f3f5f9',
|
|
'400': '#ebeef3',
|
|
'600': '#bac1cd',
|
|
'800': '#848ea0',
|
|
},
|
|
text: {
|
|
primary: '#222',
|
|
muted: '#646B82',
|
|
},
|
|
checkbox: {
|
|
disabled: '#ebeef3'
|
|
},
|
|
background: {
|
|
paper: '#fff',
|
|
default: '#fff',
|
|
},
|
|
},
|
|
custom: {
|
|
icon: {
|
|
main: '#fff',
|
|
contrastText: '#222',
|
|
borderColor: '#bac1cd',
|
|
disabledMain: '#fff',
|
|
disabledContrastText: '#222',
|
|
disabledBorderColor: '#bac1cd',
|
|
hoverMain: '#ebeef3',
|
|
hoverContrastText: '#222',
|
|
}
|
|
},
|
|
otherVars: {
|
|
reactSelect: {
|
|
padding: '5px 8px',
|
|
},
|
|
borderColor: '#dde0e6',
|
|
loader: {
|
|
backgroundColor: fade('#000', 0.65),
|
|
color: '#fff',
|
|
},
|
|
inputBorderColor: '#dde0e6',
|
|
inputDisabledBg: '#f3f5f9',
|
|
headerBg: '#fff',
|
|
activeBorder: '#326690',
|
|
activeColor: '#326690',
|
|
tableBg: '#fff',
|
|
activeStepBg: '#326690',
|
|
activeStepFg: '#FFFFFF',
|
|
stepBg: '#ddd',
|
|
stepFg: '#000',
|
|
toggleBtnBg: '#000',
|
|
editorToolbarBg: '#ebeef3',
|
|
qtDatagridBg: '#fff',
|
|
qtDatagridSelectFg: '#222',
|
|
cardHeaderBg: '#fff',
|
|
emptySpaceBg: '#ebeef3',
|
|
explain: {
|
|
sev2: {
|
|
color: '#222222',
|
|
bg: '#FFEE88',
|
|
},
|
|
sev3: {
|
|
color: '#FFFFFF',
|
|
bg: '#EE8800'
|
|
},
|
|
sev4: {
|
|
color: '#FFFFFF',
|
|
bg: '#880000'
|
|
},
|
|
}
|
|
}
|
|
});
|
|
}
|