X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fapplication.scss;h=22e1151c8dbfaa7e29c22766853b6c954a79399d;hb=5f57df54627c61817226768bb360a8a93ea2c0b9;hp=11e5c16c3fe45f8f9232e8e88e434c2a521d7d70;hpb=947d01023d53b5b79174775abfd27823678e597b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 11e5c16c3..22e1151c8 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -35,14 +35,21 @@ body { --menuForegroundColor: #{$menu-color}; --submenuColor: #{$sub-menu-color}; + --inputForegroundColor: #{$input-foreground-color}; --inputBackgroundColor: #{$input-background-color}; --inputPlaceholderColor: #{$input-placeholder-color}; + --textareaForegroundColor: #{$textarea-foreground-color}; + --textareaBackgroundColor: #{$textarea-background-color}; + --markdownTextareaBackgroundColor: #{$markdown-textarea-background-color}; + --actionButtonColor: #{$grey-foreground-color}; --supportButtonBackgroundColor: #{transparent}; --supportButtonColor: #{var(--actionButtonColor)}; --supportButtonHeartColor: #{$support-button-heart}; + --activatedActionButtonColor: #{$activated-action-button-color}; + font-family: $main-fonts; font-weight: $font-regular; color: var(--mainForegroundColor); @@ -144,6 +151,16 @@ label { padding-right: $expanded-horizontal-margins; } } + + &.lock-scroll .main-row > router-outlet + * { + // Lock and hide body scrollbars + position: fixed; + + // Lock and hide sub-menu scrollbars + .sub-menu { + overflow-x: hidden; + } + } } .title-page { @@ -255,7 +272,7 @@ table { top: #{-($header-height + 20px)}; } -@media screen and (max-width: #{map-get($grid-breakpoints, xxl)}) { +@media screen and (max-width: #{breakpoint(xxl)}) { .main-col { &.expanded { .margin-content { @@ -266,9 +283,10 @@ table { } } -@media screen and (max-width: #{map-get($grid-breakpoints, lg)}) { +@media screen and (max-width: #{breakpoint(lg)}) { + /* the following applies from 500px to 900px and is partially overriden from 500px to 800px by changes below to $small-view */ .main-col { - &.expanded { + &, &.expanded { .margin-content { margin-left: $expanded-horizontal-margins/3; margin-right: $expanded-horizontal-margins/3; @@ -286,6 +304,12 @@ table { } } +@media screen and (min-width: $mobile-view) and (max-width: $small-view) { + .main-col { + width: 100%; + } +} + @media screen and (max-width: $small-view) { .main-col { margin-left: 0; @@ -298,15 +322,83 @@ table { .sub-menu { width: 100vw; - overflow-x: auto; padding-left: 15px; padding-right: 15px; - margin-bottom: 10px; + margin-bottom: $sub-menu-margin-bottom-small-view; + overflow-x: auto; + } + + .admin-sub-header { + @include admin-sub-header-responsive(15px*2); + } + + my-markdown-textarea { + .root { + max-width: 100% !important; + } } - input[type=text], input[type=password] { + input[type=text], + input[type=password], + input[type=email], + textarea, + .peertube-select-container { width: 100% !important; } + + .caption input[type=text] { + width: unset !important; + flex-grow: 1; + } + } + } +} + +// overflow-databale responsive rules +@media screen and (min-width: #{breakpoint(lg)}) { + .main-col { + &.expanded { + @include overflow-datatable(breakpoint(lg), $expanded-horizontal-margins/2, $mobile-paginator: false); + } + + &:not(.expanded) { + @include overflow-datatable(breakpoint(lg), $not-expanded-horizontal-margins + $menu-width/2, $mobile-paginator: false); + } + } +} + +@media screen and (max-width: #{breakpoint(lg)}) { + .main-col { + &.expanded { + @include overflow-datatable(breakpoint(lg), $expanded-horizontal-margins/3); + } + + &:not(.expanded) { + @include overflow-datatable(breakpoint(lg), $expanded-horizontal-margins/3 + $menu-width/2); + } + } +} + +@media screen and (max-width: $small-view) { + .main-col { + &:not(.expanded), + &.expanded { + @include overflow-datatable(breakpoint(lg), 15px); + } + } +} + +@media screen and (min-width: $small-view) and (max-width: #{$small-view + $menu-width}) { + .main-col { + &:not(.expanded) { + .admin-sub-header { + @include admin-sub-header-responsive($expanded-horizontal-margins/3 + $menu-width/2); + } + + .sub-menu { + overflow-x: auto; + width: calc(100vw - #{$menu-width}); + } } } }