WebCommitView: Add a state display

This adds a div in the webview to display the current commit
state. It allows us to notify the user of new commits by
showing something in the webview, rather than a modal
dialog.
This commit is contained in:
Pieter de Bie
2008-10-28 23:42:22 +01:00
parent e232181fae
commit 90db001409
8 changed files with 61 additions and 10 deletions
+15
View File
@@ -17,6 +17,21 @@ body {
width: 100%;
}
#state {
margin-left: 20px;
margin-right: 20px;
margin-top: 40px;
text-align: center;
font-size: 200%;
padding: 20px;
width: auto;
background-color: #B4D7FF;
border: 2px solid #45A1FE;
-webkit-border-radius: 10px;
}
.floatright {
float: right;
}