Browse Source

Rounded corner not visible

pull/5312/head
Ruud 10 years ago
parent
commit
c8ff637c4b
  1. 2
      couchpotato/core/media/movie/_base/static/list.js
  2. 1
      couchpotato/core/media/movie/_base/static/movie.scss
  3. 2
      couchpotato/static/scripts/combined.plugins.min.js
  4. 2
      couchpotato/static/style/combined.min.css

2
couchpotato/core/media/movie/_base/static/list.js

@ -50,7 +50,7 @@ var MovieList = new Class({
},
'change:relay(.movie input)': function(e, el){
(e).stopPropagation();
el = el.getParent();
el = el.getParent('.movie');
var klass = el.retrieve('klass');
klass.fireEvent('select');
klass.select(klass.select_checkbox.get('checked'));

1
couchpotato/core/media/movie/_base/static/movie.scss

@ -6,7 +6,6 @@ $mass_edit_height: 44px;
bottom: auto;
z-index: 21;
height: $header_height;
background: $background_color;
.scroll_content {
display: none;

2
couchpotato/static/scripts/combined.plugins.min.js

@ -475,7 +475,7 @@ var MovieList = new Class({
},
"change:relay(.movie input)": function(e, el) {
e.stopPropagation();
el = el.getParent();
el = el.getParent(".movie");
var klass = el.retrieve("klass");
klass.fireEvent("select");
klass.select(klass.select_checkbox.get("checked"));

2
couchpotato/static/style/combined.min.css

@ -95,7 +95,7 @@
.page.home .search_form .wrapper .results_container .results .media_result .options .title{width:140px;margin-right:2px}
}
.big_search{background:#eaeaea}
.page.movies{bottom:auto;z-index:21;height:80px;background:#FFF}
.page.movies{bottom:auto;z-index:21;height:80px}
.page.movies_manage,.page.movies_wanted{top:80px;padding:0;will-change:top;transition:top 300ms cubic-bezier(.9,0,.1,1)}
@media (max-width:480px){.page.movies{height:44px}
.page.movies_manage,.page.movies_wanted{top:44px}

Loading…
Cancel
Save