humane-rails 4.0.0 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +15 -9
  3. data/Rakefile +4 -2
  4. data/app/assets/javascripts/humane-rails.js +13 -0
  5. data/app/assets/stylesheets/humane-rails/bigbox.css +3 -0
  6. data/app/assets/stylesheets/humane-rails/boldlight.css +3 -0
  7. data/app/assets/stylesheets/humane-rails/jackedup.css +3 -0
  8. data/app/assets/stylesheets/humane-rails/libnotify.css +3 -0
  9. data/app/assets/stylesheets/humane-rails/original.css +3 -0
  10. data/app/helpers/humane_rails/flash_messages_helper.rb +21 -0
  11. data/lib/humane-rails.rb +1 -1
  12. data/lib/humane-rails/engine.rb +15 -2
  13. data/lib/humane-rails/version.rb +1 -1
  14. data/spec/internal/app/assets/javascripts/application.js +2 -0
  15. data/spec/internal/app/assets/stylesheets/application.css +3 -0
  16. data/spec/internal/app/controllers/application_controller.rb +2 -0
  17. data/spec/internal/app/controllers/flash_controller.rb +7 -0
  18. data/spec/internal/app/views/flash/index.html.erb +8 -0
  19. data/spec/internal/app/views/layouts/application.html.erb +12 -0
  20. data/spec/internal/config/routes.rb +3 -0
  21. data/spec/internal/log/test.log +2291 -0
  22. data/spec/internal/public/favicon.ico +0 -0
  23. data/spec/requests/navigation_spec.rb +30 -0
  24. data/spec/spec_helper.rb +16 -0
  25. metadata +121 -19
  26. data/.gitignore +0 -4
  27. data/Gemfile +0 -5
  28. data/app/assets/javascripts/humane.jquery.js +0 -229
  29. data/app/assets/javascripts/humane.js +0 -13
  30. data/app/assets/stylesheets/bigbox.css +0 -123
  31. data/app/assets/stylesheets/boldlight.css +0 -122
  32. data/app/assets/stylesheets/jackedup.css +0 -123
  33. data/app/assets/stylesheets/libnotify.css +0 -115
  34. data/app/assets/stylesheets/original.css +0 -72
  35. data/app/helpers/humane_flash_messages_helper.rb +0 -19
  36. data/humane-rails.gemspec +0 -21
