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 +4 -4
- data/lib/brevis.rb +1 -1
- data/stylesheets/README.md +3 -7
- data/stylesheets/brevis_utilities/_mediablock.scss +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae2a40f75eca46563144c27e208a4bbad31c61d4
|
4
|
+
data.tar.gz: 1b143f3862502ce4f8650de2d80e645c7db8d5cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97bf8357bad2c09bcf697a9e3cb493e30aa6c3c5a886c43cad87320a5099450bbfd8c50b42531dd36c12cfad28b5b942a9bee129bd999a834d6b7f9a8a8e677d
|
7
|
+
data.tar.gz: 8f05d56bd189de01454c16b8104f4ebfb01288a8bbd32ad53d1889bd5510b7a404baaa96346a5b510ff6353984cf10154881dd959dfe4c5f1a9d7537e87dff22
|
data/lib/brevis.rb
CHANGED
data/stylesheets/README.md
CHANGED
@@ -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
|
-
####
|
93
|
+
#### base.styles.scss
|
94
94
|
This file aggregates all the components into a single file.
|
95
95
|
|
96
|
-
####
|
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
|
-
####
|
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
|
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,
|