32 lines
374 B
SCSS
32 lines
374 B
SCSS
.base {
|
|
td {
|
|
&.id {
|
|
width: 35px;
|
|
}
|
|
|
|
&.statusCode {
|
|
width: 50px;
|
|
}
|
|
|
|
&.method {
|
|
width: 72px;
|
|
}
|
|
|
|
&.path {
|
|
max-width: 120px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&.controls {
|
|
padding: 0 12px;
|
|
width: 87px;
|
|
max-width: none;
|
|
}
|
|
}
|
|
|
|
> tbody > tr {
|
|
cursor: pointer;
|
|
}
|
|
}
|