weeler 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,84 +0,0 @@
1
- /*
2
- Document : jquery.pnotify.default.css
3
- Created on : Nov 23, 2009, 3:14:10 PM
4
- Author : Hunter Perrin
5
- Version : 1.2.0
6
- Link : http://pinesframework.org/pnotify/
7
- Description:
8
- Default styling for Pines Notify jQuery plugin.
9
- */
10
- /* -- Notice */
11
- .ui-pnotify {
12
- bottom: 25px;
13
- right: 25px;
14
- position: absolute;
15
- height: auto;
16
- /* Ensures notices are above everything */
17
- z-index: 9999;
18
- }
19
- /* Hides position: fixed from IE6 */
20
- html > body .ui-pnotify {
21
- position: fixed;
22
- }
23
- .ui-pnotify .ui-pnotify-shadow {
24
- -webkit-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
25
- -moz-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
26
- box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
27
- }
28
- .ui-pnotify-container {
29
- background-position: 0 0;
30
- padding: .8em;
31
- height: 100%;
32
- margin: 0;
33
- }
34
- .ui-pnotify-sharp {
35
- -webkit-border-radius: 0;
36
- -moz-border-radius: 0;
37
- border-radius: 0;
38
- }
39
- .ui-pnotify-closer, .ui-pnotify-sticker {
40
- float: right;
41
- margin-left: .1em;
42
- }
43
- .ui-pnotify-title {
44
- display: block;
45
- margin-bottom: .1em;
46
- text-transform: capitalize;
47
- }
48
- .ui-pnotify-text {
49
- display: block;
50
- }
51
- .ui-pnotify-icon, .ui-pnotify-icon span {
52
- display: block;
53
- float: left;
54
- margin-right: .1em;
55
- }
56
- /* -- History Pulldown */
57
- .ui-pnotify-history-container {
58
- position: absolute;
59
- top: 0;
60
- right: 18px;
61
- width: 70px;
62
- border-top: none;
63
- padding: 0;
64
- -webkit-border-top-left-radius: 0;
65
- -moz-border-top-left-radius: 0;
66
- border-top-left-radius: 0;
67
- -webkit-border-top-right-radius: 0;
68
- -moz-border-top-right-radius: 0;
69
- border-top-right-radius: 0;
70
- /* Ensures history container is above notices. */
71
- z-index: 10000;
72
- }
73
- .ui-pnotify-history-container .ui-pnotify-history-header {
74
- padding: 2px;
75
- }
76
- .ui-pnotify-history-container button {
77
- cursor: pointer;
78
- display: block;
79
- width: 100%;
80
- }
81
- .ui-pnotify-history-container .ui-pnotify-history-pulldown {
82
- display: block;
83
- margin: 0 auto;
84
- }