2013-12-17 Sergio Martin <sergio.martin@artica.es>

* 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
This commit is contained in:
zarzuelo 2013-12-17 12:05:50 +00:00
parent c242a03598
commit 72f5b83fd5
2 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-12-17 Sergio Martin <sergio.martin@artica.es>
* 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 <sergio.martin@artica.es> 2013-12-17 Sergio Martin <sergio.martin@artica.es>
* mobile/include/style/main.css: Add a responsive design hack to * mobile/include/style/main.css: Add a responsive design hack to

View File

@ -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 { .events .cell_0 img {
margin-right: 5px; margin-right: 5px;
} }
@ -768,5 +779,5 @@ DIV.nodata_container {
/* JQuery Mobile responsive hack to tables with */ /* JQuery Mobile responsive hack to tables with */
.ui-table-reflow.ui-responsive { .ui-table-reflow.ui-responsive {
display: table; display: table !important;
} }