diff options
| author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-17 12:48:54 -0600 | 
|---|---|---|
| committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-17 12:48:54 -0600 | 
| commit | f2b6ec6637c130044cc08ff186433f10ad2f3839 (patch) | |
| tree | a567261190b76eb2c94a82f2d35d64763415fd71 /modules/tag/helpers | |
| parent | 99db7e274818e4c3331cf55aba1d8a47d6ab8dde (diff) | |
Move tag css from theme to the module. Introduced generic .g-inline class for inline elements, including lists and forms.
Diffstat (limited to 'modules/tag/helpers')
| -rw-r--r-- | modules/tag/helpers/tag.php | 2 | ||||
| -rw-r--r-- | modules/tag/helpers/tag_theme.php | 1 | 
2 files changed, 2 insertions, 1 deletions
| diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php index a2104e9d..b1d79458 100644 --- a/modules/tag/helpers/tag.php +++ b/modules/tag/helpers/tag.php @@ -111,7 +111,7 @@ class tag_Core {    }    static function get_rename_form($tag) { -    $form = new Forge("admin/tags/rename/$tag->id", "", "post", array("id" => "g-rename-tag-form")); +    $form = new Forge("admin/tags/rename/$tag->id", "", "post", array("id" => "g-edit-tag-form", "class" => "g-short-form"));      $group = $form->group("rename_tag")->label(t("Rename Tag"));      $group->input("name")->label(t("Tag name"))->value($tag->name)->rules("required|length[1,64]");      $group->inputs["name"]->error_messages("in_use", t("There is already a tag with that name")); diff --git a/modules/tag/helpers/tag_theme.php b/modules/tag/helpers/tag_theme.php index 4f22d2ac..e3743824 100644 --- a/modules/tag/helpers/tag_theme.php +++ b/modules/tag/helpers/tag_theme.php @@ -21,6 +21,7 @@ class tag_theme_Core {    static function head($theme) {      $theme->css("jquery.autocomplete.css");      $theme->script("jquery.autocomplete.js"); +    $theme->css("tag.css");      $theme->script("tag.js");    } | 
