Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-05-12 20:45:26 +0400
committerRouslan Placella <rouslan@placella.com>2012-05-13 03:28:34 +0400
commitb06b622dde9a903b9555fb3bbd382f15e049a979 (patch)
treedafae315da2e6c6725b48ae6ff2b14d7beb83f32 /print.css
parent843fce6b5a677d91b2776ed596ac5a12ab6a36ec (diff)
Use print.css in header_printview.inc.php
Diffstat (limited to 'print.css')
-rw-r--r--print.css49
1 files changed, 36 insertions, 13 deletions
diff --git a/print.css b/print.css
index 632a7553ee..1aa2f98279 100644
--- a/print.css
+++ b/print.css
@@ -1,11 +1,14 @@
-.print_ignore {
+.nowrap {
+ white-space: nowrap;
+}
+
+.hide {
display: none;
}
body, table, th, td {
- color: #000000;
- background-color: #ffffff;
- font-size: 8pt;
+ color: #000;
+ background-color: #fff;
}
img {
@@ -13,9 +16,7 @@ img {
}
table, th, td {
- border-width: 0.1em;
- border-color: #000000;
- border-style: solid;
+ border: .1em solid #000;
}
table {
@@ -32,15 +33,30 @@ th {
background-color: #e5e5e5;
}
+th.vtop, td.vtop {
+ vertical-align: top;
+}
+
+th.vbottom, td.vbottom {
+ vertical-align: bottom;
+}
+
@media print {
.print_ignore {
display: none;
}
+ .nowrap {
+ white-space: nowrap;
+ }
+
+ .hide {
+ display: none;
+ }
+
body, table, th, td {
- color: #000000;
- background-color: #ffffff;
- font-size: 8pt;
+ color: #000;
+ background-color: #fff;
}
img {
@@ -48,9 +64,7 @@ th {
}
table, th, td {
- border-width: 1px;
- border-color: #000000;
- border-style: solid;
+ border: .1em solid #000;
}
table {
@@ -66,4 +80,13 @@ th {
font-weight: bold;
background-color: #e5e5e5;
}
+
+ th.vtop, td.vtop {
+ vertical-align: top;
+ }
+
+ th.vbottom, td.vbottom {
+ vertical-align: bottom;
+ }
}
+