jquery_uniform-rails 0.0.1 → 2.1.2.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 (35) hide show
  1. checksums.yaml +4 -4
  2. data/lib/jquery_uniform/rails/version.rb +1 -1
  3. data/vendor/assets/images/jquery.uniform/bg-input-agent.png +0 -0
  4. data/vendor/assets/images/jquery.uniform/bg-input-aristo.png +0 -0
  5. data/vendor/assets/images/jquery.uniform/bg-input-focus-agent.png +0 -0
  6. data/vendor/assets/images/jquery.uniform/bg-input-focus-aristo.png +0 -0
  7. data/vendor/assets/images/jquery.uniform/bg-input-focus-jeans.png +0 -0
  8. data/vendor/assets/images/jquery.uniform/bg-input-focus-retina-jeans.png +0 -0
  9. data/vendor/assets/images/jquery.uniform/bg-input-focus.png +0 -0
  10. data/vendor/assets/images/jquery.uniform/bg-input-jeans.png +0 -0
  11. data/vendor/assets/images/jquery.uniform/bg-input-retina-jeans.png +0 -0
  12. data/vendor/assets/images/jquery.uniform/bg-input.png +0 -0
  13. data/vendor/assets/images/jquery.uniform/sprite-agent.png +0 -0
  14. data/vendor/assets/images/jquery.uniform/sprite-aristo.png +0 -0
  15. data/vendor/assets/images/jquery.uniform/sprite-jeans.png +0 -0
  16. data/vendor/assets/images/jquery.uniform/sprite-retina-jeans.png +0 -0
  17. data/vendor/assets/images/jquery.uniform/sprite.png +0 -0
  18. data/vendor/assets/javascripts/jquery.uniform.js +1068 -0
  19. data/vendor/assets/javascripts/jquery.uniform.min.js +1 -0
  20. data/vendor/assets/stylesheets/jquery.uniform/uniform._base.scss +567 -0
  21. data/vendor/assets/stylesheets/jquery.uniform/uniform.agent.scss +145 -0
  22. data/vendor/assets/stylesheets/jquery.uniform/uniform.aristo.scss +151 -0
  23. data/vendor/assets/stylesheets/jquery.uniform/uniform.default.scss +150 -0
  24. data/vendor/assets/stylesheets/jquery.uniform/uniform.jeans.scss +162 -0
  25. metadata +39 -13
  26. data/.gitignore +0 -17
  27. data/.idea/.name +0 -1
  28. data/.idea/encodings.xml +0 -6
  29. data/.idea/jquery_uniform-rails.iml +0 -21
  30. data/.idea/misc.xml +0 -56
  31. data/.idea/modules.xml +0 -8
  32. data/.idea/workspace.xml +0 -430
  33. data/Gemfile +0 -4
  34. data/Rakefile +0 -1
  35. data/jquery_uniform-rails.gemspec +0 -23
