Light12306/Web12306/css/ui/train-stops.css
2014-08-01 21:54:26 +08:00

46 lines
754 B
CSS

#train-stops {
position: absolute;
z-index: 100;
box-shadow: 3px 3px 5px rgba(150, 150, 150, 0.5);
width: 400px;
border: 1px solid #d1d1d1;
border-radius: 5px;
background-color: #ffffff;
display: none;
}
#train-stops th {
padding: 10px;
border-bottom: 1px solid #e4e4e4;
}
#train-stops td {
border-bottom: 1px solid #e4e4e4;
height: 39px;
vertical-align: middle;
text-align: center;
color: #484747;
}
#train-stops tr:hover td {
background-color: #fafafa;
}
#train-stops tr.disabled td {
color: #aaa;
font-style: italic;
}
#train-stops tr:last-child td {
border-bottom: none;
}
#train-stops .train-stops-failed {
display: none;
color: red;
}
#train-stops .train-stops-loading {
display: none;
}