From: Kathy Lussier Date: Tue, 24 Sep 2013 19:48:35 +0000 (-0400) Subject: Remove explicit widths from My account X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=327996d5882b7c528dfb34786f970546dc96d25d;p=working%2FEvergreen.git Remove explicit widths from My account There were a couple of explicit width in the My Account area that were causing the account expiration alert to run off the screen. I removed them and a tweak to the CSS to get the page elements to display properly. Signed-off-by: Kathy Lussier --- diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index 27d9772afa..2fff51e87d 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -809,6 +809,11 @@ div.result_table_utils_cont { font-weight: normal; } +#acct_sum_block { + float:left; + clear:left; +} + .acct_sum_table { border-collapse: collapse; background: [% css_colors.accent_ultralight %]; diff --git a/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2 b/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2 index b14572e02f..420bd3ec4d 100644 --- a/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2 +++ b/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2 @@ -5,7 +5,7 @@
-
+
[% l('Account Summary') %]
@@ -48,8 +48,8 @@
[% END %] -
-
+
+
[%- IF date.format(ctx.parse_datetime(ctx.user.expire_date), '%s') < date.format(date.now , '%s'); fmt_expire_date = date.format(ctx.parse_datetime(ctx.user.expire_date), DATE_FORMAT);