62 lines
890 B
CSS
62 lines
890 B
CSS
|
#banlist {
|
||
|
clear: left;
|
||
|
}
|
||
|
#banlist th {
|
||
|
text-align: center;
|
||
|
}
|
||
|
#banlist th, #banlist td {
|
||
|
margin: 2px;
|
||
|
padding: 2px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
#banlist td:hover {
|
||
|
overflow: visible;
|
||
|
height: auto !important;
|
||
|
background-color: white;
|
||
|
z-index: 1;
|
||
|
position: relative;
|
||
|
border: 1px solid black;
|
||
|
padding: 1px;
|
||
|
}
|
||
|
.banlist-opts {
|
||
|
}
|
||
|
.banlist-opts .checkboxes {
|
||
|
float: left;
|
||
|
width: 50%;
|
||
|
}
|
||
|
.banlist-opts .checkboxes label {
|
||
|
display: block;
|
||
|
color: black;
|
||
|
}
|
||
|
.banlist-opts .buttons {
|
||
|
float: left;
|
||
|
width: 50%;
|
||
|
}
|
||
|
.banlist-opts .buttons * {
|
||
|
display: inline-block;
|
||
|
width: 49%;
|
||
|
font-size: 18pt;
|
||
|
}
|
||
|
|
||
|
tr.tblhead {
|
||
|
display: block;
|
||
|
box-sizing: border-box;
|
||
|
clear: left;
|
||
|
width: 100%;
|
||
|
}
|
||
|
tr.tblhead > th {
|
||
|
display: block;
|
||
|
box-sizing: border-box;
|
||
|
float: left;
|
||
|
padding: 0;
|
||
|
color: black;
|
||
|
}
|
||
|
tr.tblhead > th.sortable {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
|
||
|
body {
|
||
|
min-width: 980px;
|
||
|
}
|