waterfall_bourbon_neat_rails 2.0.1.1 → 2.0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/images/jQueryUI/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_flat_10_000000_40x100.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/app/assets/images/jQueryUI/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/app/assets/images/jQueryUI/ui-icons_222222_256x240.png +0 -0
- data/app/assets/images/jQueryUI/ui-icons_228ef1_256x240.png +0 -0
- data/app/assets/images/jQueryUI/ui-icons_ef8c08_256x240.png +0 -0
- data/app/assets/images/jQueryUI/ui-icons_ffd27a_256x240.png +0 -0
- data/app/assets/images/jQueryUI/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/custom/_config.scss +2 -1
- data/app/assets/stylesheets/custom/_custom_jQueryUI.scss +61 -0
- data/app/assets/stylesheets/waterfall_bourbon_neat_rails.css +1 -1
- data/lib/waterfall_bourbon_neat_rails/version.rb +2 -2
- metadata +16 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88f79a9574fc2c4f313934fae21366fcaeae11b4
|
4
|
+
data.tar.gz: c8dd9d503b6c8037be0be785bf13b3d65d72ad51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbe16474ed269e706a64cbdfc9549d54f8aead101a9699f35662701ded06b67b22c4add8093d36df2d48952efd6f3f708845c4b6fe69f6534343471ae3613c7b
|
7
|
+
data.tar.gz: fa4a18fa7fb3114d5b4e4496dfe4beebee71f3540b78c3321e2b8546c6a3248b9a8670ff8523098bc6601602b5e88f916c4eb2311ef9ec2991e3d16c639e7679
|
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,61 @@
|
|
1
|
+
// Make the url images work with the Rails assets pipeline
|
2
|
+
|
3
|
+
.ui-widget-content {
|
4
|
+
background: #eeeeee asset-url("jQueryUI/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50%
|
5
|
+
}
|
6
|
+
|
7
|
+
.ui-widget-header {
|
8
|
+
background: #f6a828 asset-url("jQueryUI/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;
|
9
|
+
}
|
10
|
+
|
11
|
+
.ui-widget-header .ui-state-default {
|
12
|
+
background: #f6f6f6 asset-url("jQueryUI/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;
|
13
|
+
}
|
14
|
+
|
15
|
+
.ui-widget-header .ui-state-focus {
|
16
|
+
background: #fdf5ce asset-url("jQueryUI/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;
|
17
|
+
}
|
18
|
+
|
19
|
+
.ui-widget-header .ui-state-active {
|
20
|
+
background: #ffffff asset-url("jQueryUI/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
|
21
|
+
}
|
22
|
+
|
23
|
+
.ui-widget-header .ui-state-highlight {
|
24
|
+
background: #ffe45c asset-url("jQueryUI/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;
|
25
|
+
}
|
26
|
+
|
27
|
+
.ui-widget-header .ui-state-error {
|
28
|
+
background: #b81900 asset-url("jQueryUI/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;
|
29
|
+
}
|
30
|
+
|
31
|
+
.ui-icon,
|
32
|
+
.ui-widget-content .ui-icon {
|
33
|
+
background-image: asset-url("jQueryUI/ui-icons_222222_256x240.png");
|
34
|
+
}
|
35
|
+
.ui-widget-header .ui-icon {
|
36
|
+
background-image: asset-url("jQueryUI/ui-icons_ffffff_256x240.png");
|
37
|
+
}
|
38
|
+
.ui-state-default .ui-icon {
|
39
|
+
background-image: asset-url("jQueryUI/ui-icons_ef8c08_256x240.png");
|
40
|
+
}
|
41
|
+
.ui-state-hover .ui-icon,
|
42
|
+
.ui-state-focus .ui-icon {
|
43
|
+
background-image: asset-url("jQueryUI/ui-icons_ef8c08_256x240.png");
|
44
|
+
}
|
45
|
+
.ui-state-active .ui-icon {
|
46
|
+
background-image: asset-url("jQueryUI/ui-icons_ef8c08_256x240.png");
|
47
|
+
}
|
48
|
+
.ui-state-highlight .ui-icon {
|
49
|
+
background-image: asset-url("jQueryUI/ui-icons_228ef1_256x240.png");
|
50
|
+
}
|
51
|
+
.ui-state-error .ui-icon,
|
52
|
+
.ui-state-error-text .ui-icon {
|
53
|
+
background-image: asset-url("jQueryUI/ui-icons_ffd27a_256x240.png");
|
54
|
+
}
|
55
|
+
|
56
|
+
.ui-widget-overlay {
|
57
|
+
background: #666666 asset-url("jQueryUI/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;
|
58
|
+
}
|
59
|
+
.ui-widget-shadow {
|
60
|
+
background: #000000 asset-url("jQueryUI/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;
|
61
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
|
-
*=require waterfall_bourbon_neat_rails/application
|
3
2
|
*=require ../libs/jQueryUI/jquery-ui.min.css
|
3
|
+
*=require waterfall_bourbon_neat_rails/application
|
4
4
|
*=require ../libs/chosen/chosen.jquery.css
|
5
5
|
*=require ../libs/timepicker/jquery.ui.timepicker.css
|
6
6
|
*=require ../libs/heightpicker/custom-heightpicker.css
|
@@ -1,3 +1,3 @@
|
|
1
1
|
module WaterfallBourbonNeatRails
|
2
|
-
VERSION = "2.0.1.
|
3
|
-
end
|
2
|
+
VERSION = "2.0.1.2".freeze
|
3
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: waterfall_bourbon_neat_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.1.
|
4
|
+
version: 2.0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Waterfall Software Inc.
|
@@ -214,6 +214,20 @@ extra_rdoc_files: []
|
|
214
214
|
files:
|
215
215
|
- MIT-LICENSE
|
216
216
|
- README.md
|
217
|
+
- app/assets/images/jQueryUI/ui-bg_diagonals-thick_18_b81900_40x40.png
|
218
|
+
- app/assets/images/jQueryUI/ui-bg_diagonals-thick_20_666666_40x40.png
|
219
|
+
- app/assets/images/jQueryUI/ui-bg_flat_10_000000_40x100.png
|
220
|
+
- app/assets/images/jQueryUI/ui-bg_glass_100_f6f6f6_1x400.png
|
221
|
+
- app/assets/images/jQueryUI/ui-bg_glass_100_fdf5ce_1x400.png
|
222
|
+
- app/assets/images/jQueryUI/ui-bg_glass_65_ffffff_1x400.png
|
223
|
+
- app/assets/images/jQueryUI/ui-bg_gloss-wave_35_f6a828_500x100.png
|
224
|
+
- app/assets/images/jQueryUI/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
225
|
+
- app/assets/images/jQueryUI/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
226
|
+
- app/assets/images/jQueryUI/ui-icons_222222_256x240.png
|
227
|
+
- app/assets/images/jQueryUI/ui-icons_228ef1_256x240.png
|
228
|
+
- app/assets/images/jQueryUI/ui-icons_ef8c08_256x240.png
|
229
|
+
- app/assets/images/jQueryUI/ui-icons_ffd27a_256x240.png
|
230
|
+
- app/assets/images/jQueryUI/ui-icons_ffffff_256x240.png
|
217
231
|
- app/assets/images/waterfall_bourbon_neat_rails/chosen-sprite.png
|
218
232
|
- app/assets/images/waterfall_bourbon_neat_rails/chosen-sprite@2x.png
|
219
233
|
- app/assets/images/waterfall_bourbon_neat_rails/home-bg.jpg
|
@@ -271,6 +285,7 @@ files:
|
|
271
285
|
- app/assets/stylesheets/custom/_config.scss
|
272
286
|
- app/assets/stylesheets/custom/_custom_chosen.scss
|
273
287
|
- app/assets/stylesheets/custom/_custom_datepicker.scss
|
288
|
+
- app/assets/stylesheets/custom/_custom_jQueryUI.scss
|
274
289
|
- app/assets/stylesheets/custom/_functions.scss
|
275
290
|
- app/assets/stylesheets/custom/_general.scss
|
276
291
|
- app/assets/stylesheets/custom/_mixins.scss
|