aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/assets/css/bootstrap.css5
-rw-r--r--less/navbar.less7
2 files changed, 12 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 9379177da..685e2e984 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -3481,6 +3481,10 @@ button.close {
background-color: transparent;
}
+.navbar-nav.pull-right {
+ width: 100%;
+}
+
.navbar-static-top {
border-radius: 0;
}
@@ -3709,6 +3713,7 @@ button.close {
}
.navbar-nav.pull-right {
float: right;
+ width: auto;
}
.navbar-toggle {
position: relative;
diff --git a/less/navbar.less b/less/navbar.less
index 59ea92dbd..54f4b75ab 100644
--- a/less/navbar.less
+++ b/less/navbar.less
@@ -48,6 +48,12 @@
color: @navbar-link-disabled-color;
background-color: @navbar-link-disabled-bg;
}
+
+ // Right aligned contents
+ // Make them full width first so that they align properly on mobile
+ &.pull-right {
+ width: 100%;
+ }
}
@@ -296,6 +302,7 @@
&.pull-right {
float: right;
+ width: auto;
}
}