Skip to content

Commit 1fbfe2e

Browse files
committed
Fix jQuery UI dialog dark color issues for Bootstrap theme
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
1 parent 29118bb commit 1fbfe2e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

public/themes/bootstrap/jquery/jquery-ui.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -898,24 +898,24 @@ body .ui-tooltip {
898898
font-size: 1em;
899899
}
900900
.ui-widget.ui-widget-content {
901-
border: 1px solid #d3d3d3;
901+
border: 1px solid var(--bs-border-color);
902902
}
903903
.ui-widget-content {
904-
border: 1px solid #aaaaaa;
905-
background: #ffffff;
906-
color: #222222;
904+
border: 1px solid var(--bs-border-color);
905+
background: var(--bs-body-bg);
906+
color: var(--bs-body-color);
907907
}
908908
.ui-widget-content a {
909-
color: #222222;
909+
color: var(--bs-link-color);
910910
}
911911
.ui-widget-header {
912-
border: 1px solid #aaaaaa;
913-
background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
914-
color: #222222;
912+
border: 1px solid var(--bs-border-color);
913+
background: var(--bs-secondary-bg);
914+
color: var(--bs-secondary-color);
915915
font-weight: bold;
916916
}
917917
.ui-widget-header a {
918-
color: #222222;
918+
color: var(--bs-link-color);
919919
}
920920

921921
/* Interaction states

0 commit comments

Comments
 (0)