compass-ui 0.0.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.
Files changed (94) hide show
  1. data/.gitignore +10 -0
  2. data/CHANGELOG.md +22 -0
  3. data/Gemfile +3 -0
  4. data/Gemfile.lock +22 -0
  5. data/LICENSE.md +30 -0
  6. data/README.md +81 -0
  7. data/compass-ui.gemspec +23 -0
  8. data/demos/config.rb +26 -0
  9. data/demos/images/absolution/selector.png +0 -0
  10. data/demos/images/absolution/ui-icons_222222_256x240.png +0 -0
  11. data/demos/images/absolution/ui-icons_eeeeee_256x240.png +0 -0
  12. data/demos/images/absolution/ui-icons_ffffff_256x240.png +0 -0
  13. data/demos/images/dot-luv/ui-bg_diagonals-thick_15_0b3e6f_40x40.png +0 -0
  14. data/demos/images/dot-luv/ui-bg_dots-medium_30_0b58a2_4x4.png +0 -0
  15. data/demos/images/dot-luv/ui-bg_dots-small_20_333333_2x2.png +0 -0
  16. data/demos/images/dot-luv/ui-bg_dots-small_30_a32d00_2x2.png +0 -0
  17. data/demos/images/dot-luv/ui-bg_dots-small_40_00498f_2x2.png +0 -0
  18. data/demos/images/dot-luv/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  19. data/demos/images/dot-luv/ui-bg_flat_40_292929_40x100.png +0 -0
  20. data/demos/images/dot-luv/ui-bg_gloss-wave_20_111111_500x100.png +0 -0
  21. data/demos/images/dot-luv/ui-icons_00498f_256x240.png +0 -0
  22. data/demos/images/dot-luv/ui-icons_98d2fb_256x240.png +0 -0
  23. data/demos/images/dot-luv/ui-icons_9ccdfc_256x240.png +0 -0
  24. data/demos/images/dot-luv/ui-icons_ffffff_256x240.png +0 -0
  25. data/demos/images/jquery-ui-base/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  26. data/demos/images/jquery-ui-base/ui-bg_flat_75_ffffff_40x100.png +0 -0
  27. data/demos/images/jquery-ui-base/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  28. data/demos/images/jquery-ui-base/ui-bg_glass_65_ffffff_1x400.png +0 -0
  29. data/demos/images/jquery-ui-base/ui-bg_glass_75_dadada_1x400.png +0 -0
  30. data/demos/images/jquery-ui-base/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  31. data/demos/images/jquery-ui-base/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  32. data/demos/images/jquery-ui-base/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  33. data/demos/images/jquery-ui-base/ui-icons_222222_256x240.png +0 -0
  34. data/demos/images/jquery-ui-base/ui-icons_2e83ff_256x240.png +0 -0
  35. data/demos/images/jquery-ui-base/ui-icons_454545_256x240.png +0 -0
  36. data/demos/images/jquery-ui-base/ui-icons_888888_256x240.png +0 -0
  37. data/demos/images/jquery-ui-base/ui-icons_cd0a0a_256x240.png +0 -0
  38. data/demos/index.html +65 -0
  39. data/demos/js/demo.js +189 -0
  40. data/demos/sass/_base.scss +5 -0
  41. data/demos/sass/_demo.scss +124 -0
  42. data/demos/sass/_normalize.scss +387 -0
  43. data/demos/sass/absolution.scss +3 -0
  44. data/demos/sass/color-test.scss +111 -0
  45. data/demos/sass/default.scss +3 -0
  46. data/demos/sass/dot-luv.scss +3 -0
  47. data/demos/sass/ie.scss +5 -0
  48. data/demos/sass/print.scss +3 -0
  49. data/demos/sass/smoothness.scss +3 -0
  50. data/demos/sections/accordion.html +56 -0
  51. data/demos/sections/autocomplete.html +6 -0
  52. data/demos/sections/buttons.html +19 -0
  53. data/demos/sections/combinations.html +41 -0
  54. data/demos/sections/datepicker.html +6 -0
  55. data/demos/sections/dialog.html +8 -0
  56. data/demos/sections/form.html +26 -0
  57. data/demos/sections/highlights.html +16 -0
  58. data/demos/sections/icons.html +219 -0
  59. data/demos/sections/overlay.html +14 -0
  60. data/demos/sections/progressbar.html +6 -0
  61. data/demos/sections/sliders.html +19 -0
  62. data/demos/sections/tabs.html +12 -0
  63. data/lib/compass-ui.rb +2 -0
  64. data/lib/compass-ui/compass_plugin.rb +5 -0
  65. data/lib/compass-ui/version.rb +3 -0
  66. data/stylesheets/_compass-ui.scss +1 -0
  67. data/stylesheets/compass-ui/_colors.scss +67 -0
  68. data/stylesheets/compass-ui/_jquery-ui.scss +13 -0
  69. data/stylesheets/compass-ui/jquery-ui/_accordion.scss +50 -0
  70. data/stylesheets/compass-ui/jquery-ui/_autocomplete.scss +56 -0
  71. data/stylesheets/compass-ui/jquery-ui/_button.scss +101 -0
  72. data/stylesheets/compass-ui/jquery-ui/_core.scss +89 -0
  73. data/stylesheets/compass-ui/jquery-ui/_datepicker.scss +167 -0
  74. data/stylesheets/compass-ui/jquery-ui/_dialog.scss +61 -0
  75. data/stylesheets/compass-ui/jquery-ui/_progressbar.scss +17 -0
  76. data/stylesheets/compass-ui/jquery-ui/_resizable.scss +78 -0
  77. data/stylesheets/compass-ui/jquery-ui/_selectable.scss +15 -0
  78. data/stylesheets/compass-ui/jquery-ui/_slider.scss +55 -0
  79. data/stylesheets/compass-ui/jquery-ui/_tabs.scss +53 -0
  80. data/stylesheets/compass-ui/jquery-ui/_theme.scss +796 -0
  81. data/stylesheets/compass-ui/theme/_absolution.scss +151 -0
  82. data/stylesheets/compass-ui/theme/_dot-luv.scss +115 -0
  83. data/stylesheets/compass-ui/theme/_jquery-ui-base.scss +160 -0
  84. data/stylesheets/compass-ui/theme/_smoothness.scss +35 -0
  85. data/stylesheets/compass-ui/theme/absolution/_accordion.scss +65 -0
  86. data/stylesheets/compass-ui/theme/absolution/_autocomplete.scss +41 -0
  87. data/stylesheets/compass-ui/theme/absolution/_datepicker.scss +149 -0
  88. data/stylesheets/compass-ui/theme/absolution/_dialog.scss +84 -0
  89. data/stylesheets/compass-ui/theme/absolution/_progressbar.scss +14 -0
  90. data/stylesheets/compass-ui/theme/absolution/_slider.scss +50 -0
  91. data/stylesheets/compass-ui/theme/absolution/_tabs.scss +68 -0
  92. data/templates/project/_compass-ui.scss +2 -0
  93. data/templates/project/manifest.rb +12 -0
  94. metadata +150 -0
