X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fapplication.scss;h=4f753e04120a34da126cc52ce0d13e0a424fc9dc;hb=d567632952545c28820ab9c65452a06c86998ebb;hp=089a58009e82ece00059f11285e92b9b09ca2e16;hpb=e61151b01c80e525db068ff12fcfe2c8ae04e1a4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 089a58009..4f753e041 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -25,33 +25,43 @@ body { // for css custom properties #{$var} --mainColor: #{$main-color}; --mainColorLighter: #{$main-color-lighter}; + --mainColorLightest: #{$main-color-lightest}; --mainHoverColor: #{$main-hover-color}; --mainBackgroundColor: #{$bg-color}; --mainForegroundColor: #{$fg-color}; --secondaryColor: #{$secondary-color}; + --greyForegroundColor: #{$grey-foreground-color}; + --menuBackgroundColor: #{$menu-background}; --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)}; + --supportButtonColor: #{pvar(--actionButtonColor)}; --supportButtonHeartColor: #{$support-button-heart}; + --activatedActionButtonColor: #{$activated-action-button-color}; + font-family: $main-fonts; font-weight: $font-regular; - color: var(--mainForegroundColor); - background-color: var(--mainBackgroundColor); + color: pvar(--mainForegroundColor); + background-color: pvar(--mainBackgroundColor); font-size: 14px; } ::selection { - color: var(--mainBackgroundColor); - background-color: var(--mainHoverColor); + color: pvar(--mainBackgroundColor); + background-color: pvar(--mainHoverColor); } #incompatible-browser { @@ -68,16 +78,17 @@ strong { input.readonly { /* Force blank on readonly inputs */ - background-color: var(--inputBackgroundColor) !important; + background-color: pvar(--inputBackgroundColor) !important; } input, textarea { outline: none; - color: var(--mainForegroundColor); + color: pvar(--mainForegroundColor); } -.btn-outline-secondary { - border-color: $input-border-color; +button { + background: unset; + @include disable-outline; } label { @@ -107,12 +118,13 @@ label { } .row { - margin: 0; + margin: 0 !important; } .main-col { margin-left: $menu-width; width: calc(100% - #{$menu-width}); + outline: none; .margin-content { margin-left: $not-expanded-horizontal-margins; @@ -121,7 +133,7 @@ label { } .sub-menu { - background-color: var(--submenuColor); + background-color: pvar(--submenuColor); width: 100%; height: 81px; margin-bottom: $sub-menu-margin-bottom; @@ -146,10 +158,20 @@ 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 { - color: var(--mainForegroundColor); + color: pvar(--mainForegroundColor); font-size: 16px; display: inline-block; margin-right: 55px; @@ -163,7 +185,7 @@ label { &.active { font-weight: $font-bold; - border-bottom: 2px solid var(--mainColor); + border-bottom: 2px solid pvar(--mainColor); } &.title-page-single { @@ -171,7 +193,7 @@ label { } &:hover, &:active, &:focus { - color: var(--mainForegroundColor); + color: pvar(--mainForegroundColor); } @media screen and (max-width: $mobile-view) { @@ -203,7 +225,7 @@ label { @include disable-default-a-behaviour; font-size: 16px; - color: var(--mainForegroundColor); + color: pvar(--mainForegroundColor); padding: 5px 15px; border-radius: 0.25rem; @@ -236,6 +258,8 @@ table { .no-results { height: 40vh; + max-height: 500px; + display: flex; align-items: center; justify-content: center; @@ -257,7 +281,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 { @@ -268,9 +292,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; @@ -278,6 +303,7 @@ table { .sub-menu { padding-left: 50px; + padding-right: 50px; .title-page { font-size: 17px; @@ -287,6 +313,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; @@ -299,15 +331,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; } - input[type=text], input[type=password] { + .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=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}); + } } } }