mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
8b8867ba76
ENHANCEMENT Using external jquery.notice library to handle status message updates in the CMS git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92696 467b73ca-7a2a-4603-9d3b-597d59a354a9
37 lines
564 B
CSS
37 lines
564 B
CSS
.notice-wrap {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
width: 250px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
* html .notice-wrap {
|
|
position: absolute;
|
|
}
|
|
|
|
.notice-item {
|
|
height: 60px;
|
|
background: #333;
|
|
-moz-border-radius: 6px;
|
|
-webkit-border-radius: 6px;
|
|
color: #eee;
|
|
padding: 6px 6px 0 6px;
|
|
font-family: lucida Grande;
|
|
font-size: 11px;
|
|
border: 2px solid #999;
|
|
display: block;
|
|
position: relative;
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
.notice-item-close {
|
|
position: absolute;
|
|
font-family: Arial;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
right: 6px;
|
|
top: 6px;
|
|
cursor: pointer;
|
|
}
|