You are here

jquery.jgrowl.css in Node.js integration 6

div.jGrowl {
	padding: 			10px;
	z-index: 			9999;
	color: 				#fff;
	font-size: 			12px;
}

/** Special IE6 Style Positioning **/
div.ie6 {
	position: 			absolute;
}

div.ie6.top-right {
	right: 				auto;
	bottom: 			auto;
	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' );
  	top: 				expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

div.ie6.top-left {
	left: 				expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: 				expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

div.ie6.bottom-right {
	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' );
	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' );
}

div.ie6.bottom-left {
	left: 				expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	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' );
}

div.ie6.center {
	left: 				expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: 				expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
	width: 				100%;
}

/** Normal Style Positions **/
div.jGrowl {
	position:			absolute;
}

body > div.jGrowl {
	position:			fixed;
}

div.jGrowl.top-left {
	left: 				0px;
	top: 				0px;
}

div.jGrowl.top-right {
	right: 				0px;
	top: 				0px;
}

div.jGrowl.bottom-left {
	left: 				0px;
	bottom:				0px;
}

div.jGrowl.bottom-right {
	right: 				0px;
	bottom: 			0px;
}

div.jGrowl.center {
	top: 				0px;
	width: 				50%;
	left: 				25%;
}

/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
	margin-left: 		auto;
	margin-right: 		auto;
}

div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
	background-color: 		#000;
	opacity: 				.85;
    -ms-filter: 			"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)"; 
    filter: 				progid:DXImageTransform.Microsoft.Alpha(Opacity=85); 
	zoom: 					1;
	width: 					235px;
	padding: 				10px;
	margin-top: 			5px;
	margin-bottom: 			5px;
	font-family: 			Tahoma, Arial, Helvetica, sans-serif;
	font-size: 				1em;
	text-align: 			left;
	display: 				none;
	-moz-border-radius: 	5px;
	-webkit-border-radius:	5px;
}

div.jGrowl div.jGrowl-notification {
	min-height: 			40px;
}

div.jGrowl div.jGrowl-notification div.jGrowl-header {
	font-weight: 			bold;
	font-size:				.85em;
}

div.jGrowl div.jGrowl-notification div.jGrowl-close {
	z-index:				99;
	float: 					right;
	font-weight: 			bold;
	font-size: 				1em;
	cursor:					pointer;
}

div.jGrowl div.jGrowl-closer {
	padding-top: 			4px;
	padding-bottom: 		4px;
	cursor: 				pointer;
	font-size:				.9em;
	font-weight: 			bold;
	text-align: 			center;
}

/** Hide jGrowl when printing **/
@media print {
	div.jGrowl {
		display: 			none;
	}
}

File

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