Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2012-12-20 12:54:58 +0400
committerMark Otto <otto@github.com>2012-12-20 12:54:58 +0400
commitc00f29e4d4e157376c2b24a64bee67bc67e7136a (patch)
tree1f4b1d1f600f1a97e93fe14a5fc6448d4665be74
parent9726fded1c587c14b57a61a92b88ac74fe21d320 (diff)
Fixes #6236: Fix popover font-size in input groups
-rw-r--r--docs/assets/css/bootstrap.css4
-rw-r--r--less/forms.less3
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 9b77c47b87..6a409dd20c 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -1658,7 +1658,9 @@ select:focus:invalid:focus {
.input-append .uneditable-input,
.input-prepend .uneditable-input,
.input-append .dropdown-menu,
-.input-prepend .dropdown-menu {
+.input-prepend .dropdown-menu,
+.input-append .popover,
+.input-prepend .popover {
font-size: 14px;
}
diff --git a/less/forms.less b/less/forms.less
index 2dff229191..47d221bcfd 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -430,7 +430,8 @@ select:focus:invalid {
input,
select,
.uneditable-input,
- .dropdown-menu {
+ .dropdown-menu,
+ .popover {
font-size: @baseFontSize;
}