Skip to content

Commit

Permalink
fix multiple select options styling
Browse files Browse the repository at this point in the history
when the multiple select control loses focus, selected options are not showing as selected, because the background color styling has been reset. We need to put new styling in place.
  • Loading branch information
JohnRDOrazio authored and sculpt0r committed Feb 21, 2022
1 parent 6569ad7 commit b83fcf1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions skins/moono/reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ https://ckeditor.com/docs/ckeditor4/latest/guide/skin_sdk_reset.html
box-sizing: border-box;
}

.cke_reset_all select[multiple] option:checked
{
background-color: rgb(206, 206, 206);
}

.cke_reset_all table
{
table-layout: auto;
Expand Down

0 comments on commit b83fcf1

Please sign in to comment.