mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that changing themes should work on Windows when system high contrast
mode is enabled. Fixes #6954
This commit is contained in:
parent
d7f5e13cdd
commit
31849ea95f
@ -24,3 +24,4 @@ Bug fixes
|
||||
| `Issue #6859 <https://redmine.postgresql.org/issues/6859>`_ - Fixed an issue where properties panel is not updated when any object is added from the browser tree.
|
||||
| `Issue #6940 <https://redmine.postgresql.org/issues/6940>`_ - Fixed an issue where user details are not shown when the non-admin user tries to connect to the shared server.
|
||||
| `Issue #6949 <https://redmine.postgresql.org/issues/6949>`_ - Ensure that dialog should be opened when clicking on Reassign/Drop owned menu.
|
||||
| `Issue #6954 <https://redmine.postgresql.org/issues/6954>`_ - Ensure that changing themes should work on Windows when system high contrast mode is enabled.
|
||||
|
@ -11,6 +11,11 @@
|
||||
font-size: 14px;
|
||||
background-color: #ebeef3;
|
||||
}
|
||||
@media screen and (forced-colors: active) {
|
||||
body {
|
||||
forced-color-adjust: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -27,6 +27,11 @@
|
||||
margin-right: auto;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@media screen and (forced-colors: active) {
|
||||
body {
|
||||
forced-color-adjust: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Disable/block all password saving in nw.js -->
|
||||
|
@ -11,6 +11,11 @@
|
||||
font-size: 14px;
|
||||
background-color: #ebeef3;
|
||||
}
|
||||
@media screen and (forced-colors: active) {
|
||||
body {
|
||||
forced-color-adjust: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -11,6 +11,11 @@
|
||||
font-size: 14px;
|
||||
background-color: #ebeef3;
|
||||
}
|
||||
@media screen and (forced-colors: active) {
|
||||
body {
|
||||
forced-color-adjust: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -46,3 +46,9 @@
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
@media screen and (forced-colors: active) {
|
||||
body {
|
||||
forced-color-adjust: none !important;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user