Browse Source

Simplify mixin loading

pull/5180/head
Ruud 10 years ago
parent
commit
0e7b787465
  1. 5
      config.rb
  2. 2
      couchpotato/core/media/_base/search/static/search.scss
  3. 2
      couchpotato/core/media/movie/_base/static/movie.scss
  4. 2
      couchpotato/core/plugins/category/static/category.scss
  5. 2
      couchpotato/core/plugins/log/static/log.scss
  6. 2
      couchpotato/core/plugins/profile/static/profile.scss
  7. 2
      couchpotato/core/plugins/quality/static/quality.scss

5
config.rb

@ -29,9 +29,8 @@ http_path = "/"
## ##
## You probably don't need to edit anything below this. ## You probably don't need to edit anything below this.
## ##
sass_dir = "./couchpotato/static/style"
sass_dir = "./" css_dir = "./couchpotato/static/style"
css_dir = "./static/style_compiled"
# You can select your preferred output style here (can be overridden via the command line): # You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed # output_style = :expanded or :nested or :compact or :compressed

2
couchpotato/core/media/_base/search/static/search.scss

@ -1,4 +1,4 @@
@import "couchpotato/static/style/_mixins"; @import "_mixins";
.search_form { .search_form {
display: inline-block; display: inline-block;

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

@ -1,4 +1,4 @@
@import "couchpotato/static/style/_mixins"; @import "_mixins";
$mass_edit_height: 44px; $mass_edit_height: 44px;

2
couchpotato/core/plugins/category/static/category.scss

@ -1,4 +1,4 @@
@import "couchpotato/static/style/_mixins"; @import "_mixins";
.add_new_category { .add_new_category {
padding: 20px; padding: 20px;

2
couchpotato/core/plugins/log/static/log.scss

@ -1,4 +1,4 @@
@import "couchpotato/static/style/_mixins"; @import "_mixins";
.page.log { .page.log {

2
couchpotato/core/plugins/profile/static/profile.scss

@ -1,4 +1,4 @@
@import "couchpotato/static/style/_mixins"; @import "_mixins";
.add_new_profile { .add_new_profile {
padding: 20px; padding: 20px;

2
couchpotato/core/plugins/quality/static/quality.scss

@ -1,4 +1,4 @@
@import "couchpotato/static/style/_mixins"; @import "_mixins";
.group_sizes { .group_sizes {

Loading…
Cancel
Save