2019-08-14 09:48:44 +00:00
|
|
|
table {
|
|
|
|
font-size: $font-size-small;
|
|
|
|
border-spacing: 0;
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
thead {
|
|
|
|
th {
|
|
|
|
font-weight: $font-weight-bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
tbody {
|
|
|
|
td {
|
|
|
|
@include padding($space-one $space-small);
|
|
|
|
border-bottom: 1px solid $color-border-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woot-table {
|
|
|
|
tr {
|
|
|
|
.show-if-hover {
|
|
|
|
opacity: 0;
|
2020-01-17 08:06:05 +00:00
|
|
|
transition: all 0.2s $ease-in-out-cubic;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
&:hover {
|
|
|
|
.show-if-hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.agent-name {
|
|
|
|
font-weight: $font-weight-medium;
|
|
|
|
display: block;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.woot-thumbnail {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 5rem;
|
|
|
|
height: 5rem;
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.button-wrapper {
|
|
|
|
min-width: 20rem;
|
|
|
|
@include flex;
|
|
|
|
@include flex-align(left, null);
|
2019-10-20 08:04:19 +00:00
|
|
|
flex-direction: row;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.button {
|
|
|
|
@include margin($zero);
|
|
|
|
}
|
|
|
|
}
|