aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/flowtable.less
blob: f96b7abf4e940c34f68350346b3a6ae28439e0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.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;
	}
}