Files
gitx/html/css/notification.css
Pieter de Bie b1e3dd2212 WebCommitView: Use a notification to display errors
This should give GitX some more consistency. Also, it will
give us a basis to build further changes on.
2008-10-21 22:48:50 +02:00

23 lines
347 B
CSS

#notification {
margin: 5px;
padding: 3px;
clear: both;
border: 1px solid black;
background-color: #f3f3f3;
text-align: center;
font-size: 80%;
-webkit-border-radius: 2px;
}
#notification.success {
background-color: #CCFF99;
border: 1px solid #99CC66;
}
#notification.fail {
background-color: #ff9999;
border: 1px solid #cc6666;
}