@@ -0,0 +1,145 @@
1
+ /*
2
+
3
+ Uniform Theme: Agent
4
+ Version: 1.0
5
+ By: Collin Allen
6
+ License: MIT
7
+ ---
8
+ For use with the Uniform plugin:
9
+ http://pixelmatrixdesign.com/uniform/
10
+
11
+ */
12
+
13
+ $button-height: 32px;
14
+ $button-margin-left: 13px;
15
+ $button-padding: 9px 15px 0 2px;
16
+ $button-span-height: 24px;
17
+ $checkbox-height: 23px;
18
+ $checkbox-width: 23px;
19
+ $input-background: image-path("jquery.uniform/bg-input-agent.png");
20
+ $input-background-focus: image-path("jquery.uniform/bg-input-agent-focus.png");
21
+ $input-padding: 4px;
22
+ $radio-height: 23px;
23
+ $radio-width: 23px;
24
+ $select-fixed-width: 190px;
25
+ $select-height: 32px;
26
+ $select-margin-left: 12px;
27
+ $select-margin-right: 25px;
28
+ $select-select-height: 25px;
29
+ $select-select-top: 4px;
30
+ $sprite: image-path("jquery.uniform/sprite-agent.png");
31
+ $upload-action-width: 90px;
32
+ $upload-filename-margin-top: 0px;
33
+ $upload-filename-margin-bottom: 0px;
34
+ $upload-filename-margin-left: 4px;
35
+ $upload-filename-width: 76px;
36
+ $upload-filename-padding: 0 10px;
37
+ $upload-height: 32px;
38
+ $upload-width: 190px;
39
+
40
+ @import "jquery.uniform/uniform._base.scss";
41
+
42
+ #{$class-wrapper-element}#{$class-wrapper} input#{$class-input},
43
+ #{$class-wrapper-element}#{$class-wrapper} select#{$class-multiselect},
44
+ #{$class-wrapper-element}#{$class-wrapper} textarea#{$class-textarea} {
45
+ font-size: 14px;
46
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
47
+ font-weight: normal;
48
+ color: #ffffff;
49
+ background-color: #434343;
50
+ border-top: solid 1px #1a1a1a;
51
+ border-left: solid 1px #1a1a1a;
52
+ border-bottom: solid 1px #1c1c1c;
53
+ border-right: solid 1px #1c1c1c;
54
+ @include border-radius(3px);
55
+
56
+ @include whenHover {
57
+ @include box-shadow(0px 0px 4px rgba(0,0,0,0.3));
58
+ border-color: #999;
59
+ background-color: #575757;
60
+ }
61
+ }
62
+
63
+ div#{$class-wrapper}#{$class-button} {
64
+ span {
65
+ color: #ffffff;
66
+ font-weight: bold;
67
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
68
+ font-size: 13px;
69
+ letter-spacing: 1px;
70
+ text-transform: uppercase;
71
+ }
72
+
73
+ @include whenDisabled {
74
+ span {
75
+ color: #bbb;
76
+ }
77
+ }
78
+ }
79
+
80
+ /* Select */
81
+ div#{$class-wrapper}#{$class-select} {
82
+ font-weight: bold;
83
+ color: #464545;
84
+ font-size: 14px;
85
+
86
+ span {
87
+ padding: 0 25px 0 0;
88
+ color: #fff;
89
+ font-weight: normal;
90
+ text-shadow: 0 1px 0 #fff;
91
+ }
92
+
93
+ select {
94
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
95
+ font-size: 1em;
96
+ border: solid 1px #fff;
97
+ }
98
+
99
+ @include whenDisabled {
100
+ span {
101
+ color: #bbb;
102
+ }
103
+ }
104
+ }
105
+
106
+ /* Checker */
107
+ div#{$class-wrapper}#{$class-checkbox} {
108
+ margin-right: 10px;
109
+ }
110
+
111
+ /* Radio */
112
+ div#{$class-wrapper}#{$class-radio} {
113
+ margin-right: 10px;
114
+ }
115
+
116
+ /* Uploader */
117
+ div#{$class-wrapper}#{$class-upload} {
118
+ margin-bottom: 20px;
119
+ cursor: pointer;
120
+
121
+ span#{$class-action} {
122
+ text-align: center;
123
+ text-shadow: #1a1a1a 0px 1px 0px;
124
+ background-color: #fff;
125
+ font-weight: bold;
126
+ color: #ffffff;
127
+ }
128
+
129
+ span#{$class-filename} {
130
+ color: #777;
131
+ font-size: 11px;
132
+ }
133
+
134
+ @include whenDisabled {
135
+ span#{$class-action} {
136
+ color: #aaa;
137
+ }
138
+
139
+ span#{$class-filename} {
140
+ border-color: #ddd;
141
+ color: #aaa;
142
+ }
143
+ }
144
+ }
145
+
@@ -0,0 +1,151 @@
1
+ /*
2
+
3
+ Uniform Theme: Aristo
4
+ Version: 1.1
5
+ By: 280North / Ported by Josh Pyles
6
+ License: Creative Commons Share Alike
7
+ ---
8
+ For use with the Uniform plugin:
9
+ http://uniformjs.com/
10
+
11
+ */
12
+
13
+ $button-height: 32px;
14
+ $button-margin-left: 13px;
15
+ $button-padding: 5px 15px 5px 2px;
16
+ $button-span-height: 22px;
17
+ $checkbox-height: 23px;
18
+ $checkbox-width: 23px;
19
+ $input-background-focus: image-path("jquery.uniform/bg-input-focus-aristo.png");
20
+ $input-background: image-path("jquery.uniform/bg-input-aristo.png");
21
+ $input-padding: 4px;
22
+ $radio-height: 23px;
23
+ $radio-width: 23px;
24
+ $select-fixed-width: 190px;
25
+ $select-height: 32px;
26
+ $select-margin-left: 10px;
27
+ $select-margin-right: 25px;
28
+ $select-select-height: 24px;
29
+ $select-select-top: 4px;
30
+ $sprite: image-path("jquery.uniform/sprite-aristo.png");
31
+ $upload-action-width: 90px;
32
+ $upload-filename-margin-left: 4px;
33
+ $upload-filename-margin-top: 4px;
34
+ $upload-filename-margin-bottom: 4px;
35
+ $upload-filename-padding: 0 10px;
36
+ $upload-filename-width: 76px;
37
+ $upload-height: 32px;
38
+ $upload-width: 190px;
39
+
40
+ @import "jquery.uniform/uniform._base.scss";
41
+
42
+ /* INPUT & TEXTAREA */
43
+
44
+ #{$class-wrapper-element}#{$class-wrapper} input#{$class-input},
45
+ #{$class-wrapper-element}#{$class-wrapper} select#{$class-multiselect},
46
+ #{$class-wrapper-element}#{$class-wrapper} textarea#{$class-textarea} {
47
+ font-size: 14px;
48
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
49
+ font-weight: normal;
50
+ color: #777;
51
+ background-color: #a1cbe2;
52
+ border-top: solid 1px #aaa;
53
+ border-left: solid 1px #aaa;
54
+ border-bottom: solid 1px #ccc;
55
+ border-right: solid 1px #ccc;
56
+ @include border-radius(3px);
57
+
58
+ @include whenHover {
59
+ @include box-shadow(0 0 4px rgba(0,0,0,0.3));
60
+ border-color: #999;
61
+ background-color: #a1cbe2;
62
+ }
63
+ }
64
+
65
+ /* Uploader */
66
+
67
+
68
+ div#{$class-wrapper}#{$class-button} {
69
+ span {
70
+ font-weight: bold;
71
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
72
+ font-size: 13px;
73
+ letter-spacing: 1px;
74
+ text-transform: uppercase;
75
+ }
76
+
77
+ @include whenHover {
78
+ span {
79
+ color: #555;
80
+ }
81
+ }
82
+
83
+ @include whenDisabled {
84
+ span {
85
+ color: #bbb;
86
+ }
87
+ }
88
+ }
89
+
90
+
91
+ /* Select */
92
+
93
+ div#{$class-wrapper}#{$class-select} {
94
+ font-weight: bold;
95
+ color: #464545;
96
+ font-size: 14px;
97
+
98
+ span {
99
+ color: #666;
100
+ text-shadow: 0 1px 0 #fff;
101
+ }
102
+
103
+ select {
104
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
105
+ font-size: 1em;
106
+ border: solid 1px #fff;
107
+ }
108
+
109
+ @include whenDisabled {
110
+ span {
111
+ color: #bbb;
112
+ }
113
+ }
114
+ }
115
+
116
+
117
+
118
+ /* Checker */
119
+ div#{$class-wrapper}#{$class-checkbox} {
120
+ margin-right: 10px;
121
+ }
122
+
123
+ /* Radio */
124
+ div#{$class-wrapper}#{$class-radio} {
125
+ margin-right: 10px;
126
+ }
127
+
128
+ div#{$class-wrapper}#{$class-upload} {
129
+ span#{$class-action} {
130
+ text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
131
+ background-color: #fff;
132
+ font-weight: bold;
133
+ color: #1c4257;
134
+ }
135
+
136
+ span#{$class-filename} {
137
+ color: #777;
138
+ font-size: 11px;
139
+ }
140
+
141
+ @include whenDisabled {
142
+ span#{$class-action} {
143
+ color: #aaa;
144
+ }
145
+
146
+ span#{$class-filename} {
147
+ border-color: #ddd;
148
+ color: #aaa;
149
+ }
150
+ }
151
+ }
@@ -0,0 +1,150 @@
1
+ /*
2
+
3
+ Uniform Theme: Uniform Default
4
+ Version: 1.8
5
+ By: Josh Pyles
6
+ License: MIT License
7
+ ---
8
+ For use with the Uniform plugin:
9
+ http://uniformjs.com/
10
+
11
+ */
12
+
13
+ $button-height: 30px;
14
+ $button-margin-left: 13px;
15
+ $button-padding: 8px 15px 0 2px;
16
+ $button-span-height: 22px;
17
+ $checkbox-height: 19px;
18
+ $checkbox-width: 19px;
19
+ $input-padding: 3px;
20
+ $radio-height: 18px;
21
+ $radio-width: 18px;
22
+ $select-fixed-width: 190px;
23
+ $select-height: 26px;
24
+ $select-margin-left: 10px;
25
+ $select-margin-right: 25px;
26
+ $select-select-height: 22px;
27
+ $select-select-top: 2px;
28
+ $upload-action-width: 82px;
29
+ $upload-filename-margin-top: 2px;
30
+ $upload-filename-margin-bottom: 2px;
31
+ $upload-filename-margin-left: 2px;
32
+ $upload-filename-width: 85px;
33
+ $upload-filename-padding: 0 10px;
34
+ $upload-height: 28px;
35
+ $upload-width: 190px;
36
+
37
+ @import "jquery.uniform/uniform._base.scss";
38
+
39
+ /* INPUT & TEXTAREA */
40
+
41
+ #{$class-wrapper-element}#{$class-wrapper} input#{$class-input},
42
+ #{$class-wrapper-element}#{$class-wrapper} select#{$class-multiselect},
43
+ #{$class-wrapper-element}#{$class-wrapper} textarea#{$class-textarea} {
44
+ font-size: 12px;
45
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
46
+ font-weight: normal;
47
+ color: #777;
48
+ border-top: solid 1px #aaa;
49
+ border-left: solid 1px #aaa;
50
+ border-bottom: solid 1px #ccc;
51
+ border-right: solid 1px #ccc;
52
+ @include border-radius($input-padding);
53
+
54
+ @include whenHover {
55
+ @include box-shadow(0px 0px 4px rgba(0,0,0,0.3));
56
+ border-color: #999;
57
+ }
58
+ }
59
+
60
+ /* PRESENTATION */
61
+
62
+ /* Buttons */
63
+
64
+ div#{$class-wrapper}#{$class-button} {
65
+ span {
66
+ font-weight: bold;
67
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
68
+ font-size: 12px;
69
+ letter-spacing: 1px;
70
+ text-transform: uppercase;
71
+ }
72
+
73
+ @include whenHover {
74
+ span {
75
+ color: #555;
76
+ }
77
+ }
78
+
79
+ @include whenDisabled {
80
+ span {
81
+ color: #bbb;
82
+ }
83
+ }
84
+ }
85
+
86
+
87
+ /* Select */
88
+
89
+ div#{$class-wrapper}#{$class-select} {
90
+ font-size: 12px;
91
+
92
+ span {
93
+ color: #666;
94
+ text-shadow: 0 1px 0 #fff;
95
+ }
96
+
97
+ select {
98
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
99
+ font-size: 12px;
100
+ }
101
+
102
+ @include whenDisabled {
103
+ span {
104
+ color: #bbb;
105
+ }
106
+ }
107
+ }
108
+
109
+ /* Checker */
110
+ div#{$class-wrapper}#{$class-checkbox} {
111
+ margin-right: 5px;
112
+ }
113
+
114
+ /* Radio */
115
+ div#{$class-wrapper}#{$class-radio} {
116
+ margin-right: 3px;
117
+ }
118
+
119
+ /* Uploader */
120
+ div#{$class-wrapper}#{$class-upload} {
121
+ span#{$class-action} {
122
+ text-shadow: #fff 0px 1px 0px;
123
+ background-color: #fff;
124
+ font-size: 11px;
125
+ font-weight: bold;
126
+ }
127
+
128
+ span#{$class-filename} {
129
+ color: #777;
130
+ border-right: solid 1px #bbb;
131
+ font-size: 11px;
132
+ }
133
+
134
+ @include whenDisabled {
135
+ span#{$class-action} {
136
+ color: #aaa;
137
+ }
138
+
139
+ span#{$class-filename} {
140
+ border-color: #ddd;
141
+ color: #aaa;
142
+ }
143
+ }
144
+ }
145
+
146
+ #{$class-wrapper-element}#{$class-wrapper} input#{$class-input} {
147
+ &, &:focus {
148
+ background-color: #fff;
149
+ }
150
+ }
@@ -0,0 +1,162 @@
1
+ /*
2
+
3
+ Uniform Theme: Crayon
4
+ Version: 2.0
5
+ By: Tyler Akins
6
+ License: MIT License
7
+ ---
8
+ For use with the Uniform plugin:
9
+ http://uniformjs.com/
10
+
11
+ */
12
+
13
+ $button-height: 30px;
14
+ $button-margin-left: 12px;
15
+ $button-padding: 8px 15px 0 2px;
16
+ $button-span-height: 22px;
17
+ $checkbox-height: 19px;
18
+ $checkbox-width: 19px;
19
+ $input-background-focus: image-path("jquery.uniform/bg-input-focus-jeans.png");
20
+ $input-background-focus-retina: image-path("jquery.uniform/bg-input-focus-retina-jeans.png");
21
+ $input-background: image-path("jquery.uniform/bg-input-jeans.png");
22
+ $input-background-retina: image-path("jquery.uniform/bg-input-retina-jeans.png");
23
+ $input-padding: 3px;
24
+ $radio-height: 18px;
25
+ $radio-width: 18px;
26
+ $select-fixed-width: 190px;
27
+ $select-height: 26px;
28
+ $select-margin-left: 10px;
29
+ $select-margin-right: 25px;
30
+ $select-select-height: 22px;
31
+ $select-select-top: 2px;
32
+ $sprite: image-path("jquery.uniform/sprite-jeans.png");
33
+ $sprite-retina: image-path("jquery.uniform/sprite-retina-jeans.png");
34
+ $upload-action-width: 82px;
35
+ $upload-filename-margin-top: 2px;
36
+ $upload-filename-margin-left: 2px;
37
+ $upload-filename-width: 85px;
38
+ $upload-filename-padding: 0 10px;
39
+ $upload-height: 28px;
40
+ $upload-span-height: 24px;
41
+ $upload-width: 190px;
42
+ $input-background-size: 60px;
43
+
44
+ @import "jquery.uniform/uniform._base.scss";
45
+
46
+ /* INPUT & TEXTAREA */
47
+
48
+ #{$class-wrapper-element}#{$class-wrapper} input#{$class-input},
49
+ #{$class-wrapper-element}#{$class-wrapper} select#{$class-multiselect},
50
+ #{$class-wrapper-element}#{$class-wrapper} textarea#{$class-textarea} {
51
+ font-size: 12px;
52
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
53
+ font-weight: normal;
54
+ color: #FFE000;
55
+ border-top: solid 1px #aaa;
56
+ border-left: solid 1px #aaa;
57
+ border-bottom: solid 1px #ccc;
58
+ border-right: solid 1px #ccc;
59
+ @include border-radius($input-padding);
60
+
61
+ &:focus {
62
+ @include box-shadow(0px 0px 4px rgba(0,0,0,0.3));
63
+ border-color: #999;
64
+ }
65
+ }
66
+
67
+ /* PRESENTATION */
68
+
69
+ /* Buttons */
70
+
71
+ div#{$class-wrapper}#{$class-button} {
72
+ span {
73
+ font-weight: bold;
74
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
75
+ font-size: 12px;
76
+ letter-spacing: 1px;
77
+ text-transform: uppercase;
78
+ color: #FFE000;
79
+ }
80
+
81
+ @include whenHover {
82
+ span {
83
+ color: #FFE000;
84
+ }
85
+ }
86
+
87
+ @include whenDisabled {
88
+ span {
89
+ color: #FFE000;
90
+ }
91
+ }
92
+ }
93
+
94
+ /* Select */
95
+
96
+ div#{$class-wrapper}#{$class-select} {
97
+ font-size: 12px;
98
+
99
+ select {
100
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
101
+ font-size: 12px;
102
+ }
103
+
104
+ span {
105
+ color: #FFE000;
106
+ text-shadow: 0 1px 0 #000;
107
+ }
108
+
109
+ @include whenDisabled {
110
+ span {
111
+ color: #FFE000;
112
+ }
113
+ }
114
+ }
115
+
116
+ /* Checker */
117
+ div#{$class-wrapper}#{$class-checkbox} {
118
+ margin-right: 5px;
119
+ }
120
+
121
+ /* Radio */
122
+ div#{$class-wrapper}#{$class-radio} {
123
+ margin-right: 3px;
124
+ }
125
+
126
+ /* Uploader */
127
+ div#{$class-wrapper}#{$class-upload} {
128
+ span#{$class-action} {
129
+ text-shadow: #000 0px 1px 0px;
130
+ background-color: #fff;
131
+ font-size: 11px;
132
+ font-weight: bold;
133
+ color: #FFE000;
134
+ }
135
+
136
+ span#{$class-filename} {
137
+ color: #FFE000;
138
+ font-size: 11px;
139
+ border-right: 1px solid rgb(47, 67, 104);
140
+ }
141
+
142
+ @include whenDisabled {
143
+ span#{$class-action} {
144
+ color: #FFE000;
145
+ }
146
+
147
+ span#{$class-filename} {
148
+ border-color: #ddd;
149
+ color: #FFE000;
150
+ }
151
+ }
152
+ }
153
+
154
+ #{$class-wrapper-element}#{$class-wrapper} input#{$class-input},
155
+ #{$class-wrapper-element}#{$class-wrapper} select#{$class-multiselect},
156
+ #{$class-wrapper-element}#{$class-wrapper} textarea#{$class-textarea} {
157
+ &, &:focus {
158
+ background-repeat: repeat
159
+ }
160
+ }
161
+
162
+ @include retina()