diff options
| author | Mark Otto <[email protected]> | 2018-04-01 18:14:07 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-04-01 18:14:07 -0700 |
| commit | e47fb40ff250a82bcd24577e0073ce8aa147ef0f (patch) | |
| tree | e6ffcd42aa0a125a9ff16e155bc8ba78153f40d2 /docs/4.0/examples/dashboard/dashboard.css | |
| parent | a0c7473a34082edcb9ca4097eccdf2f6c42af55e (diff) | |
| download | bootstrap-e47fb40ff250a82bcd24577e0073ce8aa147ef0f.tar.xz bootstrap-e47fb40ff250a82bcd24577e0073ce8aa147ef0f.zip | |
Dashboard updates (#26179)
* Update Dashboard example
- Replaces .sticky-top on .navbar with .fixed-top
- Adjusts padding on main content area and sidebar to account for fixed navbar
- Move to padding in sidebar instead of top: 48px; fixes Firefox rendering issue
- Adds new .shadow utility for a little extra cherry on top
- Moves sticky styles to separate feature query ruleset to avoid IE rendering issues
* Add .w-100 to chart to fix IE horizontal scroll from label that extended past viewport
Diffstat (limited to 'docs/4.0/examples/dashboard/dashboard.css')
| -rw-r--r-- | docs/4.0/examples/dashboard/dashboard.css | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/docs/4.0/examples/dashboard/dashboard.css b/docs/4.0/examples/dashboard/dashboard.css index ef40fe78f..391809739 100644 --- a/docs/4.0/examples/dashboard/dashboard.css +++ b/docs/4.0/examples/dashboard/dashboard.css @@ -18,20 +18,26 @@ body { bottom: 0; left: 0; z-index: 100; /* Behind the navbar */ - padding: 0; + padding: 48px 0 0; /* Height of navbar */ box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); } .sidebar-sticky { - position: -webkit-sticky; - position: sticky; - top: 48px; /* Height of navbar */ + position: relative; + top: 0; height: calc(100vh - 48px); padding-top: .5rem; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ } +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sidebar-sticky { + position: -webkit-sticky; + position: sticky; + } +} + .sidebar .nav-link { font-weight: 500; color: #333; @@ -57,6 +63,14 @@ body { } /* + * Content + */ + +[role="main"] { + padding-top: 48px; /* Space for fixed navbar */ +} + +/* * Navbar */ |
