summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2015-02-22 12:17:18 +0100
committerAlex Legler <alex@a3li.li>2015-02-22 12:17:18 +0100
commit99121ff1198b8e5b7ceafa3be36249d398008f85 (patch)
tree718623291a24c519062009fbc9a4b7f6862620f6 /public
parentResponsiveness fix #3: Finally nice buttons (diff)
downloadfrontend-99121ff1198b8e5b7ceafa3be36249d398008f85.tar.gz
frontend-99121ff1198b8e5b7ceafa3be36249d398008f85.tar.bz2
frontend-99121ff1198b8e5b7ceafa3be36249d398008f85.zip
Responsiveness fix #4: Message tables
Diffstat (limited to 'public')
-rw-r--r--public/css/main.css32
1 files changed, 17 insertions, 15 deletions
diff --git a/public/css/main.css b/public/css/main.css
index 67488de..bd52860 100644
--- a/public/css/main.css
+++ b/public/css/main.css
@@ -5,24 +5,26 @@
display: block;
}
-.ag-message-table {
- width: 100%;
- table-layout: fixed;
-}
+@media (min-width: 768px) {
+ .ag-message-table {
+ width: 100%;
+ table-layout: fixed;
+ }
-.ag-message-table td {
- text-overflow: ellipsis;
- max-height: 1.2em;
- overflow: hidden;
- white-space: nowrap;
-}
+ .ag-message-table td {
+ text-overflow: ellipsis;
+ max-height: 1.2em;
+ overflow: hidden;
+ white-space: nowrap;
+ }
-.ag-message-table-date {
- width: 22%;
-}
+ .ag-message-table-date {
+ width: 22%;
+ }
-.ag-message-table-from {
- width: 18%;
+ .ag-message-table-from {
+ width: 18%;
+ }
}
.ag-quote {