]> git.mxchange.org Git - friendica.git/blob - library/jgrowl/jquery.jgrowl.css
updated jquery to version 1.11, updated themes frost and diabook where necessary
[friendica.git] / library / jgrowl / jquery.jgrowl.css
1 /** Special IE6 Style Positioning **/
2 .ie6 {
3 position: absolute;
4 }
5 .ie6.top-right {
6 right: auto;
7 bottom: auto;
8 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' );
9 top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
10 }
11 .ie6.top-left {
12 left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
13 top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
14 }
15 .ie6.bottom-right {
16 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' );
17 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' );
18 }
19 .ie6.bottom-left {
20 left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
21 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' );
22 }
23 .ie6.center {
24 left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
25 top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
26 width: 100%;
27 }
28 /** jGrowl Styling **/
29 .jGrowl {
30 z-index: 9999;
31 color: #fff;
32 font-size: 12px;
33 position:       fixed;
34 }
35 .jGrowl.top-left {
36 left: 0px;
37 top: 0px;
38 }
39 .jGrowl.top-right {
40 right: 0px;
41 top: 0px;
42 }
43 .jGrowl.bottom-left {
44 left: 0px;
45 bottom: 0px;
46 }
47 .jGrowl.bottom-right {
48 right: 0px;
49 bottom: 0px;
50 }
51 .jGrowl.center {
52 top: 0px;
53 width: 50%;
54 left: 25%;
55 }
56 /** Cross Browser Styling **/
57 .center .jGrowl-notification, .center .jGrowl-closer {
58 margin-left: auto;
59 margin-right: auto;
60 }
61 .jGrowl .jGrowl-notification, .jGrowl .jGrowl-closer {
62 background-color: #000;
63 opacity: .85;
64 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
65 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
66 zoom: 1;
67 width: 235px;
68 padding: 10px;
69 margin-top: 5px;
70 margin-bottom: 5px;
71 font-family: Tahoma, Arial, Helvetica, sans-serif;
72 font-size: 1em;
73 text-align: left;
74 display: none;
75 border-radius:  5px;
76 }
77 .jGrowl .jGrowl-notification {
78 min-height: 40px;
79 }
80 .jGrowl .jGrowl-notification,
81 .jGrowl .jGrowl-closer {
82 margin: 10px;
83 }
84 .jGrowl .jGrowl-notification .jGrowl-header {
85 font-weight: bold;
86 font-size:      .85em;
87 }
88 .jGrowl .jGrowl-notification .jGrowl-close {
89 z-index:        99;
90 float: right;
91 font-weight: bold;
92 font-size: 1em;
93 cursor: pointer;
94 }
95 .jGrowl .jGrowl-closer {
96 padding-top: 4px;
97 padding-bottom: 4px;
98 cursor: pointer;
99 font-size:      .9em;
100 font-weight: bold;
101 text-align: center;
102 }
103 /** Hide jGrowl when printing **/
104 @media print {
105 .jGrowl {
106 display: none;
107 }
108 }