summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-09-18 16:22:36 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-09-18 16:22:36 +0200
commit9a9d7a5a315eb34bb83442c2967fe271d500db89 (patch)
treeb9296e43d8378073d1444126826214b7c2e1cf01
parent0947b780c94da2761180387e51ff17940f0080cb (diff)
Fix alignment of tables
-rw-r--r--p/themes/Dark/dark.css1
-rw-r--r--p/themes/Flat/flat.css1
-rw-r--r--p/themes/Origine/origine.css1
-rw-r--r--p/themes/Screwdriver/screwdriver.css1
-rw-r--r--p/themes/base-theme/template.css9
5 files changed, 9 insertions, 4 deletions
diff --git a/p/themes/Dark/dark.css b/p/themes/Dark/dark.css
index 669f4ce42..a5c499643 100644
--- a/p/themes/Dark/dark.css
+++ b/p/themes/Dark/dark.css
@@ -872,7 +872,6 @@ a.btn {
.stat > table td,
.stat > table th {
border-bottom: 1px solid #333;
- text-align: center;
}
/*=== LOGS */
diff --git a/p/themes/Flat/flat.css b/p/themes/Flat/flat.css
index a942df0e8..e1cf35954 100644
--- a/p/themes/Flat/flat.css
+++ b/p/themes/Flat/flat.css
@@ -859,7 +859,6 @@ a.btn {
.stat > table td,
.stat > table th {
border-bottom: 1px solid #ddd;
- text-align: center;
}
/*=== LOGS */
diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css
index 2f7baee7d..4195bc260 100644
--- a/p/themes/Origine/origine.css
+++ b/p/themes/Origine/origine.css
@@ -913,7 +913,6 @@ a.btn {
.stat > table td,
.stat > table th {
border-bottom: 1px solid #ddd;
- text-align: center;
}
/*=== LOGS */
diff --git a/p/themes/Screwdriver/screwdriver.css b/p/themes/Screwdriver/screwdriver.css
index 1d84753c7..5475d2fd9 100644
--- a/p/themes/Screwdriver/screwdriver.css
+++ b/p/themes/Screwdriver/screwdriver.css
@@ -1025,7 +1025,6 @@ opacity: 1;
border-bottom: 1px solid #ccc;
background: rgba(255,255,255,0.38);
box-shadow: 0 1px #fff;
- text-align: center;
}
/*=== LOGS */
diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css
index 2a9deb0ea..733dd6e02 100644
--- a/p/themes/base-theme/template.css
+++ b/p/themes/base-theme/template.css
@@ -98,6 +98,15 @@ button.as-link:active {
font-size: 1.1em;
}
+/*=== Tables */
+table {
+ max-width: 100%;
+}
+th.numeric,
+td.numeric {
+ text-align: center;
+}
+
/*=== COMPONENTS */
/*===============*/
/*=== Forms */