RandomSec/src/main/webapp/styles/history.css

70 lines
1.3 KiB
CSS
Raw Normal View History

.history-panel {
position: absolute;
top: -1px;
right: 20px;
width: 200px;
background: #fffee0;
border: 1px solid #ccc;
z-index: 10;
}
.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;
}
.history-now {
padding: 1px;
background: #f88;
color: white;
font-size: 80%;
text-align: center;
font-variant: small-caps;
font-weight: bold;
}
.history-future {
padding-top: 3px;
}
a.history-entry {
display: block;
padding: 7px 5px;
text-decoration: none;
color: black;
border-top: 1px solid #ddd;
}
a.history-entry:first-child {
border-top: none;
}
a.history-entry:hover {
background: #ddd;
}
.history-past a.history-entry:hover{
padding: 11px 5px 2px 5px;
border-top: 2px solid red;
background: url(../images/up-arrow.png) top center no-repeat;
}
.history-future a.history-entry:hover{
padding: 2px 5px 11px 5px;
border-bottom: 2px solid red;
background: url(../images/down-arrow.png) bottom center no-repeat;
}
.history-future a.history-entry {
color: #888;
}