diff --git a/theme/neo-quitter/css/display.css b/theme/neo-quitter/css/display.css index 773f397f71..8c3845be7a 100644 --- a/theme/neo-quitter/css/display.css +++ b/theme/neo-quitter/css/display.css @@ -968,13 +968,30 @@ background:none; height: 60px; } +.checkbox-wrapper.checked label.checkbox, .checkbox-wrapper.unchecked label.checkbox { - background: url("../images/lock_open.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); + background-image:none; } +.checkbox-wrapper.checked label.checkbox:before, +.checkbox-wrapper.unchecked label.checkbox:before { + content: "\f023"; + display: block; + font: 20px/1 "fa"; + height: 35px; + left: 0px; + position: absolute; + top: 0px; + width: 35px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color:rgba(0,0,0,0.6); + text-indent:0; + text-align:left; +} -.checkbox-wrapper.checked label.checkbox { - background: url("../images/lock.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); +.checkbox-wrapper.unchecked label.checkbox:before { + content: "\f09c"; } .form_notice label.notice_data-attach { diff --git a/theme/neo-quitter/images/lock.png b/theme/neo-quitter/images/lock.png deleted file mode 100644 index f0357ae21e..0000000000 Binary files a/theme/neo-quitter/images/lock.png and /dev/null differ diff --git a/theme/neo-quitter/images/lock_open.png b/theme/neo-quitter/images/lock_open.png deleted file mode 100644 index 1783dd55c4..0000000000 Binary files a/theme/neo-quitter/images/lock_open.png and /dev/null differ