diff options
Diffstat (limited to 'static/gritter/css/jquery.gritter.css')
| -rwxr-xr-x | static/gritter/css/jquery.gritter.css | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/static/gritter/css/jquery.gritter.css b/static/gritter/css/jquery.gritter.css new file mode 100755 index 0000000..0d23e04 --- /dev/null +++ b/static/gritter/css/jquery.gritter.css @@ -0,0 +1,131 @@ +/* ie6 trash */ +* html #gritter-notice-wrapper { + position:absolute; +} +* html .gritter-top { + margin-bottom:-10px; +} +* html .gritter-item { + padding-bottom:0; +} +* html .gritter-bottom { + margin-bottom:0; +} +* html .gritter-close { + background:url(../images/gritter-close-ie6.gif); + width:22px; + height:22px; + top:7px; + + right:7px; +} + +/* the norm */ +#gritter-notice-wrapper { + position:fixed; + top:70px; + right:20px; + width:301px; + + + z-index:9999; +} +#gritter-notice-wrapper img{ + max-width:250px; + width: expression(this.width > 250 ? 250: true); + max-height:240px; + height: expression(this.width > 240 ? 240: true) + right:5px; + + +float:right; + +} +.gritter-item-wrapper { + position:relative; + margin:0 0 5px 0; + + background:url('.'); /* ie7/8 fix */ +} +.gritter-top { + background:url(../images/gritter.png0) no-repeat left -30px; + height:10px; +} +.hover .gritter-top { + background-position:right -30px; +} +.gritter-bottom { + background:url(../images/gritter.png0) no-repeat left bottom; + height:0px; + margin:0; +} +.hover .gritter-bottom { + background-position: bottom right; +} +.gritter-item { + display:block; + background:url(../images/gritter.png0) no-repeat left -40px; +background-color:#eee; + color:#ccc; + height:auto; + padding:7px 15px 11px 11px; + font-size: 11px; +height:auto; + font-family:verdana; + border-top-left-radius:5px; + border-top-right-radius:5px; + -webkit-border-top-left-radius:5px; + -webkit-border-top-right-radius:5px; + -moz-border-radius-topleft:5px; + -moz-border-radius-topright:5px; + border-bottom-left-radius:5px; + border-bottom-right-radius:5px; + -webkit-border-bottom-left-radius:5px; + -webkit-border-bottom-right-radius:5px; + -moz-border-radius-bottomleft:5px; + -moz-border-radius-bottomright:5px; + box-shadow: 5px 7px 10px #c8cbce; +-webkit-box-shadow: 5px 7px 10px #c8cbce; +-moz-box-shadow: 5px 7px 10px #c8cbce; +border:0px solid #999; +} +.hover .gritter-item { + background-position:right -40px; +} +.gritter-item p { + + margin:0; +right:0; + +} +.gritter-close { + position:absolute; + top:5px; + right:3px; + background:url(../images/gritter.png) no-repeat left top; + cursor:pointer; + width:30px; + height:30px; +} +.gritter-title { + font-size:14px; + font-weight:bold; + + + display:block; + text-shadow:-1px -1px #eee; /* Not supported by IE :( */ +} +.gritter-image { + width:48px; + height:48px; + float:right; +right:0px; +} +.gritter-with-image, +.gritter-without-image { + padding:0 0 5px 0; +} +.gritter-with-image { + width:250px; + float:right; +} |
