RandomSec/src/main/webapp/styles/history.css
David Huynh fe8810aa07 Refactored to use JSONWriter to be more efficient at generating output.
Added created and modified time fields to project metadata.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@18 7d457c2a-affb-35e4-300a-418c747d4874
2010-02-01 19:16:09 +00:00

52 lines
866 B
CSS

.history-panel {
position: absolute;
top: -1px;
right: 20px;
width: 200px;
background: #fffee0;
border: 1px solid #ccc;
}
.history-panel h3 {
margin: 0;
padding: 3px;
background: #888;
color: #eee;
font-size: 100%;
}
.history-panel-body {
padding: 2px;
height: 50px;
overflow: auto;
}
.history-panel-message {
text-align: center;
color: #aaa;
}
.history-past {
padding-bottom: 3px;
border-bottom: 2px solid #f88;
}
.history-future {
padding-top: 3px;
}
a.history-entry {
display: block;
padding: 3px 5px;
text-decoration: none;
color: black;
border-top: 1px solid #eee;
}
a.history-entry:first-child {
border-top: none;
}
a.history-entry:hover {
background: #eee;
color: #a88;
}
.history-future a.history-entry {
color: #888;
font-style: italic;
}