mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Added High Contrast theme support. Fixes #5653
Fixed text color issue in explain analyze for the Dark theme. Fixes #5677
This commit is contained in:
committed by
Akshay Joshi
parent
9174db2024
commit
7edcca9b07
@@ -318,16 +318,16 @@ let SchemaDiffHeaderView = Backform.Form.extend({
|
||||
<div class="col-5 target-buttons">
|
||||
<div class="action-btns d-flex">
|
||||
<button class="btn btn-primary mr-auto"><i class="icon-schema-diff-white"></i> ` + gettext('Compare') + `</button>
|
||||
<button id="generate-script" class="btn btn-secondary mr-1" disabled><i class="fa fa-file-code-o sql-icon-lg"></i> ` + gettext('Generate Script') + `</button>
|
||||
<button id="generate-script" class="btn btn-primary-icon mr-1" disabled><i class="fa fa-file-code-o sql-icon-lg"></i> ` + gettext('Generate Script') + `</button>
|
||||
<div class="btn-group mr-1" role="group" aria-label="">
|
||||
<button id="btn-filter" type="button" class="btn btn-secondary"
|
||||
<button id="btn-filter" type="button" class="btn btn-primary-icon"
|
||||
title=""
|
||||
accesskey=""
|
||||
tabindex="0"
|
||||
style="pointer-events: none;">
|
||||
<i class="fa fa-filter sql-icon-lg" aria-hidden="true"></i> ` + gettext('Filter') + `
|
||||
</button>
|
||||
<button id="btn-filter-dropdown" type="button" class="btn btn-secondary dropdown-toggle dropdown-toggle-split"
|
||||
<button id="btn-filter-dropdown" type="button" class="btn btn-primary-icon dropdown-toggle dropdown-toggle-split"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"
|
||||
title=""
|
||||
accesskey=""
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
font-size: $tree-font-size;
|
||||
.ui-widget-content {
|
||||
background-color: $input-bg;
|
||||
color: $input-color;
|
||||
color: $schema-diff-color-fg;
|
||||
}
|
||||
|
||||
.ui-state-default {
|
||||
@@ -114,3 +114,15 @@
|
||||
font-size: 0.7rem;
|
||||
margin-left: 0rem;
|
||||
}
|
||||
|
||||
.slick-group {
|
||||
color: $input-color !important;
|
||||
}
|
||||
|
||||
.slick-group:hover {
|
||||
color: $schema-diff-color-fg !important;
|
||||
}
|
||||
|
||||
.slick-group.active {
|
||||
color: $schema-diff-color-fg !important;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user