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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01e696c3f4283406dd94da1df5e43ca718bbdf2d
4
- data.tar.gz: 0dc3bbd0da50961eb8537762b09e027b84f37362
3
+ metadata.gz: 7650298fbc0cbd6f962ad2b354809d08f9bb74ee
4
+ data.tar.gz: 90be009ba5e52a09187ca7c3a119486dd6a0efee
5
5
  SHA512:
6
- metadata.gz: 7f15f3f566d8889f262396f9a8db0d64b83358aded15d43c23fd3826fa4230430208e1c3827b68df5d8dbbafce6a7fb2996da9e08f874fd7706ddc5449a93b04
7
- data.tar.gz: 7ccdaa7d6e91e0416f8ae487576f4760b1ff265472ccdc2cf833216a4a4bc19f40a3572122e0774da234970c20e9d1a99ee9bc095294da04af1fd77169be4ce5
6
+ metadata.gz: 97bd26d732a7e23dac72c1f79a26869358f3523d56e0a20c66217ea9e6ecc9277ba94c7f279ad726f9776cee21b1a8dc0262a7c95983f6deeaab9d7e7a5cdcee
7
+ data.tar.gz: 35c019f1f821eaacdfea84b1d0e804f4c8f33bc890e3ee0c996ab088af479ed34cec7a6ebc26e769e51fd591a18f15cc1dea55d6f0fdf4d8020a2c0f6d3ff382
data/lib/brevis.rb CHANGED
@@ -17,7 +17,7 @@ Compass::Frameworks.register('brevis', :path => extension_path)
17
17
  # a prerelease version
18
18
  # Date is in the form of YYYY-MM-DD
19
19
  module Brevis
20
- VERSION = "0.1.2"
20
+ VERSION = "0.1.3"
21
21
  DATE = "2015-01-28"
22
22
  end
23
23
 
@@ -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";
@@ -1,4 +1,6 @@
1
- @mixin site-logo ($logoname: "logo" $logoname-mobile: "logo-mobile" ) {
1
+ @mixin site-logo (
2
+ $logoname: "logo",
3
+ $logoname-mobile: "logo-mobile") {
2
4
  display: block;
3
5
  overflow: hidden;
4
6
  background: no-repeat 0 0;
@@ -98,7 +98,7 @@
98
98
 
99
99
  %content-stream-image-md {@include content-stream-image-md;}
100
100
 
101
- @include content-stream-image-lg {
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: "../../blueprint";
5
- $base-images: "../../blueprint/blueprint_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($filename, $position: 0, $height: 20px, $width: 20px, $spacing: 10px, $bg-color: transparent, $repeat: no-repeat, $attachment: scroll, $source: #{$base-images}, $no-svg-class: ".no-svg", $pseudo: "before") {
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, $source: #{$base-images}, $no-svg-class: ".lt-ie9", $pseudo: "before") {
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($content: attr(data-tooltip), $direction: top) {
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
- &:after // for text bubble {
10
+ // for text bubble
11
+ &:after {
9
12
  content: $content;
10
13
  display: block;
11
14
  position: absolute;
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.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kendall Totten