2020-01-16 09:10:32 +00:00
|
|
|
%tabular-details-toggle-button::before {
|
|
|
|
@extend %with-chevron-down-icon, %as-pseudo;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
%tabular-details td:only-child {
|
|
|
|
cursor: default;
|
2019-05-01 18:09:29 +00:00
|
|
|
border: 0;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
%tabular-detail {
|
2018-11-09 15:28:26 +00:00
|
|
|
border: 1px solid $gray-300;
|
2018-10-19 15:17:02 +00:00
|
|
|
border-radius: $decor-radius-100;
|
2020-02-21 15:17:18 +00:00
|
|
|
box-shadow: $decor-elevation-600;
|
2018-10-19 15:17:02 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
%tabular-detail::before,
|
|
|
|
%tabular-detail > div,
|
|
|
|
%tabular-detail > label {
|
2018-11-09 15:28:26 +00:00
|
|
|
background-color: $white;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
%tabular-detail > label::before {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2019-05-01 18:09:29 +00:00
|
|
|
// this is here as its a fake border
|
|
|
|
%tabular-detail::before {
|
|
|
|
background: $gray-200;
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
height: 1px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -20px;
|
|
|
|
left: 10px;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
}
|