blob: 4e3ce1c964dda45e2ca9335858e8dd730d615a0c (
plain) (
tree)
|
|
@import '_variables';
@import '_mixins';
.search-result {
padding: 40px;
.results-header {
font-size: 16px;
padding-bottom: 20px;
margin-bottom: 30px;
border-bottom: 1px solid #DADADA;
.first-line {
display: flex;
flex-direction: row;
.results-counter {
flex-grow: 1;
.search-value {
font-weight: $font-semibold;
}
}
.results-filter-button {
cursor: pointer;
.icon.icon-filter {
@include icon(20px);
position: relative;
top: -1px;
margin-right: 5px;
background-image: url('../../assets/images/search/filter.svg');
}
}
}
.results-filter {
// Animation when we show/hide the filters
transition: max-height 0.3s;
display: block !important;
overflow: hidden !important;
max-height: 0;
&.show {
max-height: 1500px;
}
}
}
.entry {
display: flex;
min-height: 130px;
padding-bottom: 20px;
margin-bottom: 20px;
&.video-channel {
img {
$image-size: 130px;
$margin-size: ($video-thumbnail-width - $image-size) / 2; // So we have the same width than the video miniature
@include avatar($image-size);
margin: 0 ($margin-size + 10) 0 $margin-size;
}
.video-channel-info {
flex-grow: 1;
width: fit-content;
.video-channel-names {
@include disable-default-a-behaviour;
display: flex;
align-items: baseline;
color: var(--mainForegroundColor);
width: fit-content;
.video-channel-display-name {
font-weight: $font-semibold;
font-size: 18px;
}
.video-channel-name {
font-size: 14px;
color: $grey-actor-name;
margin-left: 5px;
}
}
}
}
}
}
@media screen and (max-width: $small-view) {
.video-channel-names {
flex-direction: column !important;
.video-channel-name {
margin-left: 0 !important;
}
}
}
@media screen and (max-width: $mobile-view) {
.search-result {
padding: 20px 10px;
.results-header {
font-size: 15px !important;
}
.entry {
flex-direction: column;
height: auto;
justify-content: center;
align-items: center;
text-align: center;
&.video {
.video-info-name,
.video-info-account {
margin: auto;
}
my-video-thumbnail {
margin-right: 0 !important;
/deep/ .video-thumbnail {
width: 100%;
height: auto;
img {
width: 100%;
height: auto;
}
}
}
}
&.video-channel {
.video-channel-info .video-channel-names {
align-items: center;
}
my-subscribe-button {
margin-top: 5px;
}
}
}
}
}
|