Skip to content

Commit

Permalink
OXDEV-512 Fix the disabled input CSS
Browse files Browse the repository at this point in the history
Add Changelog entry for 6702 ("Disabled controls are not clearly visible as not writable")
  • Loading branch information
sebbbbauer committed Nov 14, 2017
1 parent 835a42e commit cc4d53c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- https://bugs.oxid-esales.com/view.php?id=6668
- https://bugs.oxid-esales.com/view.php?id=6711

- [Disabled controls are not clearly visible as not writable](https://bugs.oxid-esales.com/view.php?id=6702)

### Security

## [6.0.0-rc.3] - 2017-11-02
Expand Down
6 changes: 5 additions & 1 deletion source/out/admin/src/main_facelift.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,17 @@ input[type="text"], select {
padding: 3px;
font-size: 12px;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
background: #fff
background: #fff;
}

select {
min-height: 25px
}

input:disabled, select:disabled, textarea:disabled {
background-color: rgb(235, 235, 228);
}

.saveButton, input[type="submit"], input[type="button"] {
-moz-user-select: none;
border: 1px solid #ddd;
Expand Down

0 comments on commit cc4d53c

Please sign in to comment.