Commit bcc3af4b authored by Mark Otto's avatar Mark Otto

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)
parent 37f4a25b
...@@ -266,6 +266,17 @@ table { ...@@ -266,6 +266,17 @@ table {
.navbar { .navbar {
display: none; 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 @@ ...@@ -71,4 +71,15 @@
.navbar { .navbar {
display: none; 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;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment