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:
parent
37f4a25be4
commit
bcc3af4b2a
11
docs/assets/css/bootstrap.css
vendored
11
docs/assets/css/bootstrap.css
vendored
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user