mitmproxy/web/src/css/flowtable.less
Maximilian Hils b99de36b24 undo spriting
2014-09-17 23:59:39 +02:00

43 lines
606 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.flow-table {
width: 100%;
table-layout: fixed;
thead {
background-color: #dadada;
}
tr {
cursor: pointer;
}
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
//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;
}
}