From 72f5b83fd5f4142d08caeef28957aa5a979a2c78 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Tue, 17 Dec 2013 12:05:50 +0000 Subject: [PATCH] 2013-12-17 Sergio Martin * mobile/include/style/main.css: Add important attribute to override jquery mobile style of last commit. Change home layout for widths greater than 800px (tablet devices) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9239 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/mobile/include/style/main.css | 13 ++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0ae6c63921..d76e5357a7 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-12-17 Sergio Martin + + * mobile/include/style/main.css: Add important attribute to + override jquery mobile style of last commit. Change home layout + for widths greater than 800px (tablet devices) + 2013-12-17 Sergio Martin * mobile/include/style/main.css: Add a responsive design hack to diff --git a/pandora_console/mobile/include/style/main.css b/pandora_console/mobile/include/style/main.css index 41da3d0336..41ce623f78 100644 --- a/pandora_console/mobile/include/style/main.css +++ b/pandora_console/mobile/include/style/main.css @@ -705,6 +705,17 @@ li.ui-btn { } } +/* For tablets */ +@media screen and (min-width: 800px) +{ + .ui-content>.ui-btn { + width: 21%; + display: inline-block; + margin: 4px 10px; + height: 35px; + } +} + .events .cell_0 img { margin-right: 5px; } @@ -768,5 +779,5 @@ DIV.nodata_container { /* JQuery Mobile responsive hack to tables with */ .ui-table-reflow.ui-responsive { - display: table; + display: table !important; }