minetest/util/master/style.css

32 lines
500 B
CSS
Raw Normal View History

#server_list table {
max-width: 100%;
width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
font-size: small;
2013-02-22 02:00:44 +04:00
}
#server_list td, #server_list th {
border: 1px solid gray;
2013-02-22 02:00:44 +04:00
}
.hover_list{
visibility: hidden;
border: gray solid 1px;
position: absolute;
z-index: 100;
background-color: white;
padding: 0.5em;
}
td:hover .hover_list {
visibility: visible;
2013-07-13 00:37:28 +04:00
}
.hover_list_text, .tooltip {
text-decoration: underline;
text-decoration-style: dashed;
2013-07-13 00:37:28 +04:00
}