X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fbootstrap.scss;h=eee3db8fca3fdbe52ce979fa74464673b191eb0f;hb=4682468d4d07e0864155dd2b403d93754786ea13;hp=e10b8459635dc69938cc01ad8dd448ec0f7d4018;hpb=134cf2bce96a8c5aefd55154e884964975d8cf23;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index e10b84596..eee3db8fc 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -13,6 +13,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; flex: auto; } +.c-hand { + cursor: pointer; +} + @keyframes spin { from { transform: scale(1) rotate(0deg); @@ -22,8 +26,14 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; } } -.dropdown { +/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ +.dropdown:not(.btn-group):not(.dropdown-root):not(.action-dropdown) { z-index: z(dropdown) !important; + + &.list-overflow-menu, + &.parent-entry { + z-index: z(header) - 1 !important; + } } .dropdown-menu { @@ -39,6 +49,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; background-color: var(--mainHoverColor); opacity: .9; } + + &::after { + display: none; + } } button { @@ -61,10 +75,12 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; .modal-dialog { text-align: left; - vertical-align: middle; - min-width: 500px; - width: 40vw; - max-width: 900px; + + &:not(.modal-lg):not(.modal-xl) { + min-width: 500px; + width: 40vw; + max-width: 900px; + } } } @@ -85,15 +101,20 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; } my-global-icon { - @include icon(24px); + @include icon(22px); position: relative; - top: 3px; + top: 5px; float: right; margin: 0; padding: 0; - opacity: 1; + opacity: .5; + + &[iconName="cross"] { + @include icon(16px); + top: -3px; + } } } @@ -103,7 +124,7 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; .action-button-cancel { @include peertube-button; - @include grey-button; + @include tertiary-button; display: inline-block; margin-right: 10px; @@ -138,24 +159,30 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; } } -ngb-tabset.bootstrap { +.nav-tabs { .nav-link { - &, & a { - @include disable-default-a-behaviour; - - color: var(--mainForegroundColor) !important; - } - } + @include disable-default-a-behaviour; - .nav-pills .nav-link.active { - color: #000 !important; + color: var(--mainForegroundColor) !important; } } -.nav-tabs .nav-link.active { - background-color: var(--mainBackgroundColor) !important; - border-bottom: none; +.nav-tabs .nav-link { + &:not(.active) { + border-bottom: 3px solid transparent; + } + &.active { + font-weight: $font-semibold; + background-color: var(--mainBackgroundColor) !important; + border: none; + border-bottom: 2px solid var(--mainColor); + } + &:hover { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + } } .card { @@ -187,12 +214,54 @@ ngb-modal-window { z-index: z(modal) !important; } +ngb-popover-window { + z-index: z(popover) !important; +} + +ngb-tooltip-window { + z-index: z(tooltip) !important; +} + +.btn-outline-secondary { + border-color: $input-border-color; + + &:focus-within, + &:focus, + &:hover { + color: #fff; + background-color: #6c757d; + } +} + .btn-outline-tertiary { color: var(--secondaryColor); border-color: var(--secondaryColor); + &:focus-within, + &:focus, &:hover { color: var(--mainBackgroundColor); background-color: var(--secondaryColor); } } + +// input box-shadow on focus +.form-control { + font-size: 15px; + color: var(--mainForegroundColor); + background-color: var(--inputBackgroundColor); + outline: none; + + &:focus-within, + &:focus { + box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest); + + &.input-error { + box-shadow: #{$focus-box-shadow-form} #{scale-color($red, $alpha: -75%)}; + } + } +} + +.input-group > .form-control { + flex: initial; +}