X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fapplication.scss;h=22e1151c8dbfaa7e29c22766853b6c954a79399d;hb=5f57df54627c61817226768bb360a8a93ea2c0b9;hp=7ea82b6f9f5a065c2493516b1b034c7e7d0cbc15;hpb=1def3c526ec385cbd2112d9907e8a4a73af110ca;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 7ea82b6f9..22e1151c8 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -35,16 +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); @@ -267,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 { @@ -278,7 +283,7 @@ 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 { @@ -320,6 +325,11 @@ table { padding-left: 15px; padding-right: 15px; margin-bottom: $sub-menu-margin-bottom-small-view; + overflow-x: auto; + } + + .admin-sub-header { + @include admin-sub-header-responsive(15px*2); } my-markdown-textarea { @@ -331,9 +341,64 @@ table { input[type=text], input[type=password], input[type=email], - textarea { + 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}); + } } } }