X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fbootstrap.scss;h=e10b8459635dc69938cc01ad8dd448ec0f7d4018;hb=1d17d86349fd2b3a9bc85145d02383ba4aea4dc0;hp=2f691de703b87c3bc8fa792410fa2d440fb82ed9;hpb=3921166d78540a08d329793c9c2f952135c6fd67;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 2f691de70..e10b84596 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -9,9 +9,21 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; animation: spin .7s infinite linear; } +.flex-auto { + flex: auto; +} + @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); + } +} + +.dropdown { + z-index: z(dropdown) !important; } .dropdown-menu { @@ -22,8 +34,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; .dropdown-item { padding: 3px 15px; - &:active { - color: #000 !important; + &.active { + color: var(--mainBackgroundColor) !important; + background-color: var(--mainHoverColor); + opacity: .9; } } @@ -38,16 +52,14 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; } -@media screen and (min-width: 768px) { +@media screen and (min-width: #{map-get($grid-breakpoints, 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; @@ -162,3 +174,25 @@ ngb-tabset.bootstrap { max-height: 1500px; } } + +.dropdown-divider { + margin: 0.3rem 0; +} + +ngb-modal-backdrop { + z-index: z(modal) - 1 !important; +} + +ngb-modal-window { + z-index: z(modal) !important; +} + +.btn-outline-tertiary { + color: var(--secondaryColor); + border-color: var(--secondaryColor); + + &:hover { + color: var(--mainBackgroundColor); + background-color: var(--secondaryColor); + } +}