Commit 7954b287 authored by Ed Chatelain's avatar Ed Chatelain

fix checkbox css for IE9, and line-through when checked after an edit of the item

parent 973b3c70
...@@ -548,6 +548,12 @@ body { ...@@ -548,6 +548,12 @@ body {
text-decoration: line-through; text-decoration: line-through;
} }
/* When checkbox is selected, score through todo item content after an edit */
.dijitCheckBoxChecked + .dijitInline + .todo-content {
color: #666;
text-decoration: line-through;
}
/** Override Claro's CSS rule to style application like other examples */ /** Override Claro's CSS rule to style application like other examples */
.claro .dijitInlineEditBoxDisplayModeHover { .claro .dijitInlineEditBoxDisplayModeHover {
background-color: white; background-color: white;
...@@ -558,6 +564,11 @@ body { ...@@ -558,6 +564,11 @@ body {
background-image: none; background-image: none;
} }
/* Need to have the background-image on IE */
.dj_ie .claro .dijitCheckBox, .claro .dijitCheckBoxIcon {
background-image: url("form/images/checkboxRadioButtonStates.png");
}
.dijitCheckBoxInput { .dijitCheckBoxInput {
opacity: 1; opacity: 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment