Display other videos on xl screens on the right
This commit is contained in:
parent
287918da17
commit
19f2205516
|
@ -1,5 +1,8 @@
|
||||||
@import '_variables';
|
@import '_variables';
|
||||||
@import '_mixins';
|
@import '_mixins';
|
||||||
|
@import '_bootstrap-variables';
|
||||||
|
|
||||||
|
$other-videos-width: 260px;
|
||||||
|
|
||||||
.root-row {
|
.root-row {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -361,7 +364,7 @@
|
||||||
|
|
||||||
/deep/ .other-videos {
|
/deep/ .other-videos {
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
width: 260px;
|
width: $other-videos-width;
|
||||||
|
|
||||||
.title-page {
|
.title-page {
|
||||||
margin-top: 0 !important;
|
margin-top: 0 !important;
|
||||||
|
@ -450,6 +453,11 @@ my-video-comments {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: map-get($grid-breakpoints, xl)) {
|
||||||
|
.video-bottom .video-info {
|
||||||
|
max-width: calc(100% - #{$other-videos-width});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1600px) {
|
@media screen and (max-width: 1600px) {
|
||||||
.video-bottom .video-info .video-attributes .video-attribute {
|
.video-bottom .video-info .video-attributes .video-attribute {
|
||||||
|
|
|
@ -339,7 +339,7 @@ table {
|
||||||
font-weight: $font-semibold;
|
font-weight: $font-semibold;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1200px) {
|
@media screen and (max-width: 1600px) {
|
||||||
.main-col {
|
.main-col {
|
||||||
&.expanded {
|
&.expanded {
|
||||||
.margin-content {
|
.margin-content {
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
$dropdown-link-active-bg: inherit;
|
||||||
|
|
||||||
|
$zindex-modal: 10005;
|
||||||
|
$modal-footer-border-width: 0;
|
||||||
|
$modal-md: 600px;
|
||||||
|
|
||||||
|
$grid-breakpoints: (
|
||||||
|
// Extra small screen / phone
|
||||||
|
xs: 0,
|
||||||
|
// Small screen / phone
|
||||||
|
sm: 576px,
|
||||||
|
// Medium screen / tablet
|
||||||
|
md: 768px,
|
||||||
|
// Large screen / desktop
|
||||||
|
lg: 900px,
|
||||||
|
// Extra large screen / wide desktop
|
||||||
|
xl: 1200px
|
||||||
|
);
|
||||||
|
|
||||||
|
$container-max-widths: (
|
||||||
|
sm: 420px,
|
||||||
|
md: 720px,
|
||||||
|
lg: 900px,
|
||||||
|
xl: 1140px
|
||||||
|
);
|
||||||
|
|
||||||
|
$input-btn-focus-width: 0;
|
||||||
|
$input-btn-focus-color: inherit;
|
||||||
|
$input-focus-border-color: #ced4da;
|
||||||
|
|
||||||
|
$nav-pills-link-active-bg: #F0F0F0;
|
||||||
|
$nav-pills-link-active-color: #000;
|
|
@ -1,35 +1,4 @@
|
||||||
$dropdown-link-active-bg: inherit;
|
@import "./_bootstrap-variables";
|
||||||
|
|
||||||
$zindex-modal: 10005;
|
|
||||||
$modal-footer-border-width: 0;
|
|
||||||
$modal-md: 600px;
|
|
||||||
|
|
||||||
$grid-breakpoints: (
|
|
||||||
// Extra small screen / phone
|
|
||||||
xs: 0,
|
|
||||||
// Small screen / phone
|
|
||||||
sm: 576px,
|
|
||||||
// Medium screen / tablet
|
|
||||||
md: 768px,
|
|
||||||
// Large screen / desktop
|
|
||||||
lg: 900px,
|
|
||||||
// Extra large screen / wide desktop
|
|
||||||
xl: 1200px
|
|
||||||
);
|
|
||||||
|
|
||||||
$container-max-widths: (
|
|
||||||
sm: 420px,
|
|
||||||
md: 720px,
|
|
||||||
lg: 900px,
|
|
||||||
xl: 1140px
|
|
||||||
);
|
|
||||||
|
|
||||||
$input-btn-focus-width: 0;
|
|
||||||
$input-btn-focus-color: inherit;
|
|
||||||
$input-focus-border-color: #ced4da;
|
|
||||||
|
|
||||||
$nav-pills-link-active-bg: #F0F0F0;
|
|
||||||
$nav-pills-link-active-color: #000;
|
|
||||||
|
|
||||||
@import '~bootstrap/scss/functions';
|
@import '~bootstrap/scss/functions';
|
||||||
@import '~bootstrap/scss/variables';
|
@import '~bootstrap/scss/variables';
|
||||||
|
|
Loading…
Reference in New Issue