source: branches/2.4/admin/themes/default/uploadify.jGrowl.css @ 17971

Last change on this file since 17971 was 17348, checked in by mistic100, 12 years ago

Merged revision(s) r17347 from trunk:
bug 2714: missing icons on jgrowl notifications

  • Property svn:eol-style set to LF
File size: 4.4 KB
Line 
1/*
2Default jGrowl style definitions for:
3
4Uploadify v1.6.2
5Copyright (C) 2009 by Ronnie Garcia
6Co-developed by Travis Nickels
7*/
8
9/** Uploadify Styling here Styling **/
10div.jGrowl div.success {
11        background: url(images/jgrowl-check.png) no-repeat 6px 6px;
12}
13div.jGrowl div.error {
14        background: url(images/jgrowl-error.png) no-repeat 6px center;
15}
16div.jGrowl div.warning {
17        background: url(images/jgrowl-alert.png) no-repeat 6px 6px;
18}
19div.jGrowl div.warning:before {
20  content:none;
21}
22
23div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
24        background-color:               #000;
25        color:                                  #fff;
26        opacity:                                .85;
27        filter:                                 alpha(opacity = 85);
28        zoom:                                   1;
29        width:                                  300px;
30        padding:                                10px;
31        margin-top:                     5px;
32        margin-bottom:                  5px;
33        font-family:                    Tahoma, Arial, Helvetica, sans-serif;
34        font-size:                              12px;
35        text-align:                     left;
36        display:                                none;
37        -moz-border-radius:     5px;
38        -webkit-border-radius:  5px;
39}
40
41/* original jGrowl css styling */
42
43div.center div.jGrowl-notification, div.center div.jGrowl-closer {
44        margin-left:            auto;
45        margin-right:           auto;
46}
47
48div.jGrowl div.jGrowl-notification {
49        min-height:                     40px;
50}
51
52div.jGrowl div.jGrowl-notification div.close {
53        float:                                  right;
54        font-weight:                    bold;
55        font-size:                              12px;
56        cursor:                                 pointer;
57}
58
59div.jGrowl div.jGrowl-closer {
60        height:                                 15px;
61        padding-top:                    4px;
62        padding-bottom:                 4px;
63        cursor:                                 pointer;
64        font-size:                              11px;
65        font-weight:                    bold;
66        text-align:                     center;
67}
68
69div.jGrowl div.jGrowl-notification div.header {
70        font-weight:    bold;
71        font-size:              14px;
72        margin-left:    47px;
73}
74div.jGrowl div.jGrowl-notification div.message {
75        font-size:              12px;
76        margin-left:    47px;
77}
78div.jGrowl div.jGrowl-notification p {
79        font-size:              6px;
80}
81
82div.jGrowl {
83        padding:                        10px;
84        z-index:                        9999;
85}
86
87/** Special IE6 Style Positioning **/
88div.ie6 {
89        position:                       absolute;
90}
91
92div.ie6.top-right {
93        right:                          auto;
94        bottom:                         auto;
95        left:                           expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
96        top:                            expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
97}
98
99div.ie6.top-left {
100        left:                           expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
101        top:                            expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
102}
103
104div.ie6.bottom-right {
105        left:                           expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
106        top:                            expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
107}
108
109div.ie6.bottom-left {
110        left:                           expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
111        top:                            expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
112}
113
114div.ie6.center {
115        left:                           expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
116        top:                            expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
117        width:                          100%;
118}
119
120/** Normal Style Positions **/
121body > div.jGrowl {
122        position:                       fixed;
123}
124
125body > div.jGrowl.top-left {
126        left:                           0px;
127        top:                            0px;
128}
129
130body > div.jGrowl.top-right {
131        right:                          0px;
132        top:                            0px;
133}
134
135body > div.jGrowl.bottom-left {
136        left:                           0px;
137        bottom:                         0px;
138}
139
140body > div.jGrowl.bottom-right {
141        right:                          0px;
142        bottom:                         0px;
143}
144
145body > div.jGrowl.center {
146        top:                            0px;
147        width:                          50%;
148        left:                           25%;
149}
150
Note: See TracBrowser for help on using the repository browser.