From dd45daaad8637f72aa9d0f927f89e637783fdbf8 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 11 Mar 2013 02:19:25 +0000 Subject: Get rid of max-height - no longer breaks newer versions of chrome, but does break showmore. --- view/theme/redbasic/css/style.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index c6490a573..b20b1434e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1090,8 +1090,7 @@ footer { } .wall-item-content img { - max-height: 95% !important; - max-width: 95% !important; + max-width: 95% !important; /* box-shadow: 8px 8px 8px #666; can't really have this because of smileys */ } @@ -3777,4 +3776,4 @@ ul.menu-popup { margin-top: 8px; } -.profile-match-connect { margin-top: 5px; } \ No newline at end of file +.profile-match-connect { margin-top: 5px; } -- cgit v1.2.3 From fbc5260995866c280fbc48bfb7899836f46136f4 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 12 Mar 2013 02:35:18 +0000 Subject: Get admin/users mostly working. Still need to associate channels with accounts. --- view/tpl/admin_users.tpl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl index 727030f5d..b8822175c 100644 --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -66,11 +66,12 @@ $u.nickname $u.name - $u.email - $u.register_date - $u.login_date + $u.account_email + $u.account_created + $u.account_lastlog $u.lastitem_date $u.page_flags + $u.account_service_class -- cgit v1.2.3 From b48c481b9cb1b1c06634139dc0e6c4c91b83d873 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 15 Mar 2013 15:25:39 +0000 Subject: Tidy up --- view/tpl/admin_users.tpl | 3 --- view/tpl/smarty3/admin_users.tpl | 10 ++++------ 2 files changed, 4 insertions(+), 9 deletions(-) (limited to 'view') diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl index b8822175c..6de504e2a 100644 --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -65,12 +65,9 @@ {{ for $users as $u }} $u.nickname - $u.name $u.account_email $u.account_created $u.account_lastlog - $u.lastitem_date - $u.page_flags $u.account_service_class diff --git a/view/tpl/smarty3/admin_users.tpl b/view/tpl/smarty3/admin_users.tpl index 5448a08c4..136ce3c3e 100644 --- a/view/tpl/smarty3/admin_users.tpl +++ b/view/tpl/smarty3/admin_users.tpl @@ -70,12 +70,10 @@ {{foreach $users as $u}} {{$u.nickname}} - {{$u.name}} - {{$u.email}} - {{$u.register_date}} - {{$u.login_date}} - {{$u.lastitem_date}} - {{$u.page_flags}} + {{$u.account_email}} + {{$u.account_created}} + {{$u.account_lastlog}} + {{$u.account_service_class}} -- cgit v1.2.3