brevis 0.1.2 → 0.1.3
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/_brevis.scss +0 -1
- data/stylesheets/brevis_components/chrome/header/_branding.scss +3 -1
- data/stylesheets/brevis_components/content_lists/_content_stream.scss +1 -7
- data/stylesheets/brevis_utilities/_images.scss +18 -4
- data/stylesheets/brevis_utilities/_tooltip.scss +5 -2
- 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: 7650298fbc0cbd6f962ad2b354809d08f9bb74ee
|
4
|
+
data.tar.gz: 90be009ba5e52a09187ca7c3a119486dd6a0efee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97bd26d732a7e23dac72c1f79a26869358f3523d56e0a20c66217ea9e6ecc9277ba94c7f279ad726f9776cee21b1a8dc0262a7c95983f6deeaab9d7e7a5cdcee
|
7
|
+
data.tar.gz: 35c019f1f821eaacdfea84b1d0e804f4c8f33bc890e3ee0c996ab088af479ed34cec7a6ebc26e769e51fd591a18f15cc1dea55d6f0fdf4d8020a2c0f6d3ff382
|
data/lib/brevis.rb
CHANGED
data/stylesheets/_brevis.scss
CHANGED
@@ -22,7 +22,6 @@
|
|
22
22
|
@import "brevis_components/chrome/header/search";
|
23
23
|
@import "brevis_components/chrome/header/social";
|
24
24
|
|
25
|
-
@import "brevis_components/content_lists/content_carousel";
|
26
25
|
@import "brevis_components/content_lists/content_stream";
|
27
26
|
@import "brevis_components/content_lists/featured";
|
28
27
|
@import "brevis_components/content_lists/headlines";
|
@@ -98,7 +98,7 @@
|
|
98
98
|
|
99
99
|
%content-stream-image-md {@include content-stream-image-md;}
|
100
100
|
|
101
|
-
@
|
101
|
+
@mixin content-stream-image-lg {
|
102
102
|
@include image-pane {
|
103
103
|
width: 100%;
|
104
104
|
max-width: 100%;
|
@@ -344,12 +344,6 @@
|
|
344
344
|
|
345
345
|
@include breakpoint($tab-p-desk) {
|
346
346
|
@include fluid-grid(2, $padding: 1%);
|
347
|
-
.views-row-5, .views-row-6 //Show only 4 items {
|
348
|
-
display: none;
|
349
|
-
}
|
350
|
-
.views-row-4 {
|
351
|
-
margin-left: 0;
|
352
|
-
}
|
353
347
|
}
|
354
348
|
|
355
349
|
@include breakpoint($desktop) {
|
@@ -1,8 +1,8 @@
|
|
1
1
|
//////////////////////////////
|
2
2
|
// Blueprint theme paths - for use with interpolation syntax:
|
3
3
|
// background: url("#{$base-images}/image-name.png")
|
4
|
-
$base: "../../
|
5
|
-
$base-images: "../../
|
4
|
+
$base: "../../";
|
5
|
+
$base-images: "../../images";
|
6
6
|
|
7
7
|
$content-stream-img-sm: 50%;
|
8
8
|
$content-stream-img-md: 47.5%;
|
@@ -61,7 +61,18 @@ $content-stream-img-md: 47.5%;
|
|
61
61
|
// EXAMPLE:
|
62
62
|
// +img2x('puppies', 'png', 100px, 75px)
|
63
63
|
|
64
|
-
@mixin svg-bg(
|
64
|
+
@mixin svg-bg(
|
65
|
+
$filename,
|
66
|
+
$position: 0,
|
67
|
+
$height: 20px,
|
68
|
+
$width: 20px,
|
69
|
+
$spacing: 10px,
|
70
|
+
$bg-color: transparent,
|
71
|
+
$repeat: no-repeat,
|
72
|
+
$attachment: scroll,
|
73
|
+
$source: $base-images,
|
74
|
+
$no-svg-class: ".no-svg",
|
75
|
+
$pseudo: "before") {
|
65
76
|
&:#{$pseudo} {
|
66
77
|
content: "";
|
67
78
|
display: inline-block;
|
@@ -78,7 +89,10 @@ $content-stream-img-md: 47.5%;
|
|
78
89
|
}
|
79
90
|
}
|
80
91
|
|
81
|
-
@mixin svg-bg-simple($filename,
|
92
|
+
@mixin svg-bg-simple($filename,
|
93
|
+
$source: $base-images,
|
94
|
+
$no-svg-class: ".lt-ie9",
|
95
|
+
$pseudo: "before") {
|
82
96
|
background-image: url($source + "/" + $filename + ".svg");
|
83
97
|
#{$no-svg-class} & {
|
84
98
|
background-image: url($source + "/" + $filename + ".png");
|
@@ -1,11 +1,14 @@
|
|
1
|
-
@mixin hui_tooltip(
|
1
|
+
@mixin hui_tooltip(
|
2
|
+
$content: attr(data-tooltip),
|
3
|
+
$direction: top) {
|
2
4
|
position: relative;
|
3
5
|
&:before, &:after {
|
4
6
|
display: none;
|
5
7
|
z-index: 98;
|
6
8
|
}
|
7
9
|
&:hover {
|
8
|
-
|
10
|
+
// for text bubble
|
11
|
+
&:after {
|
9
12
|
content: $content;
|
10
13
|
display: block;
|
11
14
|
position: absolute;
|