]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
clean: remove various "@debug" in SCSS
authorNicolas Coden <nicolas@ncoden.fr>
Wed, 19 Sep 2018 22:01:04 +0000 (00:01 +0200)
committerNicolas Coden <nicolas@ncoden.fr>
Wed, 19 Sep 2018 22:01:04 +0000 (00:01 +0200)
scss/xy-grid/_cell.scss
test/sass/_selector.scss

index 1d578d79d349df00e71aa54cbd1c82a80ab494e3..b851b6ab61071525d38e6c2f9673819c92247b7e 100644 (file)
   $direction: if($vertical == true, height, width);
 
   @if (type-of($sizes) == 'map') {
-    @debug 'gen';
     @include -zf-breakpoint-value(auto, $sizes) {
-      @debug $-zf-bp-value;
       #{$direction}: $-zf-bp-value;
     }
   }
index 8e47ae7caf29331d599d8e80b4c35b4e23ac7255..9385f06dc5e552bfdf205665b49465725887d434 100755 (executable)
@@ -3,13 +3,11 @@
 @import '../../scss/util/selector';
 
 @include test-module('Selector') {
-  
+
        @include test('Selector [function]') {
          $test: #{text-inputs(text password)};
          $expect: "[type='text'], [type='password']";
 
-         //@debug $test;
-
          @include assert-equal($test, $expect,
            'Creates a selector out of a list of text input types');
        }
@@ -18,8 +16,6 @@
          $test: #{text-inputs(text password, $modifier: ':focus')};
          $expect: "[type='text']:focus, [type='password']:focus";
 
-         //@debug $test;
-
          @include assert-equal($test, $expect,
            'Creates a selector out of a list of text input types with a modifier');
        }