diff --git a/couchpotato/core/plugins/movie/static/search.css b/couchpotato/core/plugins/movie/static/search.css index bea734ee..957a3cd4 100644 --- a/couchpotato/core/plugins/movie/static/search.css +++ b/couchpotato/core/plugins/movie/static/search.css @@ -22,7 +22,7 @@ margin: 0 0 -5px -20px; top: 4px; right: 5px; - background: url('../images/checks.png') right -36px no-repeat; + background: url('../images/sprite.png') right -36px no-repeat; cursor: pointer; } diff --git a/couchpotato/static/images/checks.png b/couchpotato/static/images/checks.png deleted file mode 100644 index 3561d917..00000000 Binary files a/couchpotato/static/images/checks.png and /dev/null differ diff --git a/couchpotato/static/images/sprite.png b/couchpotato/static/images/sprite.png new file mode 100644 index 00000000..5d753c97 Binary files /dev/null and b/couchpotato/static/images/sprite.png differ diff --git a/couchpotato/static/style/main.css b/couchpotato/static/style/main.css index 239bb87b..4392e9c3 100644 --- a/couchpotato/static/style/main.css +++ b/couchpotato/static/style/main.css @@ -258,15 +258,14 @@ body > .spinner, .mask{ height: 16px; width: 16px; cursor: pointer; + background: url('../images/sprite.png') no-repeat -200px; } .check.highlighted { background-color: #424c59; } - .check.checked { - background-image: url('../images/checks.png'); - background-position: -2px 0; -} -.check input { - display: none !important; -} + .check.checked { background-position: -2px 0; } + .check.indeterminate { background-position: -1px -119px; } + .check input { + display: none !important; + } .select { cursor: pointer; @@ -281,14 +280,14 @@ body > .spinner, .mask{ box-shadow: 0 1px 1px rgba(0,0,0,0.35), inset 0 1px 0px rgba(255,255,255,0.20); - background: url('../images/checks.png') no-repeat 94% -53px, -webkit-gradient( + background: url('../images/sprite.png') no-repeat 94% -53px, -webkit-gradient( linear, left bottom, left top, color-stop(0, #406db8), color-stop(1, #5b9bd1) ); - background: url('../images/checks.png') no-repeat 94% -53px, -moz-linear-gradient( + background: url('../images/sprite.png') no-repeat 94% -53px, -moz-linear-gradient( center top, #5b9bd1 0%, #406db8 100% diff --git a/couchpotato/static/style/page/settings.css b/couchpotato/static/style/page/settings.css index e85651e1..c780e566 100644 --- a/couchpotato/static/style/page/settings.css +++ b/couchpotato/static/style/page/settings.css @@ -117,22 +117,6 @@ vertical-align: middle; padding-left: 2%; } - - .check { - display: inline-block; - vertical-align: middle; - height: 16px; - width: 16px; - cursor: pointer; - } - .check.highlighted { background-color: #424c59; } - .check.checked { - background-image: url('../../images/checks.png'); - background-position: -2px 0; -} - .check input { - display: none; - } .page .check + .formHint { float: none; @@ -354,28 +338,28 @@ border-radius: 2px; } .page .tag_input > ul:hover > li.choice { - background: url('../images/checks.png') no-repeat 94% -53px, -webkit-gradient( + background: url('../images/sprite.png') no-repeat 94% -53px, -webkit-gradient( linear, left bottom, left top, color-stop(0, rgba(255,255,255,0.1)), color-stop(1, rgba(255,255,255,0.3)) ); - background: url('../images/checks.png') no-repeat 94% -53px, -moz-linear-gradient( + background: url('../images/sprite.png') no-repeat 94% -53px, -moz-linear-gradient( center top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100% ); } .page .tag_input > ul > li.choice:hover { - background: url('../images/checks.png') no-repeat 94% -53px, -webkit-gradient( + background: url('../images/sprite.png') no-repeat 94% -53px, -webkit-gradient( linear, left bottom, left top, color-stop(0, #406db8), color-stop(1, #5b9bd1) ); - background: url('../images/checks.png') no-repeat 94% -53px, -moz-linear-gradient( + background: url('../images/sprite.png') no-repeat 94% -53px, -moz-linear-gradient( center top, #5b9bd1 0%, #406db8 100%