Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion emhttp/plugins/dynamix/sheets/BrowseButton.css
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ i.job {
}
.ui-dfm .ui-dialog-titlebar-close {
background: transparent;
border: none;
border: none !important;
font-size: 1.8rem !important;
margin-top: -20px !important;
margin-right: -18px !important;
Expand Down
21 changes: 13 additions & 8 deletions emhttp/plugins/dynamix/styles/default-dynamix.css
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -1738,18 +1738,23 @@ div.icon-zip {
}

.ui-widget-header {
border: none;
background: var(--dynamix-jquery-ui-header-background);
color: var(--dynamix-jquery-ui-header-color);
font-weight: bold;
border: none !important;
background: var(--dynamix-jquery-ui-header-background) !important;
color: var(--dynamix-jquery-ui-header-color) !important;
font-weight: bold !important;
}

.ui-widget-content {
border: 1px solid var(--dynamix-jquery-ui-border-color);
background: var(--dynamix-jquery-ui-content-background);
color: var(--dynamix-jquery-ui-content-color);
border: 1px solid var(--dynamix-jquery-ui-border-color) !important;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't love adding !important to these classes, this could cause issues on other containers, why is the cascade wrong here?

background: var(--dynamix-jquery-ui-content-background) !important;
color: var(--dynamix-jquery-ui-content-color) !important;
}
.ui-dialog .ui-dialog-buttonpane {
border-width: 1px 0 0 0 !important;
}
.ui-dialog .ui-dialog-content {
border: 0 !important;
}

.ui-state-active {
background: var(--dynamix-jquery-ui-active-background);
}
Expand Down
Loading