1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-23 09:41:11 +00:00

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)
This commit is contained in:
Mark Otto 2013-06-17 20:56:02 -07:00
parent 37f4a25be4
commit bcc3af4b2a
2 changed files with 22 additions and 0 deletions

View File

@ -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;
}
}
* {

View File

@ -71,4 +71,15 @@
.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;
}
}