mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-28 02:44:53 +00:00
Dashboard: fixed CSS height issue for rows (top, center, bottom)
git-svn-id: https://svn.fhem.de/fhem/trunk@8903 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
f3798c9b3f
commit
b0e820375f
fhem
@ -1,5 +1,6 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- bugfix: Dashboard: fixed CSS height issue for rows (top, center, bottom)
|
||||
- feature: FB_CALLLIST: new attribute "external-mapping", new column for
|
||||
external_connection reading (see commandref for details, by Michael)
|
||||
- feature: Dashboard: release version 3.0
|
||||
|
@ -212,9 +212,9 @@ function restoreOrder(ActiveTabId) {
|
||||
|
||||
//--------------------------------------------- Set Row and Column Settings --------------------------------------------------------------------------------------------
|
||||
$("#dashboard").width(params[1]);
|
||||
if (ActiveTab.has("#dashboard_rowtop_tab"+ActiveTabId).length){ $("#dashboard_rowtop_tab"+ActiveTabId).height(params[8]); }
|
||||
if (ActiveTab.has("#dashboard_rowcenter_tab"+ActiveTabId).length){ $("#dashboard_rowcenter_tab"+ActiveTabId).height(params[5]); }
|
||||
if (ActiveTab.has("#dashboard_rowbottom_tab"+ActiveTabId).length){ $("#dashboard_rowbottom_tab"+ActiveTabId).height(params[9]); }
|
||||
if (ActiveTab.has("#dashboard_rowtop_tab"+ActiveTabId).length){ $("#dashboard_rowtop_tab"+ActiveTabId).css('min-height', params[8] + 'px'); }
|
||||
if (ActiveTab.has("#dashboard_rowcenter_tab"+ActiveTabId).length){ $("#dashboard_rowcenter_tab"+ActiveTabId).css('min-height', params[5] + 'px'); }
|
||||
if (ActiveTab.has("#dashboard_rowbottom_tab"+ActiveTabId).length){ $("#dashboard_rowbottom_tab"+ActiveTabId).css('min-height', params[9] + 'px'); }
|
||||
|
||||
for (var i = 0, n = colCount; i <= n; i++) {
|
||||
if (ActiveTab.has("#dashboard_tab"+ActiveTabId+"column"+i).length) { $("#dashboard_tab"+ActiveTabId+"column"+i).width(aColWidth[i]+"%"); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user