diff options
| author | Mark Otto <[email protected]> | 2013-06-17 20:56:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-17 20:56:02 -0700 |
| commit | bcc3af4b2ae64221a461283ce2c9d36a3c133d57 (patch) | |
| tree | 633b5e36ce24c37c238a432a2fc48168d14f8eec /docs | |
| parent | 37f4a25be436e8b25004d22541809032d8354600 (diff) | |
| download | bootstrap-bcc3af4b2ae64221a461283ce2c9d36a3c133d57.tar.xz bootstrap-bcc3af4b2ae64221a461283ce2c9d36a3c133d57.zip | |
Fixes #7599: Improved print styles for a few key components
* Updates `.table` to always enforce a solid white background
* Update button groups and dropdowns to always use black carets
* Add a 1px solid black border to labels (in the future we should add a
border to these perhaps for better printing)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index a99125994..0966a9854 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -266,6 +266,17 @@ table { .navbar { display: none; } + .table td, + .table th { + background-color: #fff !important; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } } * { |
