1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/* Status Messages -------------------------------------------------------------------------------- */
.msg {
margin: 0 0 10px 0;
padding: 16px 10px 16px 46px;
background-repeat: no-repeat;
background-position: 12px center;
}
.msg-success {
background-color: #CFC;
background-image: url('../images/icon_success.png');
}
.msg-error {
background-color: #FF9;
background-image: url('../images/icon_error.png');
}
.msg-info {
background-color: #fff;
background-image: url('../images/icon_info.gif');
}
.msg-alert {
background-color: #FF9;
background-image: url('../images/icon_alert.png');
}
.msg-publishing {
background-color: #fff;
background-image: url('../images/ani-rebuild.gif');
}
.msg a.close-me {
background: transparent url('../images/icon_close.png') no-repeat scroll 3px 4px;
display: block;
float: right;
height: 18px;
min-width: 0;
padding: 2px;
width: 22px;
margin: 0;
}
.msg a.close-me span {
display: none;
}
#system-allow-pings a.close-me,
#system-allow-comments a.close-me,
.msg-error a.close-me,
.rebuilding-screen .msg a.close-me,
.restore-publishing-config .msg a.close-me,
.insert-asset-dialog .msg a.close-me,
.edit-template .msg-info a.close-me,
.rebuilding-screen .msg-info a.close-me,
.pinging-screen .msg-info a.close-me,
.list-notification .msg-info a.close-me,
.zero-state a.close-me {
display: none;
}
/* Debug Panel Messages ---------------------------------------------------------------------------------- */
.debug-panel {
width: 100%;
border-top: 1px dotted #f55;
margin-top: 5px;
background-color: #daa;
text-align: left;
}
.debug-panel h3 {
padding: 5px;
font-size: 12px;
margin: 0;
background-color: #f55;
color: #fff;
}
.debug-panel-inner li {
white-space: pre;
}
.debug-panel-inner li:hover {
background-color: #eaa;
}
.debug-panel-inner {
padding: 5px;
font-family: 'Andale Mono', monospace;
font-size: 10px;
max-height: 200px;
overflow: auto;
}
|