fix-ie-picasso 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ require 'compass'
2
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+ Compass::Frameworks.register('fix-ie-picasso', :path => extension_path)
4
+
5
+ # path from the library file to where you're keeping your compass stuff.
6
+ base_directory = File.join(File.dirname(__FILE__), '..', 'compass')
7
+ Compass::Frameworks.register('fix-ie-picasso', :path => base_directory)
@@ -0,0 +1,20 @@
1
+ // This is your framework's main stylesheet. Use it to import all default modules.
2
+ @mixin fix-ie-popup() {
3
+ .ie7 & .popup-close, .ie8 & .popup-close {
4
+ background: url('maxi/images/picasso-popup.png');
5
+ }
6
+ }
7
+
8
+ @mixin popup-fixed-ie($background: $popup-default-background,
9
+ $border-radius: $popup-default-border-radius,
10
+ $box-shadow: $popup-default-box-shadow,
11
+ $background-border: $popup-default-background-border,
12
+ $background-border-opacity: $popup-default-background-border-opacity,
13
+ $close-button-background: $popup-default-close-button-background,
14
+ $close-button-color: $popup-default-close-button-color,
15
+ $title-background: $popup-default-title-background,
16
+ $title-color: $popup-default-title-color) {
17
+ @include popup($background, $border-radius, $box-shadow, $background-border, $background-border-opacity,
18
+ $close-button-background, $close-button-color, $title-background, $title-color);
19
+ @include fix-ie-popup();
20
+ }
@@ -0,0 +1,2 @@
1
+ # Make sure you list all the project template files here in the manifest.
2
+ stylesheet 'screen.scss', :media => 'screen, projection'
@@ -0,0 +1,3 @@
1
+ // This is where you put the contents of the main stylesheet for the user's project.
2
+ // It should import your sass stylesheets and demonstrate how to use them.
3
+ @import _fix-ie-picasso.scss
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fix-ie-picasso
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Eric Meyer
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: compass
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0.11'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0.11'
30
+ description: a ie7 and ie8 fix for images with Picasso framework
31
+ email: mbenedetto@despegar.com
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files: []
35
+ files:
36
+ - lib/fix-ie-picasso.rb
37
+ - stylesheets/_fix-ie-picasso.scss
38
+ - templates/project/manifest.rb
39
+ - templates/project/screen.scss
40
+ homepage: http://www.despegar.com/
41
+ licenses: []
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 1.8.24
61
+ signing_key:
62
+ specification_version: 3
63
+ summary: a ie7 and ie8 fix for images with Picasso framework
64
+ test_files: []