diff options
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 256a05a04..d0ac3bfe3 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -3777,10 +3777,15 @@ input[type="button"].btn-block { } .navbar-toggler { + width: 2.5em; + height: 2em; padding: .5rem .75rem; font-size: 1.25rem; line-height: 1; - background: none; + background-color: transparent; + background: transparent no-repeat center center; + -webkit-background-size: 24px 24px; + background-size: 24px 24px; border: 1px solid transparent; border-radius: 0.25rem; } @@ -3836,6 +3841,10 @@ input[type="button"].btn-block { color: rgba(0, 0, 0, 0.8); } +.navbar-light .navbar-toggler { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.3)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); +} + .navbar-light .navbar-divider { background-color: rgba(0, 0, 0, 0.075); } @@ -3869,6 +3878,10 @@ input[type="button"].btn-block { color: white; } +.navbar-dark .navbar-toggler { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); +} + .navbar-dark .navbar-divider { background-color: rgba(255, 255, 255, 0.075); } |
