1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-16 01:30:09 +00:00
qBittorrent/src/webui/www/public/css/dynamicTable.css

90 lines
1.4 KiB
CSS
Raw Normal View History

/**************************************************************
2016-07-17 11:17:03 +03:00
Dynamic Table
v 0.4
**************************************************************/
2016-07-17 11:17:03 +03:00
.dynamicTable tbody tr {
background-color: #fff;
}
2016-07-17 11:17:03 +03:00
.dynamicTable tbody tr:nth-child(even),
.dynamicTable tbody tr.alt {
background-color: #eee;
}
2016-07-17 11:17:03 +03:00
#transferList .dynamicTable td {
padding: 0 2px;
}
2016-07-17 11:17:03 +03:00
.dynamicTable tbody tr.selected {
background-color: #354158;
color: #fff;
2015-11-13 15:02:38 +03:00
}
2016-07-17 11:17:03 +03:00
.dynamicTable tbody tr:hover {
background-color: #ee6600;
color: #fff;
}
2016-07-17 11:17:03 +03:00
#transferList tr:hover {
cursor: pointer;
}
#transferList img.statusIcon {
height: 1.3em;
vertical-align: middle;
2016-07-17 11:17:03 +03:00
margin-bottom: -1px;
}
tr.dynamicTableHeader {
cursor: pointer;
}
.dynamicTable {
table-layout: fixed;
width :1%;
padding: 0;
border-spacing: 0;
}
.dynamicTable th {
2016-07-17 11:17:03 +03:00
background-color: #eee;
padding: 4px;
white-space: nowrap;
}
.dynamicTable td {
2016-07-17 11:17:03 +03:00
padding:0px 4px;
white-space: nowrap;
}
.dynamicTable thead tr {
background-color: #eee;
}
.dynamicTable th,
.dynamicTable td {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
max-width: 300px;
}
.dynamicTableFixedHeaderDiv {
overflow: hidden;
}
.dynamicTableDiv {
overflow: auto;
}
.dynamicTableDiv thead th {
line-height: 0px !important;
height: 0px !important;
padding-top: 0px !important;
padding-bottom: 0px !important;
}