Skip to content

Commit

Permalink
luci-mod-dashboard: The Lan and WiFi tables are half-width, we should…
Browse files Browse the repository at this point in the history
… not use the table-titles which has @media rules about 992px.

Signed-off-by: Jan Pazdziora <[email protected]>
  • Loading branch information
adelton committed Jan 9, 2025
1 parent 035640a commit 17f7e3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ return baseclass.extend({
]));

var container_devices = E('table', { 'class': 'table assoclist devices-info' }, [
E('tr', { 'class': 'tr table-titles dashboard-bg' }, [
E('tr', { 'class': 'tr dashboard-bg' }, [
E('th', { 'class': 'th nowrap' }, _('Hostname')),
E('th', { 'class': 'th' }, _('IP Address')),
E('th', { 'class': 'th' }, _('MAC')),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ return baseclass.extend({
container_box.appendChild(container_radio);

var container_devices = E('table', { 'class': 'table assoclist devices-info' }, [
E('tr', { 'class': 'tr table-titles dashboard-bg' }, [
E('tr', { 'class': 'tr dashboard-bg' }, [
E('th', { 'class': 'th nowrap' }, _('Hostname')),
E('th', { 'class': 'th' }, _('SSID')),
E('th', { 'class': 'th', 'width': '45%' }, _('Signal Strength')),
Expand Down

0 comments on commit 17f7e3c

Please sign in to comment.