55 lines
801 B
CSS
55 lines
801 B
CSS
#server_list .total {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#server_list table {
|
|
max-width: 100%;
|
|
width: 100%;
|
|
background-color: transparent;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
font-size: small;
|
|
}
|
|
|
|
#server_list td, #server_list th {
|
|
border: 1px solid gray;
|
|
}
|
|
|
|
#server_list thead {
|
|
background-color: #FFA;
|
|
}
|
|
|
|
#server_list tbody tr:nth-child(even) {
|
|
background-color: #F1F1F1;
|
|
}
|
|
|
|
.mts_hover_list {
|
|
display: none;
|
|
border: 1px solid #88F;
|
|
border-radius: 4px;
|
|
background-color: white;
|
|
position: absolute;
|
|
z-index: 100;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
td:hover .mts_hover_list {
|
|
display: block;
|
|
}
|
|
|
|
.clickable {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mts_tooltip {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.mts_cwidth {
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|