X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fapplication.scss;h=2ad1af23aad07c89578aea98e463c23818bf3b21;hb=c2faa073d113f410275021ed4de4b60fef118c13;hp=84b575eb3d49c927b4c15cb0d5b3921d002441a9;hpb=26da644eab9ef62a3e559ac5626bb65a0b13a14d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 84b575eb3..2ad1af23a 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -37,8 +37,6 @@ body { --mainBackgroundColor: #{$bg-color}; --mainForegroundColor: #{$fg-color}; - --secondaryColor: #{$secondary-color}; - --greyForegroundColor: #{$grey-foreground-color}; --greyBackgroundColor: #{$grey-background-color}; --greySecondaryBackgroundColor: #{$grey-background-hover-color}; @@ -96,6 +94,10 @@ noscript, margin: 1rem auto; } +a { + text-decoration: none; +} + strong { font-weight: $font-semibold; } @@ -120,6 +122,7 @@ button { label { font-weight: $font-bold; font-size: 15px; + margin-bottom: 0.5rem; } code { @@ -133,6 +136,10 @@ code { vertical-align: middle; } +.form-group { + margin-bottom: 1rem; +} + .form-error, .form-warning { display: block; @@ -144,7 +151,7 @@ code { } .input-error, -my-input-toggle-hidden ::ng-deep input { +my-input-text ::ng-deep input { border-color: $red !important; } @@ -154,14 +161,6 @@ my-input-toggle-hidden ::ng-deep input { max-width: initial; } -.glyphicon-black { - color: #000; -} - -.row { - margin: 0 !important; -} - .main-col { @include margin-left($menu-width); @@ -273,14 +272,17 @@ my-input-toggle-hidden ::ng-deep input { // In tables, don't have a hover different background table { - .action-button-edit, - .action-button-delete { - &:hover, - &:active, - &:focus, - &[disabled], - &.disabled { - background-color: $grey-background-color !important; + my-edit-button, + my-delete-button { + .action-button { + &:hover, + &:active, + &:focus, + &[disabled], + &.disabled { + background-color: pvar(--greyBackgroundColor) !important; + opacity: 0.8; + } } } } @@ -306,6 +308,25 @@ table { } } +my-global-icon[iconName=external-link] { + margin: 0 3px; + width: 13px; + vertical-align: text-bottom; + color: pvar(--inputPlaceholderColor); +} + +.chevron-down { + @include chevron-down(0.55rem, 0.20em); + + margin: 0 5px; +} + +.chevron-up { + @include chevron-up(0.55rem, 0.20em); + + margin: 0 5px; +} + /* offsetTop for scrollToAnchor */ .anchor { @@ -326,6 +347,29 @@ table { margin-top: 10px; } +.callout { + padding: 1.25rem; + border: 1px solid #eee; + border-radius: .25rem; + position: relative; + + > label { + position: relative; + top: -5px; + left: -10px; + color: #6c757d !important; + } + + &:not(.callout-light) { + border-left-width: .25rem; + } + + &.callout-info { + border-color: pvar(--mainColorLightest); + border-left-color: pvar(--mainColor); + } +} + @media screen and (max-width: #{breakpoint(xxl)}) { .main-col { --horizontalMarginContent: #{math.div($not-expanded-horizontal-margins, 2)}; @@ -342,7 +386,7 @@ table { --videosHorizontalMarginContent: #{pvar(--horizontalMarginContent)}; } - /* the following applies from 500px to 900px and is partially overriden from 500px to 800px by changes below to $small-view */ + /* the following applies from 500px to 900px and is partially overridden from 500px to 800px by changes below to $small-view */ .main-col, .main-col.expanded { --horizontalMarginContent: #{math.div($expanded-horizontal-margins, 3)};