diff options
| author | amid2887 <[email protected]> | 2012-10-01 12:27:37 +0700 |
|---|---|---|
| committer | amid2887 <[email protected]> | 2012-10-01 12:27:37 +0700 |
| commit | d49dd766c87ce97dc45f37f3198841ca4e02d9e6 (patch) | |
| tree | 142d11a3c7caa21439bed67a155d42b682dc5b73 | |
| parent | c52368d3c5984b28e6a71e5e1240afdd788fc2e6 (diff) | |
| download | bootstrap-d49dd766c87ce97dc45f37f3198841ca4e02d9e6.tar.xz bootstrap-d49dd766c87ce97dc45f37f3198841ca4e02d9e6.zip | |
Add missing icon class definition for buttons.less
add missing icon class definition for buttons:
'[class*=" icon-"]'
| -rw-r--r-- | less/buttons.less | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/less/buttons.less b/less/buttons.less index 3fd1e95f5..ada76ea22 100644 --- a/less/buttons.less +++ b/less/buttons.less @@ -78,7 +78,8 @@ line-height: normal; .border-radius(5px); } -.btn-large [class^="icon-"] { +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { margin-top: 2px; } @@ -88,7 +89,8 @@ font-size: @baseFontSize - 2px; line-height: @baseLineHeight - 2px; } -.btn-small [class^="icon-"] { +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { margin-top: 0; } |
