diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-06-28 04:56:08 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-06-28 16:37:20 +0200 |
| commit | c96fbbb701ec97f9f6c69ca0d51ed3cd895b260e (patch) | |
| tree | 4d79019c70f0fdbf6afa85cb0aa213756dab37b9 /public/stylesheets/ccc.css | |
| parent | b94de9fe8c30210469953bbd9880e9cbcc7a3ef5 (diff) | |
Fix tag list rendering in node editor
tag_list.to_s produces space-separated output which acts-as-taggable-on
13.0.0 (comma delimiter only) treats as a single tag on re-save.
Use join(', ') to render comma-separated tags in the input field.
Diffstat (limited to 'public/stylesheets/ccc.css')
| -rw-r--r-- | public/stylesheets/ccc.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/public/stylesheets/ccc.css b/public/stylesheets/ccc.css index c4530fa..30eb8dd 100644 --- a/public/stylesheets/ccc.css +++ b/public/stylesheets/ccc.css | |||
| @@ -121,6 +121,11 @@ div#center_column .article_partial h2.headline { | |||
| 121 | border-top: 2px solid #cccccc; | 121 | border-top: 2px solid #cccccc; |
| 122 | } | 122 | } |
| 123 | 123 | ||
| 124 | /* except for erfa list */ | ||
| 125 | div#center_column .chapter_partial h2.headline { | ||
| 126 | border-top: none; | ||
| 127 | } | ||
| 128 | |||
| 124 | div.article_partial h2 a { | 129 | div.article_partial h2 a { |
| 125 | text-decoration: none; | 130 | text-decoration: none; |
| 126 | } | 131 | } |
