diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 7320e6da42..0f936bae31 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3916,14 +3916,14 @@ input[type="button"].btn-block { .navbar-fixed-top, .navbar-static-top { - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); } .navbar-fixed-bottom { bottom: 0; - -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); } .navbar .nav { diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index ec15ae2f1a..ebd111fd8b 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -134,9 +134,6 @@ hr.soften { font-weight: 200; color: #fff; /* redeclare to override the `.jumbotron a` */ border: 0; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25); @@ -173,6 +170,16 @@ hr.soften { background: url(../img/bs-docs-masthead-pattern.png) repeat center center; opacity: .4; } +@media +only screen and (-webkit-min-device-pixel-ratio: 2), +only screen and ( min--moz-device-pixel-ratio: 2), +only screen and ( -o-min-device-pixel-ratio: 2/1) { + + .jumbotron:after { + background-size: 150px 150px; + } + +} /* Masthead (docs home) ------------------------- */ @@ -317,9 +324,7 @@ hr.soften { .show-grid [class*="span"] { background-color: #eee; text-align: center; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; min-height: 40px; line-height: 40px; } diff --git a/docs/assets/img/bs-docs-bootstrap-features.png b/docs/assets/img/bs-docs-bootstrap-features.png index d02c5ca692..7cd8501ae1 100644 Binary files a/docs/assets/img/bs-docs-bootstrap-features.png and b/docs/assets/img/bs-docs-bootstrap-features.png differ diff --git a/docs/assets/img/bs-docs-responsive-illustrations.png b/docs/assets/img/bs-docs-responsive-illustrations.png index 66b564b311..77c8f18f5c 100644 Binary files a/docs/assets/img/bs-docs-responsive-illustrations.png and b/docs/assets/img/bs-docs-responsive-illustrations.png differ diff --git a/docs/assets/img/bs-docs-twitter-github.png b/docs/assets/img/bs-docs-twitter-github.png index e49eb46e4c..06100f3989 100644 Binary files a/docs/assets/img/bs-docs-twitter-github.png and b/docs/assets/img/bs-docs-twitter-github.png differ diff --git a/docs/assets/img/less-logo-large.png b/docs/assets/img/less-logo-large.png deleted file mode 100644 index 8f62ffbe08..0000000000 Binary files a/docs/assets/img/less-logo-large.png and /dev/null differ diff --git a/docs/templates/layout.mustache b/docs/templates/layout.mustache index 6a8fbd9262..cdbee07931 100644 --- a/docs/templates/layout.mustache +++ b/docs/templates/layout.mustache @@ -9,7 +9,6 @@ - diff --git a/less/navbar.less b/less/navbar.less index 3bfc8ae6eb..c0d4b205f7 100644 --- a/less/navbar.less +++ b/less/navbar.less @@ -182,13 +182,13 @@ } .navbar-fixed-top, .navbar-static-top { - .box-shadow(~"inset 0 -1px 0 rgba(0,0,0,.1), 0 1px 10px rgba(0,0,0,.1)"); + .box-shadow(0 1px 10px rgba(0,0,0,.1)); } // Fixed to bottom .navbar-fixed-bottom { bottom: 0; - .box-shadow(~"inset 0 1px 0 rgba(0,0,0,.1), 0 -1px 10px rgba(0,0,0,.1)"); + .box-shadow(0 -1px 10px rgba(0,0,0,.1)); }