X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fbootstrap.scss;h=cb266cc68a3f80ad00ffd3a70967f12863b43c5c;hb=8544d8f561f6cd630973da041f36e46500fe95b7;hp=a3261a8a66868ed92760d2afc91826d05859d77a;hpb=bc584963ff0e0e8ad16fdd08c0fce5900fac0630;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index a3261a8a6..cb266cc68 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -9,9 +9,31 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; animation: spin .7s infinite linear; } +.flex-auto { + flex: auto; +} + +.c-hand { + cursor: pointer; +} + @keyframes spin { - from { transform: scale(1) rotate(0deg);} - to { transform: scale(1) rotate(360deg);} + from { + transform: scale(1) rotate(0deg); + } + to { + transform: scale(1) rotate(360deg); + } +} + +/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ +.dropdown:not(.btn-group):not(.dropdown-root):not(.action-dropdown):not(.input-group-prepend) { + z-index: z(dropdown) !important; + + &.list-overflow-menu, + &.parent-entry { + z-index: z(header) - 1 !important; + } } .dropdown-menu { @@ -19,11 +41,21 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); font-size: 15px; + .dropdown-header { + padding-left: 1rem; + } + .dropdown-item { padding: 3px 15px; - &:active { - color: #000 !important; + &.active { + color: var(--mainBackgroundColor) !important; + background-color: var(--mainHoverColor); + opacity: .9; + } + + &::after { + display: none; } } @@ -38,21 +70,21 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; } -@media screen and (min-width: 768px) { +@media screen and (min-width: #{breakpoint(md)}) { .modal:before { - display: inline-block; vertical-align: middle; content: " "; height: 100%; } .modal-dialog { - display: inline-block; 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; + } } } @@ -73,15 +105,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; + } } } @@ -91,7 +128,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; @@ -126,24 +163,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 { @@ -165,4 +208,107 @@ ngb-tabset.bootstrap { .dropdown-divider { margin: 0.3rem 0; -} \ No newline at end of file +} + +ngb-modal-backdrop { + z-index: z(modal) - 1 !important; +} + +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; + } + input.form-control { + width: unset !important; + flex-grow: 1; + } + + .input-group-prepend + input { + border-top-left-radius: 0 !important; + border-bottom-left-radius: 0 !important; + } +} + +.has-feedback.has-clear { + position: relative; + + input { + padding-right: 1.5rem !important; + } + + .form-control-clear { + color: rgba(0, 0, 0, 0.4); + /* + * Enable pointer events as they have been disabled since Bootstrap 3.3 + * See https://github.com/twbs/bootstrap/pull/14104 + */ + pointer-events: all; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + right: .5rem; + height: 95%; + + &:hover { + color: rgba(0, 0, 0, 0.7); + cursor: pointer; + } + } + + input:placeholder-shown + .form-control-clear { + display: none; + } +}