From 8c2ed0d681364837ab51b35d7aeb895b8adfa470 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Mon, 16 Aug 2010 22:39:54 -0600 Subject: Added text and submit classes to search form input and submit buttons, respectively. Fixed the width of the search form in IE. Button height's off in IE 8 compatbility mode. --- modules/search/views/search.html.php | 4 ++-- modules/search/views/search_link.html.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/search/views/search.html.php b/modules/search/views/search.html.php index 2e139ecf..3436a00c 100644 --- a/modules/search/views/search.html.php +++ b/modules/search/views/search.html.php @@ -8,10 +8,10 @@ diff --git a/modules/search/views/search_link.html.php b/modules/search/views/search_link.html.php index 481d0c82..dd3a76a4 100644 --- a/modules/search/views/search_link.html.php +++ b/modules/search/views/search_link.html.php @@ -3,10 +3,10 @@ -- cgit v1.2.3 From 9592f2f2e6dfff7f5a500b29511ba3bd23a0fa15 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 16 Aug 2010 21:54:32 -0700 Subject: Correct incorrect case on dialog title. --- modules/gallery/views/admin_modules.html.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/gallery/views/admin_modules.html.php b/modules/gallery/views/admin_modules.html.php index 4d6fe5f0..e2b86577 100644 --- a/modules/gallery/views/admin_modules.html.php +++ b/modules/gallery/views/admin_modules.html.php @@ -18,7 +18,8 @@ height: 400, width: 500, position: "center", - title: for_js() ?>, + title: for_js() ?>, buttons: { for_js() ?>: function() { $("form", this).submit(); -- cgit v1.2.3 From ea2808f48ffe10afc6514f0d1c96fe8b3f36f8e6 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 16 Aug 2010 22:03:23 -0700 Subject: Fix a typo to the case correction. --- modules/gallery/views/admin_modules.html.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/gallery/views/admin_modules.html.php b/modules/gallery/views/admin_modules.html.php index e2b86577..f4ae965c 100644 --- a/modules/gallery/views/admin_modules.html.php +++ b/modules/gallery/views/admin_modules.html.php @@ -18,8 +18,7 @@ height: 400, width: 500, position: "center", - title: for_js() ?>, + title: for_js() ?>, buttons: { for_js() ?>: function() { $("form", this).submit(); -- cgit v1.2.3 From 68b598d4fab4f7802e1193dc8139a8f7cd17efb5 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Thu, 19 Aug 2010 19:48:44 -0700 Subject: Remove style information regarding the permission dialog from the gallery.css to the wind/screen.css. This should make it easier for themes to style the dialog. --- modules/gallery/css/gallery.css | 18 +----------------- themes/wind/css/screen.css | 19 ++++++++++++++++++- 2 files changed, 19 insertions(+), 18 deletions(-) (limited to 'modules') diff --git a/modules/gallery/css/gallery.css b/modules/gallery/css/gallery.css index 08bd4749..fb72bd48 100644 --- a/modules/gallery/css/gallery.css +++ b/modules/gallery/css/gallery.css @@ -81,35 +81,19 @@ /* Permissions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #g-edit-permissions-form { - clear: both; + clear: both; } #g-edit-permissions-form th { text-align: center; } -#g-edit-permissions-form td { - background-image: none; -} - -#g-edit-permissions-form fieldset { - border: 1px solid #ccc; -} - #g-permissions .g-denied, #g-permissions .g-allowed { text-align: center; vertical-align: middle; } -#g-permissions .g-denied { - background-color: #fcc; -} - -#g-permissions .g-allowed { - background-color: #cfc; -} - /* Move items ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #g-move ul { diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index 44582a92..be802976 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -319,6 +319,23 @@ td { background-color: #fff; } +/* Permissions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ +#g-edit-permissions-form td { + background-image: none; +} + +#g-edit-permissions-form fieldset { + border: 1px solid #ccc; +} + +#g-permissions .g-denied { + background-color: #fcc; +} + +#g-permissions .g-allowed { + background-color: #cfc; +} + /** ******************************************************************* * 5) Navigation and menus *********************************************************************/ @@ -465,4 +482,4 @@ td { .rtl #g-footer #g-credits li { padding-left: 1.2em !important; padding-right: 0; -} \ No newline at end of file +} -- cgit v1.2.3