hpoydar-compass-aristo-plugin 0.2.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.
- data/.gitignore +5 -0
- data/Aristo-24.png +0 -0
- data/README.md +46 -0
- data/Rakefile +47 -0
- data/VERSION +1 -0
- data/compass-aristo-plugin.gemspec +96 -0
- data/config.rb +10 -0
- data/examples/aristo/.gitignore +1 -0
- data/examples/aristo/config.rb +9 -0
- data/examples/aristo/images/.gitignore +2 -0
- data/examples/aristo/index.html +299 -0
- data/examples/aristo/index.html.haml +235 -0
- data/examples/aristo/src/.gitignore +1 -0
- data/examples/aristo/src/screen.sass +71 -0
- data/examples/aristo/stylesheets/.gitignore +1 -0
- data/lib/aristo.rb +2 -0
- data/lib/aristo/compass_plugin.rb +5 -0
- data/lib/aristo/sass_extensions.rb +7 -0
- data/sass/aristo/_all.sass +6 -0
- data/sass/aristo/_buttons.sass +42 -0
- data/sass/aristo/_controls.sass +55 -0
- data/sass/aristo/_menus.sass +43 -0
- data/sass/aristo/_scrollbars.sass +66 -0
- data/sass/aristo/_text.sass +13 -0
- data/sass/aristo/_windows.sass +1 -0
- data/templates/project/aristo-button-bezel-blue-o.png +0 -0
- data/templates/project/aristo-button-bezel-blue-x.png +0 -0
- data/templates/project/aristo-button-bezel-o.png +0 -0
- data/templates/project/aristo-button-bezel-x.png +0 -0
- data/templates/project/aristo-checkbox-o.png +0 -0
- data/templates/project/aristo-checkbox-x.png +0 -0
- data/templates/project/aristo-menu-bg.png +0 -0
- data/templates/project/aristo-menu-inverse-bg.png +0 -0
- data/templates/project/aristo-radio-o.png +0 -0
- data/templates/project/aristo-radio-x.png +0 -0
- data/templates/project/aristo-scroller-down-arrow-o.png +0 -0
- data/templates/project/aristo-scroller-down-arrow-track.png +0 -0
- data/templates/project/aristo-scroller-down-arrow-x.png +0 -0
- data/templates/project/aristo-scroller-horizontal-knob.png +0 -0
- data/templates/project/aristo-scroller-horizontal-track.png +0 -0
- data/templates/project/aristo-scroller-left-arrow-track.png +0 -0
- data/templates/project/aristo-scroller-left-arrow.png +0 -0
- data/templates/project/aristo-scroller-right-arrow-track.png +0 -0
- data/templates/project/aristo-scroller-right-arrow.png +0 -0
- data/templates/project/aristo-scroller-up-arrow-track.png +0 -0
- data/templates/project/aristo-scroller-up-arrow.png +0 -0
- data/templates/project/aristo-scroller-vertical-knob.png +0 -0
- data/templates/project/aristo-scroller-vertical-track.png +0 -0
- data/templates/project/aristo-select.png +0 -0
- data/templates/project/aristo-slider-horizontal-track.png +0 -0
- data/templates/project/aristo-slider-knob-o.png +0 -0
- data/templates/project/aristo-slider-knob-x.png +0 -0
- data/templates/project/aristo.sass +11 -0
- data/templates/project/manifest.rb +27 -0
- metadata +116 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
=aristo-scrollbars
|
2
|
+
::-webkit-scrollbar
|
3
|
+
:width 17px
|
4
|
+
:height 17px
|
5
|
+
|
6
|
+
::-webkit-scrollbar-button
|
7
|
+
&:vertical
|
8
|
+
&:end
|
9
|
+
:background-image= image_url("aristo-scroller-down-arrow-o.png")
|
10
|
+
:background-repeat no-repeat
|
11
|
+
:width 17px
|
12
|
+
:height 20px
|
13
|
+
|
14
|
+
&:start
|
15
|
+
:background-image= image_url("aristo-scroller-up-arrow.png")
|
16
|
+
:background-repeat no-repeat
|
17
|
+
:width 17px
|
18
|
+
:height 22px
|
19
|
+
|
20
|
+
&:horizontal
|
21
|
+
&:start
|
22
|
+
:background-image= image_url("aristo-scroller-left-arrow.png")
|
23
|
+
:background-repeat no-repeat
|
24
|
+
:width 22px
|
25
|
+
:height 17px
|
26
|
+
|
27
|
+
&:end
|
28
|
+
:background-image= image_url("aristo-scroller-right-arrow.png")
|
29
|
+
:background-repeat no-repeat
|
30
|
+
:width 22px
|
31
|
+
:height 17px
|
32
|
+
|
33
|
+
::-webkit-scrollbar-thumb
|
34
|
+
&:vertical
|
35
|
+
:-webkit-border-image= image_url("aristo-scroller-vertical-knob.png") "8 0 8 0 / 8px 0 8px 0" "stretch" "repeat"
|
36
|
+
|
37
|
+
&:horizontal
|
38
|
+
:-webkit-border-image= image_url("aristo-scroller-horizontal-knob.png") "7 9 7 9 / 7px 9px 7px 9px" "stretch" "repeat"
|
39
|
+
|
40
|
+
::-webkit-scrollbar-track-piece
|
41
|
+
&:vertical
|
42
|
+
&:start
|
43
|
+
:background-image= image_url("aristo-scroller-up-arrow-track.png") "," image_url("aristo-scroller-vertical-track.png")
|
44
|
+
background-repeat: no-repeat, repeat-y
|
45
|
+
|
46
|
+
&:end
|
47
|
+
:background-image= image_url("aristo-scroller-down-arrow-track.png") "," image_url("aristo-scroller-vertical-track.png")
|
48
|
+
background-repeat: no-repeat, repeat-y
|
49
|
+
background-position: bottom left, 0 0
|
50
|
+
|
51
|
+
&:horizontal
|
52
|
+
&:end
|
53
|
+
:background-image= image_url("aristo-scroller-right-arrow-track.png") "," image_url("aristo-scroller-horizontal-track.png")
|
54
|
+
background-repeat: no-repeat, repeat-x
|
55
|
+
background-position: bottom right, 0 0
|
56
|
+
|
57
|
+
&:start
|
58
|
+
:background-image= image_url("aristo-scroller-left-arrow-track.png") "," image_url("aristo-scroller-horizontal-track.png")
|
59
|
+
background-repeat: no-repeat, repeat-x
|
60
|
+
|
61
|
+
::-webkit-scrollbar-button
|
62
|
+
&:start:decrement, &:end:increment
|
63
|
+
:display block
|
64
|
+
|
65
|
+
&:start:increment, &:end:decrement
|
66
|
+
:display none
|
@@ -0,0 +1,13 @@
|
|
1
|
+
!aristo_font_family ||= "Arial, 'Liberation Sans', FreeSans, sans-serif"
|
2
|
+
|
3
|
+
=regular-aristo-font
|
4
|
+
:font-family= !aristo_font_family
|
5
|
+
:font-size 12px
|
6
|
+
:line-height 22px
|
7
|
+
:font-weight normal
|
8
|
+
|
9
|
+
=bold-aristo-font
|
10
|
+
:font-family= !aristo_font_family
|
11
|
+
:font-size 14px
|
12
|
+
:line-height 24px
|
13
|
+
:font-weight bold
|
@@ -0,0 +1 @@
|
|
1
|
+
// TODO
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
Aristo is an open source UI distributed as part of the Cappuccino Open Source Framework (http://cappuccino.org)
|
3
|
+
and specifically designed for the cross platform challenges applications face today. It is a collaborative
|
4
|
+
effort by 280 North, Inc. and Sofa and released under the Creative Commons Attribution Share-Alike License.
|
5
|
+
You can view this license here: http://creativecommons.org/licenses/by-sa/3.0/us/
|
6
|
+
|
7
|
+
|
8
|
+
@import aristo/all
|
9
|
+
|
10
|
+
// TODO: documentation here about using one or all of the mixins
|
11
|
+
// For now, see http://hpoydar.com/compass-aristo-plugin
|
@@ -0,0 +1,27 @@
|
|
1
|
+
stylesheet 'aristo.sass', :media => "screen, projection"
|
2
|
+
|
3
|
+
image 'aristo-button-bezel-blue-o.png'
|
4
|
+
image 'aristo-button-bezel-blue-x.png'
|
5
|
+
image 'aristo-button-bezel-o.png'
|
6
|
+
image 'aristo-button-bezel-x.png'
|
7
|
+
image 'aristo-checkbox-o.png'
|
8
|
+
image 'aristo-checkbox-x.png'
|
9
|
+
image 'aristo-radio-o.png'
|
10
|
+
image 'aristo-radio-x.png'
|
11
|
+
image 'aristo-scroller-down-arrow-o.png'
|
12
|
+
image 'aristo-scroller-down-arrow-track.png'
|
13
|
+
image 'aristo-scroller-down-arrow-x.png'
|
14
|
+
image 'aristo-scroller-horizontal-knob.png'
|
15
|
+
image 'aristo-scroller-horizontal-track.png'
|
16
|
+
image 'aristo-scroller-left-arrow-track.png'
|
17
|
+
image 'aristo-scroller-left-arrow.png'
|
18
|
+
image 'aristo-scroller-right-arrow-track.png'
|
19
|
+
image 'aristo-scroller-right-arrow.png'
|
20
|
+
image 'aristo-scroller-up-arrow-track.png'
|
21
|
+
image 'aristo-scroller-up-arrow.png'
|
22
|
+
image 'aristo-scroller-vertical-knob.png'
|
23
|
+
image 'aristo-scroller-vertical-track.png'
|
24
|
+
image 'aristo-select.png'
|
25
|
+
image 'aristo-slider-horizontal-track.png'
|
26
|
+
image 'aristo-slider-knob-o.png'
|
27
|
+
image 'aristo-slider-knob-x.png'
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hpoydar-compass-aristo-plugin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.6
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- hpoydar
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-08-23 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: chriseppstein-compass
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: A Compass plugin that provides a CSS3 port of the Aristo UI elements
|
26
|
+
email: hpoydar@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.md
|
33
|
+
files:
|
34
|
+
- .gitignore
|
35
|
+
- Aristo-24.png
|
36
|
+
- README.md
|
37
|
+
- Rakefile
|
38
|
+
- VERSION
|
39
|
+
- compass-aristo-plugin.gemspec
|
40
|
+
- config.rb
|
41
|
+
- examples/aristo/.gitignore
|
42
|
+
- examples/aristo/config.rb
|
43
|
+
- examples/aristo/images/.gitignore
|
44
|
+
- examples/aristo/index.html
|
45
|
+
- examples/aristo/index.html.haml
|
46
|
+
- examples/aristo/src/.gitignore
|
47
|
+
- examples/aristo/src/screen.sass
|
48
|
+
- examples/aristo/stylesheets/.gitignore
|
49
|
+
- lib/aristo.rb
|
50
|
+
- lib/aristo/compass_plugin.rb
|
51
|
+
- lib/aristo/sass_extensions.rb
|
52
|
+
- sass/aristo/_all.sass
|
53
|
+
- sass/aristo/_buttons.sass
|
54
|
+
- sass/aristo/_controls.sass
|
55
|
+
- sass/aristo/_menus.sass
|
56
|
+
- sass/aristo/_scrollbars.sass
|
57
|
+
- sass/aristo/_text.sass
|
58
|
+
- sass/aristo/_windows.sass
|
59
|
+
- templates/project/aristo-button-bezel-blue-o.png
|
60
|
+
- templates/project/aristo-button-bezel-blue-x.png
|
61
|
+
- templates/project/aristo-button-bezel-o.png
|
62
|
+
- templates/project/aristo-button-bezel-x.png
|
63
|
+
- templates/project/aristo-checkbox-o.png
|
64
|
+
- templates/project/aristo-checkbox-x.png
|
65
|
+
- templates/project/aristo-menu-bg.png
|
66
|
+
- templates/project/aristo-menu-inverse-bg.png
|
67
|
+
- templates/project/aristo-radio-o.png
|
68
|
+
- templates/project/aristo-radio-x.png
|
69
|
+
- templates/project/aristo-scroller-down-arrow-o.png
|
70
|
+
- templates/project/aristo-scroller-down-arrow-track.png
|
71
|
+
- templates/project/aristo-scroller-down-arrow-x.png
|
72
|
+
- templates/project/aristo-scroller-horizontal-knob.png
|
73
|
+
- templates/project/aristo-scroller-horizontal-track.png
|
74
|
+
- templates/project/aristo-scroller-left-arrow-track.png
|
75
|
+
- templates/project/aristo-scroller-left-arrow.png
|
76
|
+
- templates/project/aristo-scroller-right-arrow-track.png
|
77
|
+
- templates/project/aristo-scroller-right-arrow.png
|
78
|
+
- templates/project/aristo-scroller-up-arrow-track.png
|
79
|
+
- templates/project/aristo-scroller-up-arrow.png
|
80
|
+
- templates/project/aristo-scroller-vertical-knob.png
|
81
|
+
- templates/project/aristo-scroller-vertical-track.png
|
82
|
+
- templates/project/aristo-select.png
|
83
|
+
- templates/project/aristo-slider-horizontal-track.png
|
84
|
+
- templates/project/aristo-slider-knob-o.png
|
85
|
+
- templates/project/aristo-slider-knob-x.png
|
86
|
+
- templates/project/aristo.sass
|
87
|
+
- templates/project/manifest.rb
|
88
|
+
has_rdoc: true
|
89
|
+
homepage: http://github.com/hpoydar/compass-aristo-plugin
|
90
|
+
licenses:
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options:
|
93
|
+
- --charset=UTF-8
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: "0"
|
101
|
+
version:
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: "0"
|
107
|
+
version:
|
108
|
+
requirements: []
|
109
|
+
|
110
|
+
rubyforge_project:
|
111
|
+
rubygems_version: 1.3.5
|
112
|
+
signing_key:
|
113
|
+
specification_version: 2
|
114
|
+
summary: A Compass plugin that provides a CSS3 port of the Aristo UI elements
|
115
|
+
test_files:
|
116
|
+
- examples/aristo/config.rb
|