mitmproxy/web/src/css/flowtable.less

43 lines
606 B
Plaintext
Raw Normal View History

2014-09-17 15:30:19 +00:00
.flow-table {
width: 100%;
table-layout: fixed;
2014-09-17 15:30:19 +00:00
thead {
background-color: #dadada;
}
2014-09-17 15:30:19 +00:00
2014-09-17 21:59:39 +00:00
tr {
cursor: pointer;
}
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
2014-09-17 21:59:39 +00:00
//tr:nth-child(odd) { background-color : white; }
tr:nth-child(even) { background-color : rgba(0,0,0,0.05); }
//tr:hover { background-color : hsla(209, 52%, 84%, 0.5); }
.col-tls {
width: 10px;
}
.col-tls-https {
background-color: rgba(0, 185, 0, 0.5);
}
.col-icon {
width: 32px;
}
.col-method {
width: 60px;
}
.col-status {
width: 50px;
}
.col-time {
width: 120px;
}
2014-09-17 15:30:19 +00:00
}