From 4c77f9ebdeb3796b4bb20282d414df8c879d25d7 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Sat, 10 Jul 2010 08:34:08 -0700 Subject: When limiting the length of album titles, purify after truncating so that the truncation happens on entity boundaries. Fixes ticket #1184. --- themes/wind/views/page.html.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'themes/wind/views/page.html.php') diff --git a/themes/wind/views/page.html.php b/themes/wind/views/page.html.php index 16e43c63..fd1b3973 100644 --- a/themes/wind/views/page.html.php +++ b/themes/wind/views/page.html.php @@ -107,13 +107,13 @@ level you're on the right page. --> item()->id}" : null) ?>"> - title), 15) ?> + title, 15)) ?>
  • "> - item()->title), 15) ?> + item()->title, 15)) ?>
  • -- cgit v1.2.3 From 04c89ef7b68e1ef7fbd82c799bb762798d5e438b Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Sun, 18 Jul 2010 00:25:56 -0600 Subject: Minor Wind IE tweaks. Load fix-ie.css for IE 8 too. Add padding to g-short-form submit inputs to make them same height as the text input. --- themes/wind/css/fix-ie.css | 15 ++++++++++++++- themes/wind/views/page.html.php | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) (limited to 'themes/wind/views/page.html.php') diff --git a/themes/wind/css/fix-ie.css b/themes/wind/css/fix-ie.css index f7f08486..ac100da4 100644 --- a/themes/wind/css/fix-ie.css +++ b/themes/wind/css/fix-ie.css @@ -7,6 +7,10 @@ zoom: 1; } +#g-sidebar { + overflow: hidden; +} + #g-photo, #g-movie { zoom: 1; @@ -22,8 +26,17 @@ input.submit { display: inline !important; } +.g-short-form input[type='submit'] { + line-height: 1em; + padding: .38em .3em; +} + #g-add-tag-form input.textbox { - width: 110px; + width: 110px !important; +} + +#g-add-tag-form input[type='submit'] { + padding: .3em 0 !important; } #g-dialog .g-cancel { diff --git a/themes/wind/views/page.html.php b/themes/wind/views/page.html.php index fd1b3973..9f94b04f 100644 --- a/themes/wind/views/page.html.php +++ b/themes/wind/views/page.html.php @@ -29,7 +29,7 @@ css("themeroller/ui.base.css") ?> css("gallery.common.css") ?> css("screen.css") ?> - -- cgit v1.2.3