phpmyadmin/print.css
Maurício Meneghini Fauth 00151b5f1c
Remove some custom CSS utilities
Uses Bootstrap equivalents instead.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-12-22 13:18:58 -03:00

88 lines
820 B
CSS

.nowrap {
white-space: nowrap;
}
.hide {
display: none;
}
body,
table,
th,
td {
color: #000;
background-color: #fff;
}
img {
border: 0;
}
table,
th,
td {
border: 0.1em solid #000;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
th,
td {
padding: 0.2em;
}
th {
font-weight: bold;
background-color: #e5e5e5;
}
@media print {
.print_ignore {
display: none;
}
.nowrap {
white-space: nowrap;
}
.hide {
display: none;
}
body,
table,
th,
td {
color: #000;
background-color: #fff;
}
img {
border: 0;
}
table,
th,
td {
border: 0.1em solid #000;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
th,
td {
padding: 0.2em;
}
th {
font-weight: bold;
background-color: #e5e5e5;
}
}