pnotify-rails 2.0.1.1 → 3.0.0

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 (26) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pnotify-rails/version.rb +1 -1
  3. data/vendor/assets/javascripts/pnotify/index.js +5 -1
  4. data/vendor/assets/javascripts/pnotify/pnotify.animate.js +108 -0
  5. data/vendor/assets/javascripts/pnotify/pnotify.buttons.js +165 -121
  6. data/vendor/assets/javascripts/pnotify/pnotify.callbacks.js +42 -40
  7. data/vendor/assets/javascripts/pnotify/pnotify.confirm.js +145 -139
  8. data/vendor/assets/javascripts/pnotify/pnotify.desktop.js +144 -133
  9. data/vendor/assets/javascripts/pnotify/pnotify.history.js +172 -171
  10. data/vendor/assets/javascripts/pnotify/pnotify.js +873 -0
  11. data/vendor/assets/javascripts/pnotify/pnotify.mobile.js +121 -0
  12. data/vendor/assets/javascripts/pnotify/pnotify.nonblock.js +144 -139
  13. data/vendor/assets/javascripts/pnotify/pnotify.reference.js +131 -116
  14. data/vendor/assets/javascripts/pnotify/pnotify.tooltip.js +15 -0
  15. data/vendor/assets/stylesheets/pnotify/index.css +5 -2
  16. data/vendor/assets/stylesheets/pnotify/pnotify.brighttheme.css +165 -0
  17. data/vendor/assets/stylesheets/pnotify/pnotify.buttons.css +2 -2
  18. data/vendor/assets/stylesheets/pnotify/pnotify.css +112 -0
  19. data/vendor/assets/stylesheets/pnotify/pnotify.history.css +22 -22
  20. data/vendor/assets/stylesheets/pnotify/pnotify.material.css +121 -0
  21. data/vendor/assets/stylesheets/pnotify/pnotify.mobile.css +46 -0
  22. data/vendor/assets/stylesheets/pnotify/pnotify.nonblock.css +7 -0
  23. metadata +12 -6
  24. data/vendor/assets/javascripts/pnotify/pnotify.core.js +0 -778
  25. data/vendor/assets/stylesheets/pnotify/pnotify.core.css +0 -56
  26. data/vendor/assets/stylesheets/pnotify/pnotify.picon.css +0 -11
@@ -1,56 +0,0 @@
1
- /*
2
- Author : Hunter Perrin
3
- Version : 2.0.1
4
- Link : http://sciactive.com/pnotify/
5
- */
6
- /* -- Notice */
7
- .ui-pnotify {
8
- top: 25px;
9
- right: 25px;
10
- position: absolute;
11
- height: auto;
12
- /* Ensures notices are above everything */
13
- z-index: 9999;
14
- }
15
- /* Hides position: fixed from IE6 */
16
- html > body > .ui-pnotify {
17
- position: fixed;
18
- }
19
- .ui-pnotify .ui-pnotify-shadow {
20
- -webkit-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
21
- -moz-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
22
- box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
23
- }
24
- .ui-pnotify-container {
25
- background-position: 0 0;
26
- padding: .8em;
27
- height: 100%;
28
- margin: 0;
29
- }
30
- .ui-pnotify-sharp {
31
- -webkit-border-radius: 0;
32
- -moz-border-radius: 0;
33
- border-radius: 0;
34
- }
35
- .ui-pnotify-title {
36
- display: block;
37
- margin-bottom: .4em;
38
- margin-top: 0;
39
- }
40
- .ui-pnotify-text {
41
- display: block;
42
- }
43
- .ui-pnotify-icon, .ui-pnotify-icon span {
44
- display: block;
45
- float: left;
46
- margin-right: .2em;
47
- }
48
- /* Alternate stack initial positioning. */
49
- .ui-pnotify.stack-topleft, .ui-pnotify.stack-bottomleft {
50
- left: 25px;
51
- right: auto;
52
- }
53
- .ui-pnotify.stack-bottomright, .ui-pnotify.stack-bottomleft {
54
- bottom: 25px;
55
- top: auto;
56
- }
@@ -1,11 +0,0 @@
1
- .ui-pnotify .picon {
2
- background-color: transparent;
3
- background-repeat: no-repeat;
4
- background-position: center center;
5
- width: 17px;
6
- height: 17px;
7
- }
8
- .ui-pnotify-title {
9
- line-height: 17px;
10
- min-height: 17px;
11
- }