diff options
| author | Mark Otto <[email protected]> | 2013-05-14 18:59:13 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-05-14 18:59:13 -0700 |
| commit | e23f661f3fc66f83cb976f8a3b7e2c627af9162d (patch) | |
| tree | 3f20c1c681a973cd56b04137d12ee785a6f01c14 /docs/assets/css | |
| parent | 1d8ff36afa73ac086004962ec2f3d02148f8a201 (diff) | |
| download | bootstrap-e23f661f3fc66f83cb976f8a3b7e2c627af9162d.tar.xz bootstrap-e23f661f3fc66f83cb976f8a3b7e2c627af9162d.zip | |
Fixes #7885 and #7886: only right align horizontal form labels when above 768px
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 7f1bf5cd8..4a1324b6b 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1700,7 +1700,12 @@ select:focus:invalid:focus { .form-horizontal .row-label { padding-top: 6px; - text-align: right; +} + +@media (min-width: 768px) { + .form-horizontal .row-label { + text-align: right; + } } .btn { |
