diff options
| author | Mark Otto <[email protected]> | 2012-08-21 13:02:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-21 13:02:02 -0700 |
| commit | 8a2b9f4a5f0f0c83c22ed364ca096ad191437117 (patch) | |
| tree | 2f2237340194b8764ad98582846455fa63ee284b | |
| parent | 099cec1ca7470acd32afaab60f2180557ad9bdab (diff) | |
| download | bootstrap-8a2b9f4a5f0f0c83c22ed364ca096ad191437117.tar.xz bootstrap-8a2b9f4a5f0f0c83c22ed364ca096ad191437117.zip | |
remove entity in content property on dropup carets--not necessary at all
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/dropdowns.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0664207ae..a27b56fd5 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2759,7 +2759,7 @@ table .span24 { .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px solid #000000; - content: "\2191"; + content: ""; } .dropup .dropdown-menu, diff --git a/less/dropdowns.less b/less/dropdowns.less index e83915dba..af8e4cb30 100644 --- a/less/dropdowns.less +++ b/less/dropdowns.less @@ -148,7 +148,7 @@ .caret { border-top: 0; border-bottom: 4px solid @black; - content: "\2191"; + content: ""; } // Different positioning for bottom up menu .dropdown-menu { |
