brevis 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb83dd129c00c0d7dfc0760d98a7ada430e72a51
4
- data.tar.gz: 7aeaff74e37d5bb2da0b95b5fcc1839d03897e3a
3
+ metadata.gz: ae2a40f75eca46563144c27e208a4bbad31c61d4
4
+ data.tar.gz: 1b143f3862502ce4f8650de2d80e645c7db8d5cd
5
5
  SHA512:
6
- metadata.gz: 55e28d69be66ed064b7f067070d023ff911307ab57fd10b8e54b892e05bee8002f2a687323992cfca5890a27b58dc291993896f8bbcf73fc6a8df61f370c393f
7
- data.tar.gz: 5d58048df1f1b7c60a738b8e2f5d0d5c6e8c896f4864809d5355e8a29c5bcc1c1aafb3cb221fe12ec85a262601da855caded39cd7bbc9e7b89c33d30dbe8280d
6
+ metadata.gz: 97bf8357bad2c09bcf697a9e3cb493e30aa6c3c5a886c43cad87320a5099450bbfd8c50b42531dd36c12cfad28b5b942a9bee129bd999a834d6b7f9a8a8e677d
7
+ data.tar.gz: 8f05d56bd189de01454c16b8104f4ebfb01288a8bbd32ad53d1889bd5510b7a404baaa96346a5b510ff6353984cf10154881dd959dfe4c5f1a9d7537e87dff22
data/lib/brevis.rb CHANGED
@@ -19,7 +19,7 @@ Compass::Frameworks.register('brevis', :path => extension_path)
19
19
  # a prerelease version
20
20
  # Date is in the form of YYYY-MM-DD
21
21
  module Brevis
22
- VERSION = "0.2.3"
22
+ VERSION = "0.2.4"
23
23
  DATE = "2015-02-06"
24
24
  end
25
25
 
@@ -90,19 +90,15 @@ These files are the main entry points for the Sass compiler and shouldn't
90
90
  directly contain any CSS code, instead they only serves to combine the Sass
91
91
  contained in the partials (see below) through @import directives.
92
92
 
93
- #### nfl-team-base.styles.scss
93
+ #### base.styles.scss
94
94
  This file aggregates all the components into a single file.
95
95
 
96
- #### nfl-team-base.normalize.scss
97
- This file provides a CSS reset/normalize generated based on the legacy
98
- variables.
99
-
100
- #### nfl-team-base.hacks.scss
96
+ #### base.hacks.scss
101
97
  This file may be used to provide temporary hot-fixes for style issues that
102
98
  you plan to properly implement as components at a later point in time or simply
103
99
  don't have a proper solution for yet.
104
100
 
105
- #### nfl-team-base.no-query.scss
101
+ #### base.no-query.scss
106
102
  This file re-renders the same contents as the styles.scss file but without any
107
103
  media queries. It can be used as a fallback for for older browsers that don't
108
104
  support media queries. You can find more information about this on the
@@ -46,8 +46,8 @@ $default-mediablock-bg-path: "images/icons/bulldog_transparent.png";
46
46
  float: left;
47
47
  margin-right: 20px;
48
48
  margin-bottom: 0px;
49
- width: $mediablock-img-max-sm;
50
- height: $mediablock-img-max-sm;
49
+ max-width: $mediablock-img-max-sm;
50
+ max-height: $mediablock-img-max-sm;
51
51
  @if $default-img-bg {
52
52
  background: 50% rgba(239, 243, 241, 0.56) no-repeat url("#{$default-mediablock-bg-path}");
53
53
  background-size: $mediablock-img-max-sm;
@@ -56,8 +56,8 @@ $default-mediablock-bg-path: "images/icons/bulldog_transparent.png";
56
56
  @include breakpoint($tablet-landscape) {
57
57
  margin-right: 45px;
58
58
  margin-bottom: 5px;
59
- width: $mediablock-img-max-lg;
60
- height: $mediablock-img-max-lg;
59
+ max-width: $mediablock-img-max-lg;
60
+ max-height: $mediablock-img-max-lg;
61
61
  }
62
62
  }
63
63
  &.icon {
@@ -95,7 +95,7 @@ $default-mediablock-bg-path: "images/icons/bulldog_transparent.png";
95
95
  @mixin mediablock-tight-view (
96
96
  $unit-name: ".views-row",
97
97
  $image-field: ".pane-node-field-shared-image",
98
- $title-field: ".pane-node-title, .pane-butler-core-node-title-pane",
98
+ $title-field: ".pane-node-title",
99
99
  $body-field: ".pane-node-body",
100
100
  $default-img-bg: false,
101
101
  $larger-thumb-desktop: false,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brevis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kendall Totten