2018-11-07 23:44:38 +01:00
|
|
|
.expandable {
|
2018-12-19 06:44:53 +01:00
|
|
|
border-bottom: 1px solid $lbry-gray-1;
|
|
|
|
margin-bottom: var(--spacing-vertical-medium);
|
|
|
|
padding-bottom: var(--spacing-vertical-medium);
|
|
|
|
|
|
|
|
html[data-theme='dark'] & {
|
|
|
|
border-color: rgba($lbry-gray-5, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.expandable__button {
|
|
|
|
font-size: 1.25rem;
|
2018-11-07 23:44:38 +01:00
|
|
|
}
|
|
|
|
|
2018-12-19 06:44:53 +01:00
|
|
|
.expandable--closed,
|
2018-11-07 23:44:38 +01:00
|
|
|
.expandable--open {
|
2018-12-19 06:44:53 +01:00
|
|
|
margin-bottom: var(--spacing-vertical-small);
|
2018-11-07 23:44:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.expandable--closed {
|
2018-12-19 06:44:53 +01:00
|
|
|
max-height: 10rem;
|
2018-11-07 23:44:38 +01:00
|
|
|
overflow: hidden;
|
2018-12-19 06:44:53 +01:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
background-image: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
transparent 0%,
|
|
|
|
mix($lbry-white, $lbry-gray-1, 70%) 90%
|
|
|
|
);
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
html[data-theme='dark'] & {
|
|
|
|
background-image: linear-gradient(to bottom, transparent 0%, $lbry-black 90%);
|
|
|
|
}
|
|
|
|
}
|
2018-11-07 23:44:38 +01:00
|
|
|
}
|
|
|
|
|
2018-12-19 06:44:53 +01:00
|
|
|
.expandable--open {
|
|
|
|
max-height: 100%;
|
2018-11-07 23:44:38 +01:00
|
|
|
}
|