Commit 1756f679 authored by Sven Franck's avatar Sven Franck

plugins: fixed checkbox/radio icon not displaying correctly

parent 57ce3fc1
......@@ -6,6 +6,7 @@
* 5. add JQM compat at end
* 6. replace all updated name in code... times
* 7. JQM uses carat-t/b/l/r, add those to caret-left/right/top/bottom
* 8. Add checkbox-on/off, radio on/off to icons (why JQM, why????)
*/
/*!
......@@ -25,7 +26,8 @@
font-style: normal;
}
html [class^="ui-icon-"]:after,
html [class*=" ui-icon-"]:after {
html [class*=" ui-icon-"]:after,
html .ui-checkbox-on:after, html .ui-checkbox-off:after, html .ui-radio-on:after, html .ui-radio-off:after {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
......@@ -408,6 +410,7 @@ html .ui-icon-share-square-o:after {
content: "\f045";
}
html .ui-icon-check-square-o:after,
html .ui-icon-checkbox-on:after,
html .ui-checkbox-on:after {
content: "\f046";
}
......@@ -638,6 +641,7 @@ html .ui-icon-phone:after {
content: "\f095";
}
html .ui-icon-square-o:after,
html .ui-icon-checkbox-off:after,
html .ui-checkbox-off:after {
content: "\f096";
}
......
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