X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fbootstrap.scss;h=ac53ae7a54eb148c72ded219d7346f6cad711426;hb=c5e01c683b3dfac1463d31509cd2788bff6dad16;hp=259af7a779e4fa36ec0748c7e39ba4648c724f4e;hpb=5d666c0eb25a1b665caa46c4210c1dc2a6b5b333;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 259af7a77..ac53ae7a5 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -44,6 +44,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; z-index: inherit !important; } +.btn-group > .btn:not(:first-child) { + border-top-left-radius: 0 !important; + border-bottom-left-radius: 0 !important; +} .dropdown-menu { z-index: z(dropdown) + 1 !important; @@ -65,6 +69,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; opacity: .9; } + &:active { + color: pvar(--mainForegroundColor) !important; + } + &::after { display: none; } @@ -353,3 +361,25 @@ ngb-tooltip-window { display: none; } } + +.callout { + padding: 1.25rem; + border: 1px solid #eee; + border-radius: .25rem; + + & > 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); + } +}