Skip to content

Commit

Permalink
Fixed invisible configuration values in backend (#4085)
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano authored Jul 15, 2024
1 parent 0b27c5f commit 6ccaabf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion skin/adminhtml/default/default/boxes.css
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ select.multiselect option { padding:3px 4px; border-bottom:1px solid #ddd;
.field-100 input.input-text { float:left; width:100% !important; border:0 !important; padding:0 !important; }
@media screen and (-webkit-min-device-pixel-ratio:0) {
select option:disabled,
select:disabled option { color:#cacaca!important; }
select:disabled option { color:#999!important; }
}

/* Form List */ /* Table for default form data */
Expand Down
5 changes: 5 additions & 0 deletions skin/adminhtml/default/openmage/override.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions skin/adminhtml/default/openmage/scss/override.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1160,3 +1160,8 @@ img[src$='grid-cal.gif'] {
.emph, .accent {
color: $color_action !important;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
select option:disabled,
select:disabled option { color:#cacaca!important; }
}

0 comments on commit 6ccaabf

Please sign in to comment.