mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-03 21:10:23 +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
2 changed files with 22 additions and 0 deletions
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…
Reference in a new issue