mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Enables pgAdmin to retrieve user permissions in case of nested roles which helps to terminate the session for AWS RDS. Fixes #6641
This commit is contained in:
committed by
Akshay Joshi
parent
008a458fe9
commit
c7fd1ae535
@@ -162,6 +162,11 @@ div.jsoneditor-tree button.jsoneditor-button:focus {
|
||||
background-color: $color-bg;
|
||||
}
|
||||
|
||||
/* Ace editor code background readonly*/
|
||||
#pg-json-editor[readonly] .ace-jsoneditor .ace_scroller{
|
||||
background-color: $color-gray-light;
|
||||
opacity: $btn-disabled-opacity;
|
||||
}
|
||||
|
||||
/* Ace editor hide indent guide */
|
||||
.ace-jsoneditor .ace_indent-guide {
|
||||
@@ -188,7 +193,6 @@ div.jsoneditor-tree button.jsoneditor-button:focus {
|
||||
background-color:$color-bg !important;
|
||||
}
|
||||
|
||||
|
||||
/* /* font setting all other mode */
|
||||
/* form, tree, code, preview, schema-error */
|
||||
div.jsoneditor-default,
|
||||
@@ -206,6 +210,19 @@ div.jsoneditor-tree{
|
||||
background-color:$color-bg;
|
||||
}
|
||||
|
||||
/* read only mode */
|
||||
#pg-json-editor[readonly] {
|
||||
& div.jsoneditor-tree,
|
||||
& div.jsoneditor td,
|
||||
& div.jsoneditor-readonly,
|
||||
& div.jsoneditor-value,
|
||||
& div.jsoneditor-field,
|
||||
& div.jsoneditor-tree button.jsoneditor-button:focus {
|
||||
background-color: $color-gray-light !important;
|
||||
opacity: 0.85;
|
||||
}
|
||||
}
|
||||
|
||||
div.jsoneditor td.jsoneditor-tree {
|
||||
vertical-align: middle;
|
||||
}
|
||||
@@ -332,6 +349,19 @@ div.jsoneditor-value[contenteditable=true]:hover
|
||||
color: $color-fg !important;
|
||||
}
|
||||
|
||||
/* Replace help text */
|
||||
.pico-modal-contents p{
|
||||
visibility: hidden;
|
||||
display: flex;
|
||||
margin-bottom: -1rem;
|
||||
}
|
||||
|
||||
.pico-modal-contents p::after{
|
||||
visibility: visible;
|
||||
position: absolute;
|
||||
content: "Enter a JMESPath query to filter, sort, or transform the JSON data.";
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Fields */
|
||||
.jsoneditor-modal,
|
||||
|
||||
Reference in New Issue
Block a user