2010-01-30 02:05:30 +01:00
|
|
|
.history-panel {
|
|
|
|
position: absolute;
|
|
|
|
top: -1px;
|
|
|
|
right: 20px;
|
2010-02-07 04:36:40 +01:00
|
|
|
width: 250px;
|
2010-01-30 02:05:30 +01:00
|
|
|
background: #fffee0;
|
2010-02-07 04:36:40 +01:00
|
|
|
border: 1px solid #666;
|
2010-02-03 08:27:11 +01:00
|
|
|
z-index: 10;
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
|
|
|
.history-panel h3 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 3px;
|
2010-02-07 04:36:40 +01:00
|
|
|
background: #aaa;
|
2010-02-01 01:19:41 +01:00
|
|
|
color: #eee;
|
2010-01-30 02:05:30 +01:00
|
|
|
font-size: 100%;
|
2010-02-07 04:36:40 +01:00
|
|
|
text-align: center;
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
2010-02-01 01:19:41 +01:00
|
|
|
.history-panel-body {
|
|
|
|
padding: 2px;
|
|
|
|
height: 50px;
|
2010-02-07 04:36:40 +01:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.history-panel-body.history-panel-body-expanded {
|
|
|
|
height: 300px;
|
2010-02-01 01:19:41 +01:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.history-panel-message {
|
|
|
|
text-align: center;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
.history-past {
|
|
|
|
padding-bottom: 3px;
|
2010-02-03 08:54:23 +01:00
|
|
|
}
|
|
|
|
.history-now {
|
|
|
|
padding: 1px;
|
|
|
|
background: #f88;
|
|
|
|
color: white;
|
|
|
|
font-size: 80%;
|
|
|
|
text-align: center;
|
|
|
|
font-variant: small-caps;
|
|
|
|
font-weight: bold;
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
|
|
|
.history-future {
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
a.history-entry {
|
|
|
|
display: block;
|
2010-02-03 08:54:23 +01:00
|
|
|
padding: 7px 5px;
|
2010-01-30 02:05:30 +01:00
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
2010-02-03 08:54:23 +01:00
|
|
|
border-top: 1px solid #ddd;
|
2010-02-01 20:16:09 +01:00
|
|
|
}
|
|
|
|
a.history-entry:first-child {
|
|
|
|
border-top: none;
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
|
|
|
a.history-entry:hover {
|
2010-02-03 08:54:23 +01:00
|
|
|
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;
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
2010-02-01 01:19:41 +01:00
|
|
|
|
|
|
|
.history-future a.history-entry {
|
|
|
|
color: #888;
|
|
|
|
}
|
2010-02-17 02:30:09 +01:00
|
|
|
|
|
|
|
.history-panel-footer {
|
|
|
|
margin: 0;
|
|
|
|
padding: 3px;
|
|
|
|
background: #aaa;
|
|
|
|
color: #eee;
|
|
|
|
font-size: 80%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.history-panel-footer a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|