@@ -1,13 +0,0 @@
1
- //= require humane.jquery
2
-
3
- humane.notice = humane.spawn({
4
- addnCls: 'humane-notice'
5
- });
6
-
7
- humane.error = humane.spawn({
8
- addnCls: 'humane-error'
9
- });
10
-
11
- humane.alert = humane.spawn({
12
- addnCls: 'humane-alert'
13
- });
@@ -1,123 +0,0 @@
1
- html,
2
- body {
3
- min-height: 100%;
4
- }
5
- .humane,
6
- .humane-bigbox {
7
- position: fixed;
8
- -moz-transition: all 0.3s ease-out;
9
- -webkit-transition: all 0.3s ease-out;
10
- -ms-transition: all 0.3s ease-out;
11
- -o-transition: all 0.3s ease-out;
12
- transition: all 0.3s ease-out;
13
- z-index: 100000;
14
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
15
- }
16
- .humane,
17
- .humane-bigbox {
18
- font-family: Ubuntu, Verdana, sans-serif;
19
- line-height: 40px;
20
- font-size: 35px;
21
- top: 25%;
22
- left: 25%;
23
- opacity: 0;
24
- width: 50%;
25
- min-height: 40px;
26
- padding: 30px;
27
- text-align: center;
28
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAc0lEQVQokb2RQQ6EMAwDx/7/n80BtIEC3RYhLlXrVLGTAYiBWBIGtkPSP01SfreTVoV5re9Rcee1scwDk9NurbR62sZJcpzy9O+2X5KsXabyPaQFYNuvkqkRviDTp9Vs8opC0TpkHvJtVjeReW/5kEyX1gKeLEKE9peeWAAAAABJRU5ErkJggg==');
29
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(1, rgba(0,0,0,0.9))) no-repeat;
30
- background: -moz-linear-gradient(top, #000 0%, rgba(0,0,0,0.9) 100%) no-repeat;
31
- background: -webkit-linear-gradient(top, #000 0%, rgba(0,0,0,0.9) 100%) no-repeat;
32
- background: -ms-linear-gradient(top, #000 0%, rgba(0,0,0,0.9) 100%) no-repeat;
33
- background: -o-linear-gradient(top, #000 0%, rgba(0,0,0,0.9) 100%) no-repeat;
34
- background: linear-gradient(top, #000 0%, rgba(0,0,0,0.9) 100%) no-repeat;
35
- *background-color: #000;
36
- color: #fff;
37
- -webkit-border-radius: 15px;
38
- border-radius: 15px;
39
- text-shadow: 0 -1px 1px #ddd;
40
- -webkit-box-shadow: 0 15px 15px -15px #000;
41
- box-shadow: 0 15px 15px -15px #000;
42
- -moz-transform: scale(0.1);
43
- -webkit-transform: scale(0.1);
44
- -ms-transform: scale(0.1);
45
- -o-transform: scale(0.1);
46
- transform: scale(0.1);
47
- }
48
- .humane p,
49
- .humane-bigbox p,
50
- .humane ul,
51
- .humane-bigbox ul {
52
- margin: 0;
53
- padding: 0;
54
- }
55
- .humane ul,
56
- .humane-bigbox ul {
57
- list-style: none;
58
- }
59
- .humane.humane-bigbox-info,
60
- .humane-bigbox.humane-bigbox-info {
61
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAQElEQVQokWNgYEj5z8TAwPCfiYGBgQGVIEKMTG2DTYwRVez/IHIaNcUGyBnYgpORel6gpvFEJhBqpxIaG8/AAADsKDq/HhYQ2AAAAABJRU5ErkJggg==');
62
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000064), color-stop(1, rgba(0,0,100,0.9))) no-repeat;
63
- background: -moz-linear-gradient(top, #000064 0%, rgba(0,0,100,0.9) 100%) no-repeat;
64
- background: -webkit-linear-gradient(top, #000064 0%, rgba(0,0,100,0.9) 100%) no-repeat;
65
- background: -ms-linear-gradient(top, #000064 0%, rgba(0,0,100,0.9) 100%) no-repeat;
66
- background: -o-linear-gradient(top, #000064 0%, rgba(0,0,100,0.9) 100%) no-repeat;
67
- background: linear-gradient(top, #000064 0%, rgba(0,0,100,0.9) 100%) no-repeat;
68
- *background-color: #030;
69
- }
70
- .humane.humane-bigbox-success,
71
- .humane-bigbox.humane-bigbox-success {
72
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAPklEQVQokWNgSGH4z8TAACEYUAkixMjUNsjEGFHF/g8ip1FVbGCcgS04GannBaoaT1wCwWkvmXbQ2HgGBgYA8Yw6v+m4Kh8AAAAASUVORK5CYII=');
73
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #006400), color-stop(1, rgba(0,100,0,0.9))) no-repeat;
74
- background: -moz-linear-gradient(top, #006400 0%, rgba(0,100,0,0.9) 100%) no-repeat;
75
- background: -webkit-linear-gradient(top, #006400 0%, rgba(0,100,0,0.9) 100%) no-repeat;
76
- background: -ms-linear-gradient(top, #006400 0%, rgba(0,100,0,0.9) 100%) no-repeat;
77
- background: -o-linear-gradient(top, #006400 0%, rgba(0,100,0,0.9) 100%) no-repeat;
78
- background: linear-gradient(top, #006400 0%, rgba(0,100,0,0.9) 100%) no-repeat;
79
- *background-color: #030;
80
- }
81
- .humane.humane-bigbox-error,
82
- .humane-bigbox.humane-bigbox-error {
83
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAPklEQVQokWNIYWD4z8QAJRhQCSLEyNQ2uMQYUcX+DyKnUVdsQJyBLTgZqecF6hpPVALBaS+ZdtDYeAYGBgYA9vA6v4OR3MkAAAAASUVORK5CYII=');
84
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #640000), color-stop(1, rgba(100,0,0,0.9))) no-repeat;
85
- background: -moz-linear-gradient(top, #640000 0%, rgba(100,0,0,0.9) 100%) no-repeat;
86
- background: -webkit-linear-gradient(top, #640000 0%, rgba(100,0,0,0.9) 100%) no-repeat;
87
- background: -ms-linear-gradient(top, #640000 0%, rgba(100,0,0,0.9) 100%) no-repeat;
88
- background: -o-linear-gradient(top, #640000 0%, rgba(100,0,0,0.9) 100%) no-repeat;
89
- background: linear-gradient(top, #640000 0%, rgba(100,0,0,0.9) 100%) no-repeat;
90
- *background-color: #300;
91
- }
92
- .humane.humane-animate,
93
- .humane-bigbox.humane-bigbox-animate {
94
- opacity: 1;
95
- -moz-transform: scale(1);
96
- -webkit-transform: scale(1);
97
- -ms-transform: scale(1);
98
- -o-transform: scale(1);
99
- transform: scale(1);
100
- }
101
- .humane.humane-animate:hover,
102
- .humane-bigbox.humane-bigbox-animate:hover {
103
- opacity: 0.6;
104
- -moz-transform: scale(0.8);
105
- -webkit-transform: scale(0.8);
106
- -ms-transform: scale(0.8);
107
- -o-transform: scale(0.8);
108
- transform: scale(0.8);
109
- }
110
- .humane.humane-js-animate,
111
- .humane-bigbox.humane-bigbox-js-animate {
112
- opacity: 1;
113
- -moz-transform: scale(1);
114
- -webkit-transform: scale(1);
115
- -ms-transform: scale(1);
116
- -o-transform: scale(1);
117
- transform: scale(1);
118
- }
119
- .humane.humane-js-animate:hover,
120
- .humane-bigbox.humane-bigbox-js-animate:hover {
121
- opacity: 0.6;
122
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
123
- }
@@ -1,122 +0,0 @@
1
- html,
2
- body {
3
- min-height: 100%;
4
- }
5
- .humane,
6
- .humane-boldlight {
7
- position: fixed;
8
- -moz-transition: all 0.3s ease-out;
9
- -webkit-transition: all 0.3s ease-out;
10
- -ms-transition: all 0.3s ease-out;
11
- -o-transition: all 0.3s ease-out;
12
- transition: all 0.3s ease-out;
13
- z-index: 100000;
14
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
15
- }
16
- .humane,
17
- .humane-boldlight {
18
- font-family: Ubuntu, Verdana, sans-serif;
19
- font-size: 25px;
20
- letter-spacing: -1px;
21
- top: 25%;
22
- left: 25%;
23
- opacity: 0;
24
- width: 50%;
25
- color: #000;
26
- padding: 10px;
27
- text-align: center;
28
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAACWCAYAAAAfduJyAAAABmJLR0QA/wD/AP+gvaeTAAAAPElEQVQokWP4////Gab///8zQAgGBgYo8e/fP2QxSpSgydJNCYJLRSVoPqeOkgEIYop9TrGbSfcWpW4GAFeF/7lb/oWBAAAAAElFTkSuQmCC');
29
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255,255,255,0.8)), color-stop(1, rgba(150,150,150,0.8))) no-repeat;
30
- background: -moz-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(150,150,150,0.8) 100%) no-repeat;
31
- background: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(150,150,150,0.8) 100%) no-repeat;
32
- background: -ms-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(150,150,150,0.8) 100%) no-repeat;
33
- background: -o-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(150,150,150,0.8) 100%) no-repeat;
34
- background: linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(150,150,150,0.8) 100%) no-repeat;
35
- *background-color: #fff;
36
- -webkit-border-radius: 15px;
37
- border-radius: 15px;
38
- text-shadow: 0 -1px 1px rgba(221,221,221,0.4);
39
- -webkit-box-shadow: 0 4px 4px -4px #eee;
40
- box-shadow: 0 4px 4px -4px #eee;
41
- -moz-transform: scale(1.1);
42
- -webkit-transform: scale(1.1);
43
- -ms-transform: scale(1.1);
44
- -o-transform: scale(1.1);
45
- transform: scale(1.1);
46
- }
47
- .humane p,
48
- .humane-boldlight p,
49
- .humane ul,
50
- .humane-boldlight ul {
51
- margin: 0;
52
- padding: 0;
53
- }
54
- .humane ul,
55
- .humane-boldlight ul {
56
- list-style: none;
57
- }
58
- .humane.humane-boldlight-info,
59
- .humane-boldlight.humane-boldlight-info {
60
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAR0lEQVQokWNISfn/n4mBgeE/EwMDAwMqQYQYmdoGlxgjI4rY//+Dx2nUFRsQZ2ALTrQQp8QL1DWeqASC014y7aCx8QwMDAwA1aZBIulmpvwAAAAASUVORK5CYII=');
61
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6464ff), color-stop(1, rgba(100,100,255,0.8))) no-repeat;
62
- background: -moz-linear-gradient(top, #6464ff 0%, rgba(100,100,255,0.8) 100%) no-repeat;
63
- background: -webkit-linear-gradient(top, #6464ff 0%, rgba(100,100,255,0.8) 100%) no-repeat;
64
- background: -ms-linear-gradient(top, #6464ff 0%, rgba(100,100,255,0.8) 100%) no-repeat;
65
- background: -o-linear-gradient(top, #6464ff 0%, rgba(100,100,255,0.8) 100%) no-repeat;
66
- background: linear-gradient(top, #6464ff 0%, rgba(100,100,255,0.8) 100%) no-repeat;
67
- *background-color: #6464ff;
68
- }
69
- .humane.humane-boldlight-success,
70
- .humane-boldlight.humane-boldlight-success {
71
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAGklEQVQokWNI+Z9yhomBgYFhlBglRonhSgAAFX0EItSd0k8AAAAASUVORK5CYII=');
72
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #64ff64), color-stop(1, rgba(100,255,100,0.8))) no-repeat;
73
- background: -moz-linear-gradient(top, #64ff64 0%, rgba(100,255,100,0.8) 100%) no-repeat;
74
- background: -webkit-linear-gradient(top, #64ff64 0%, rgba(100,255,100,0.8) 100%) no-repeat;
75
- background: -ms-linear-gradient(top, #64ff64 0%, rgba(100,255,100,0.8) 100%) no-repeat;
76
- background: -o-linear-gradient(top, #64ff64 0%, rgba(100,255,100,0.8) 100%) no-repeat;
77
- background: linear-gradient(top, #64ff64 0%, rgba(100,255,100,0.8) 100%) no-repeat;
78
- *background-color: #64ff64;
79
- }
80
- .humane.humane-boldlight-error,
81
- .humane-boldlight.humane-boldlight-error {
82
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAGklEQVQokWP4n5JyhomBgYFhlBglRonhSgAAFhgEIhjGqQkAAAAASUVORK5CYII=');
83
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff6464), color-stop(1, rgba(255,100,100,0.8))) no-repeat;
84
- background: -moz-linear-gradient(top, #ff6464 0%, rgba(255,100,100,0.8) 100%) no-repeat;
85
- background: -webkit-linear-gradient(top, #ff6464 0%, rgba(255,100,100,0.8) 100%) no-repeat;
86
- background: -ms-linear-gradient(top, #ff6464 0%, rgba(255,100,100,0.8) 100%) no-repeat;
87
- background: -o-linear-gradient(top, #ff6464 0%, rgba(255,100,100,0.8) 100%) no-repeat;
88
- background: linear-gradient(top, #ff6464 0%, rgba(255,100,100,0.8) 100%) no-repeat;
89
- *background-color: #ff6464;
90
- }
91
- .humane.humane-animate,
92
- .humane-boldlight.humane-boldlight-animate {
93
- opacity: 1;
94
- -moz-transform: scale(1);
95
- -webkit-transform: scale(1);
96
- -ms-transform: scale(1);
97
- -o-transform: scale(1);
98
- transform: scale(1);
99
- }
100
- .humane.humane-animate:hover,
101
- .humane-boldlight.humane-boldlight-animate:hover {
102
- opacity: 0.4;
103
- -moz-transform: scale(1.8);
104
- -webkit-transform: scale(1.8);
105
- -ms-transform: scale(1.8);
106
- -o-transform: scale(1.8);
107
- transform: scale(1.8);
108
- }
109
- .humane.humane-animate,
110
- .humane-boldlight.humane-boldlight-js-animate {
111
- opacity: 1;
112
- -moz-transform: scale(1);
113
- -webkit-transform: scale(1);
114
- -ms-transform: scale(1);
115
- -o-transform: scale(1);
116
- transform: scale(1);
117
- }
118
- .humane.humane-animate:hover,
119
- .humane-boldlight.humane-boldlight-js-animate:hover {
120
- opacity: 0.4;
121
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
122
- }
@@ -1,123 +0,0 @@
1
- html,
2
- body {
3
- min-height: 100%;
4
- }
5
- .humane,
6
- .humane-jackedup {
7
- position: fixed;
8
- -moz-transition: all 0.6s ease-in-out;
9
- -webkit-transition: all 0.6s ease-in-out;
10
- -ms-transition: all 0.6s ease-in-out;
11
- -o-transition: all 0.6s ease-in-out;
12
- transition: all 0.6s ease-in-out;
13
- z-index: 100000;
14
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
15
- }
16
- .humane,
17
- .humane-jackedup {
18
- font-family: Helvetica Neue, Helvetica, san-serif;
19
- font-size: 18px;
20
- letter-spacing: -1px;
21
- top: 20px;
22
- left: 30%;
23
- opacity: 0;
24
- width: 40%;
25
- color: #333;
26
- padding: 10px;
27
- text-align: center;
28
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAACWCAYAAAAfduJyAAAABmJLR0QA/wD/AP+gvaeTAAAAIklEQVQokWNgYGCQZGJgYGDARTDSQnboGDqsnDt0DKWNLAAkiQFdC+vZNQAAAABJRU5ErkJggg==');
29
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.1)), color-stop(1, rgba(0,0,0,0.2))) no-repeat;
30
- background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%) no-repeat;
31
- background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%) no-repeat;
32
- background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%) no-repeat;
33
- background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%) no-repeat;
34
- background: linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%) no-repeat;
35
- background-color: #fff;
36
- -webkit-border-radius: 3px;
37
- border-radius: 3px;
38
- text-shadow: 0 1px 1px rgba(255,255,255,0.8);
39
- -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
40
- box-shadow: 0 1px 2px rgba(0,0,0,0.5);
41
- -moz-transform: translateY(-100px);
42
- -webkit-transform: translateY(-100px);
43
- -ms-transform: translateY(-100px);
44
- -o-transform: translateY(-100px);
45
- transform: translateY(-100px);
46
- }
47
- .humane p,
48
- .humane-jackedup p,
49
- .humane ul,
50
- .humane-jackedup ul {
51
- margin: 0;
52
- padding: 0;
53
- }
54
- .humane ul,
55
- .humane-jackedup ul {
56
- list-style: none;
57
- }
58
- .humane.humane-jackedup-info,
59
- .humane-jackedup.humane-jackedup-info {
60
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAR0lEQVQokWNISfn/n4mBgeE/EwMDAwMqQYQYmdoGlxgjI4rY//+Dx2nUFRsQZ2ALTrQQp8QL1DWeqASC014y7aCx8QwMDAwA1aZBIulmpvwAAAAASUVORK5CYII=');
61
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.7)), color-stop(1, rgba(0,0,0,0.85))) no-repeat;
62
- background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%) no-repeat;
63
- background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%) no-repeat;
64
- background: -ms-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%) no-repeat;
65
- background: -o-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%) no-repeat;
66
- background: linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%) no-repeat;
67
- background-color: #fff;
68
- color: #fff;
69
- text-shadow: 0 -1px 1px rgba(0,0,0,0.35);
70
- }
71
- .humane.humane-jackedup-success,
72
- .humane-jackedup.humane-jackedup-success {
73
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAASElEQVQokc2SMQ4AIAgDD9/K/79QVzWaENTownAJbWnA5SqACkA/Aiy59hczrGVC30Q7y57EmNU5NL5zwln50IMsfZMel+UBKtFBQSLWM9wLAAAAAElFTkSuQmCC');
74
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #62c462), color-stop(1, #57a957)) no-repeat;
75
- background: -moz-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
76
- background: -webkit-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
77
- background: -ms-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
78
- background: -o-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
79
- background: linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
80
- background-color: #64ff64;
81
- color: #fff;
82
- text-shadow: 0 -1px 1px rgba(0,0,0,0.35);
83
- }
84
- .humane.humane-jackedup-error,
85
- .humane-jackedup.humane-jackedup-error {
86
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAIAAACmkByiAAAABmJLR0QA/wD/AP+gvaeTAAAAf0lEQVQokY2TOQ7AIAwER/5mivy/yRc2RQDhA0jhghFYO5bhuS+TZMAoIUMEhhH4loGhfu71cenM3DutWMsaeGKjv3zO5N17KLPJ0+fQD8cpv5uVLPo4vnX0PpXj0nuaaeVzdmw+yXG1O96n2p3kozB757Ni1Z5UPsU9SP8AeAG1kHXE+7RlPAAAAABJRU5ErkJggg==');
87
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ee5f5b), color-stop(1, #c43c35)) no-repeat;
88
- background: -moz-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
89
- background: -webkit-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
90
- background: -ms-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
91
- background: -o-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
92
- background: linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
93
- background-color: #ee5f5b;
94
- color: #fff;
95
- text-shadow: 0 -1px 1px rgba(0,0,0,0.35);
96
- }
97
- .humane-animate,
98
- .humane-jackedup.humane-jackedup-animate {
99
- opacity: 1;
100
- -moz-transform: translateY(0);
101
- -webkit-transform: translateY(0);
102
- -ms-transform: translateY(0);
103
- -o-transform: translateY(0);
104
- transform: translateY(0);
105
- }
106
- .humane-animate:hover,
107
- .humane-jackedup.humane-jackedup-animate:hover {
108
- opacity: 0.7;
109
- }
110
- .humane-js-animate,
111
- .humane-jackedup.humane-jackedup-js-animate {
112
- opacity: 1;
113
- -moz-transform: translateY(0);
114
- -webkit-transform: translateY(0);
115
- -ms-transform: translateY(0);
116
- -o-transform: translateY(0);
117
- transform: translateY(0);
118
- }
119
- .humane-js-animate:hover,
120
- .humane-jackedup.humane-jackedup-js-animate:hover {
121
- opacity: 0.7;
122
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
123
- }
@@ -1,115 +0,0 @@
1
- html,
2
- body {
3
- min-height: 100%;
4
- }
5
- .humane,
6
- .humane-libnotify {
7
- position: fixed;
8
- -moz-transition: all 0.3s ease-out;
9
- -webkit-transition: all 0.3s ease-out;
10
- -ms-transition: all 0.3s ease-out;
11
- -o-transition: all 0.3s ease-out;
12
- transition: all 0.3s ease-out;
13
- z-index: 100000;
14
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
15
- }
16
- .humane,
17
- .humane-libnotify {
18
- font-family: Ubuntu, Arial, sans-serif;
19
- text-align: center;
20
- font-size: 15px;
21
- top: 10px;
22
- right: 10px;
23
- opacity: 0;
24
- width: 150px;
25
- color: #fff;
26
- padding: 10px;
27
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABQCAYAAADYxx/bAAAABmJLR0QA/wD/AP+gvaeTAAAANElEQVQYlWNgYGB4ysTAwMDAxMjICCUQXDQWAwMDAxMTExMedcRyB6d5CAMQ5hGrjSrmAQBQdgIXlosSTwAAAABJRU5ErkJggg==');
28
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.9)), color-stop(1, rgba(50,50,50,0.9))) no-repeat;
29
- background: -moz-linear-gradient(top, rgba(0,0,0,0.9) 0%, rgba(50,50,50,0.9) 100%) no-repeat;
30
- background: -webkit-linear-gradient(top, rgba(0,0,0,0.9) 0%, rgba(50,50,50,0.9) 100%) no-repeat;
31
- background: -ms-linear-gradient(top, rgba(0,0,0,0.9) 0%, rgba(50,50,50,0.9) 100%) no-repeat;
32
- background: -o-linear-gradient(top, rgba(0,0,0,0.9) 0%, rgba(50,50,50,0.9) 100%) no-repeat;
33
- background: linear-gradient(top, rgba(0,0,0,0.9) 0%, rgba(50,50,50,0.9) 100%) no-repeat;
34
- *background-color: #000;
35
- -webkit-border-radius: 5px;
36
- border-radius: 5px;
37
- -webkit-box-shadow: 0 4px 4px -4px #000;
38
- box-shadow: 0 4px 4px -4px #000;
39
- -moz-transform: translateY(-40px);
40
- -webkit-transform: translateY(-40px);
41
- -ms-transform: translateY(-40px);
42
- -o-transform: translateY(-40px);
43
- transform: translateY(-40px);
44
- }
45
- .humane p,
46
- .humane-libnotify p,
47
- .humane ul,
48
- .humane-libnotify ul {
49
- margin: 0;
50
- padding: 0;
51
- }
52
- .humane ul,
53
- .humane-libnotify ul {
54
- list-style: none;
55
- }
56
- .humane.humane-libnotify-info,
57
- .humane-libnotify.humane-libnotify-info {
58
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABQCAYAAADYxx/bAAAABmJLR0QA/wD/AP+gvaeTAAAAMUlEQVQYlWNgYDB6ysTAwMDAxMDACCcYUFkMDEwMDEwMBNVhkxg65jGhmke6M6hgHgBSdgHnpZwADwAAAABJRU5ErkJggg==');
59
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,50,0.9)), color-stop(1, rgba(0,0,100,0.9))) no-repeat;
60
- background: -moz-linear-gradient(top, rgba(0,0,50,0.9) 0%, rgba(0,0,100,0.9) 100%) no-repeat;
61
- background: -webkit-linear-gradient(top, rgba(0,0,50,0.9) 0%, rgba(0,0,100,0.9) 100%) no-repeat;
62
- background: -ms-linear-gradient(top, rgba(0,0,50,0.9) 0%, rgba(0,0,100,0.9) 100%) no-repeat;
63
- background: -o-linear-gradient(top, rgba(0,0,50,0.9) 0%, rgba(0,0,100,0.9) 100%) no-repeat;
64
- background: linear-gradient(top, rgba(0,0,50,0.9) 0%, rgba(0,0,100,0.9) 100%) no-repeat;
65
- *background-color: #030;
66
- }
67
- .humane.humane-libnotify-success,
68
- .humane-libnotify.humane-libnotify-success {
69
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABQCAYAAADYxx/bAAAABmJLR0QA/wD/AP+gvaeTAAAAMUlEQVQYlWNgMGJ4ysTAwMDAxMAIJxhQWQwMDEwMTKgS2NRhkxg65jGhmke6M6hhHgBS2QHn2LzhygAAAABJRU5ErkJggg==');
70
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,50,0,0.9)), color-stop(1, rgba(0,100,0,0.9))) no-repeat;
71
- background: -moz-linear-gradient(top, rgba(0,50,0,0.9) 0%, rgba(0,100,0,0.9) 100%) no-repeat;
72
- background: -webkit-linear-gradient(top, rgba(0,50,0,0.9) 0%, rgba(0,100,0,0.9) 100%) no-repeat;
73
- background: -ms-linear-gradient(top, rgba(0,50,0,0.9) 0%, rgba(0,100,0,0.9) 100%) no-repeat;
74
- background: -o-linear-gradient(top, rgba(0,50,0,0.9) 0%, rgba(0,100,0,0.9) 100%) no-repeat;
75
- background: linear-gradient(top, rgba(0,50,0,0.9) 0%, rgba(0,100,0,0.9) 100%) no-repeat;
76
- *background-color: #030;
77
- }
78
- .humane.humane-libnotify-error,
79
- .humane-libnotify.humane-libnotify-error {
80
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAPklEQVQokWMwYmB4ysTAwMCATjASFsOmBBvBRJ7x+O0g0wCS7CDTH/RwH7X9MVDuwyaG032D2M2UeIYO7gMAqt8C19Bn7+YAAAAASUVORK5CYII=');
81
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(50,0,0,0.9)), color-stop(1, rgba(100,0,0,0.9))) no-repeat;
82
- background: -moz-linear-gradient(top, rgba(50,0,0,0.9) 0%, rgba(100,0,0,0.9) 100%) no-repeat;
83
- background: -webkit-linear-gradient(top, rgba(50,0,0,0.9) 0%, rgba(100,0,0,0.9) 100%) no-repeat;
84
- background: -ms-linear-gradient(top, rgba(50,0,0,0.9) 0%, rgba(100,0,0,0.9) 100%) no-repeat;
85
- background: -o-linear-gradient(top, rgba(50,0,0,0.9) 0%, rgba(100,0,0,0.9) 100%) no-repeat;
86
- background: linear-gradient(top, rgba(50,0,0,0.9) 0%, rgba(100,0,0,0.9) 100%) no-repeat;
87
- *background-color: #300;
88
- }
89
- .humane.humane-animate,
90
- .humane-libnotify.humane-libnotify-animate {
91
- opacity: 1;
92
- -moz-transform: translateY(0);
93
- -webkit-transform: translateY(0);
94
- -ms-transform: translateY(0);
95
- -o-transform: translateY(0);
96
- transform: translateY(0);
97
- }
98
- .humane.humane-animate:hover,
99
- .humane-libnotify.humane-libnotify-animate:hover {
100
- opacity: 0.2;
101
- }
102
- .humane.humane-animate,
103
- .humane-libnotify.humane-libnotify-js-animate {
104
- opacity: 1;
105
- -moz-transform: translateY(0);
106
- -webkit-transform: translateY(0);
107
- -ms-transform: translateY(0);
108
- -o-transform: translateY(0);
109
- transform: translateY(0);
110
- }
111
- .humane.humane-animate:hover,
112
- .humane-libnotify.humane-libnotify-js-animate:hover {
113
- opacity: 0.2;
114
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
115
- }