charcoalcore 0.0.1.5 → 0.0.1.6
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.
@@ -79,9 +79,14 @@
|
|
79
79
|
* .selector { @include backgroundimage(bckg-btn-dwlmenu, png); }
|
80
80
|
*/
|
81
81
|
|
82
|
+
$module: false !default;
|
83
|
+
|
82
84
|
@mixin backgroundimage($name, $ext, $pos:top left, $repeat: no-repeat, $bgcolor:transparent) {
|
83
|
-
|
84
|
-
|
85
|
+
@if $module == true {
|
86
|
+
background: url('get-asset-images?a=#{$name}.#{$ext}') $pos $repeat $bgcolor;
|
87
|
+
}@elseif $module == false {
|
88
|
+
background: image-url('#{$name}.#{$ext}') $pos $repeat $bgcolor;
|
89
|
+
}
|
85
90
|
}
|
86
91
|
|
87
92
|
|
Binary file
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// This is where you put the contents of the main stylesheet for the user's project.
|
2
2
|
// It should import your sass stylesheets and demonstrate how to use them.
|
3
3
|
|
4
|
-
|
5
|
-
@import "../../stylesheets/charcoalcore/_core-functions";
|
4
|
+
@import "compass/css3";
|
5
|
+
@import "../../stylesheets/charcoalcore/_core-functions";
|
metadata
CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
|
|
6
6
|
- 0
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.0.1.
|
9
|
+
- 6
|
10
|
+
version: 0.0.1.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Responsiveness
|
@@ -45,6 +45,7 @@ files:
|
|
45
45
|
- stylesheets/_charcoalcore.scss
|
46
46
|
- stylesheets/charcoalcore/_core-functions.scss
|
47
47
|
- stylesheets/charcoalcore/_responsive-grid.scss
|
48
|
+
- templates/project/images/technics-q-c-640-480-9.jpg
|
48
49
|
- templates/project/manifest.rb
|
49
50
|
- templates/project/screen.css
|
50
51
|
- templates/project/screen.scss
|