@@ -0,0 +1,2 @@
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.
@@ -0,0 +1,12 @@
1
+ description "Compass-UI is a jQuery UI theme builder for the Compass CSS Authoring Framework."
2
+
3
+ stylesheet '_compass-ui.sass', :media => 'screen, projection'
4
+
5
+ help %Q{
6
+ Installs some basic html, a stylesheet partial, and some jQuery bootstrapping
7
+ that you can use directory or refer to as as an example.
8
+ }
9
+
10
+ welcome_message %Q{
11
+ Welcome...more to come.
12
+ }
metadata ADDED
@@ -0,0 +1,150 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: compass-ui
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Patrick Ward
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-09-04 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: compass
16
+ requirement: &2173155480 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.11.1
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *2173155480
25
+ description: Compass-UI is a jQuery UI theme builder for the Compass CSS Authoring
26
+ Framework.
27
+ email:
28
+ - oss@patrickward.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - .gitignore
34
+ - CHANGELOG.md
35
+ - Gemfile
36
+ - Gemfile.lock
37
+ - LICENSE.md
38
+ - README.md
39
+ - compass-ui.gemspec
40
+ - demos/config.rb
41
+ - demos/images/absolution/selector.png
42
+ - demos/images/absolution/ui-icons_222222_256x240.png
43
+ - demos/images/absolution/ui-icons_eeeeee_256x240.png
44
+ - demos/images/absolution/ui-icons_ffffff_256x240.png
45
+ - demos/images/dot-luv/ui-bg_diagonals-thick_15_0b3e6f_40x40.png
46
+ - demos/images/dot-luv/ui-bg_dots-medium_30_0b58a2_4x4.png
47
+ - demos/images/dot-luv/ui-bg_dots-small_20_333333_2x2.png
48
+ - demos/images/dot-luv/ui-bg_dots-small_30_a32d00_2x2.png
49
+ - demos/images/dot-luv/ui-bg_dots-small_40_00498f_2x2.png
50
+ - demos/images/dot-luv/ui-bg_flat_0_aaaaaa_40x100.png
51
+ - demos/images/dot-luv/ui-bg_flat_40_292929_40x100.png
52
+ - demos/images/dot-luv/ui-bg_gloss-wave_20_111111_500x100.png
53
+ - demos/images/dot-luv/ui-icons_00498f_256x240.png
54
+ - demos/images/dot-luv/ui-icons_98d2fb_256x240.png
55
+ - demos/images/dot-luv/ui-icons_9ccdfc_256x240.png
56
+ - demos/images/dot-luv/ui-icons_ffffff_256x240.png
57
+ - demos/images/jquery-ui-base/ui-bg_flat_0_aaaaaa_40x100.png
58
+ - demos/images/jquery-ui-base/ui-bg_flat_75_ffffff_40x100.png
59
+ - demos/images/jquery-ui-base/ui-bg_glass_55_fbf9ee_1x400.png
60
+ - demos/images/jquery-ui-base/ui-bg_glass_65_ffffff_1x400.png
61
+ - demos/images/jquery-ui-base/ui-bg_glass_75_dadada_1x400.png
62
+ - demos/images/jquery-ui-base/ui-bg_glass_75_e6e6e6_1x400.png
63
+ - demos/images/jquery-ui-base/ui-bg_glass_95_fef1ec_1x400.png
64
+ - demos/images/jquery-ui-base/ui-bg_highlight-soft_75_cccccc_1x100.png
65
+ - demos/images/jquery-ui-base/ui-icons_222222_256x240.png
66
+ - demos/images/jquery-ui-base/ui-icons_2e83ff_256x240.png
67
+ - demos/images/jquery-ui-base/ui-icons_454545_256x240.png
68
+ - demos/images/jquery-ui-base/ui-icons_888888_256x240.png
69
+ - demos/images/jquery-ui-base/ui-icons_cd0a0a_256x240.png
70
+ - demos/index.html
71
+ - demos/js/demo.js
72
+ - demos/sass/_base.scss
73
+ - demos/sass/_demo.scss
74
+ - demos/sass/_normalize.scss
75
+ - demos/sass/absolution.scss
76
+ - demos/sass/color-test.scss
77
+ - demos/sass/default.scss
78
+ - demos/sass/dot-luv.scss
79
+ - demos/sass/ie.scss
80
+ - demos/sass/print.scss
81
+ - demos/sass/smoothness.scss
82
+ - demos/sections/accordion.html
83
+ - demos/sections/autocomplete.html
84
+ - demos/sections/buttons.html
85
+ - demos/sections/combinations.html
86
+ - demos/sections/datepicker.html
87
+ - demos/sections/dialog.html
88
+ - demos/sections/form.html
89
+ - demos/sections/highlights.html
90
+ - demos/sections/icons.html
91
+ - demos/sections/overlay.html
92
+ - demos/sections/progressbar.html
93
+ - demos/sections/sliders.html
94
+ - demos/sections/tabs.html
95
+ - lib/compass-ui.rb
96
+ - lib/compass-ui/compass_plugin.rb
97
+ - lib/compass-ui/version.rb
98
+ - stylesheets/_compass-ui.scss
99
+ - stylesheets/compass-ui/_colors.scss
100
+ - stylesheets/compass-ui/_jquery-ui.scss
101
+ - stylesheets/compass-ui/jquery-ui/_accordion.scss
102
+ - stylesheets/compass-ui/jquery-ui/_autocomplete.scss
103
+ - stylesheets/compass-ui/jquery-ui/_button.scss
104
+ - stylesheets/compass-ui/jquery-ui/_core.scss
105
+ - stylesheets/compass-ui/jquery-ui/_datepicker.scss
106
+ - stylesheets/compass-ui/jquery-ui/_dialog.scss
107
+ - stylesheets/compass-ui/jquery-ui/_progressbar.scss
108
+ - stylesheets/compass-ui/jquery-ui/_resizable.scss
109
+ - stylesheets/compass-ui/jquery-ui/_selectable.scss
110
+ - stylesheets/compass-ui/jquery-ui/_slider.scss
111
+ - stylesheets/compass-ui/jquery-ui/_tabs.scss
112
+ - stylesheets/compass-ui/jquery-ui/_theme.scss
113
+ - stylesheets/compass-ui/theme/_absolution.scss
114
+ - stylesheets/compass-ui/theme/_dot-luv.scss
115
+ - stylesheets/compass-ui/theme/_jquery-ui-base.scss
116
+ - stylesheets/compass-ui/theme/_smoothness.scss
117
+ - stylesheets/compass-ui/theme/absolution/_accordion.scss
118
+ - stylesheets/compass-ui/theme/absolution/_autocomplete.scss
119
+ - stylesheets/compass-ui/theme/absolution/_datepicker.scss
120
+ - stylesheets/compass-ui/theme/absolution/_dialog.scss
121
+ - stylesheets/compass-ui/theme/absolution/_progressbar.scss
122
+ - stylesheets/compass-ui/theme/absolution/_slider.scss
123
+ - stylesheets/compass-ui/theme/absolution/_tabs.scss
124
+ - templates/project/_compass-ui.scss
125
+ - templates/project/manifest.rb
126
+ homepage: https://github.com/patrickward/compass-ui
127
+ licenses: []
128
+ post_install_message:
129
+ rdoc_options: []
130
+ require_paths:
131
+ - lib
132
+ required_ruby_version: !ruby/object:Gem::Requirement
133
+ none: false
134
+ requirements:
135
+ - - ! '>='
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ none: false
140
+ requirements:
141
+ - - ! '>='
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ requirements: []
145
+ rubyforge_project:
146
+ rubygems_version: 1.8.10
147
+ signing_key:
148
+ specification_version: 3
149
+ summary: jQuery UI theme builder for the Compass CSS Authoring Framework
150
+ test_files: []