diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-06-27 02:39:55 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-06-27 02:39:55 +0200 |
| commit | b4f850e97aeb12369399d8e1ab354f66d3b88e40 (patch) | |
| tree | a4936218a3e8df5525150d12ed4b94c077befd6f /public | |
| parent | e7d5d0b2c32b172ecdaa80555bf5804043fd87a0 (diff) | |
Stage 6 click-testing fixes and production setup
- file_attachment.rb: delete old upload directory before writing replacement
files; fixes orphaned variants when filename or mime type changes
- assets/edit.html.erb: add file upload field and current file display;
the form was previously empty and non-functional
- admin.css: fix button_to hover styling; buttons now show orange hover
to signal interactivity
- test/controllers/users_controller_test.rb: assert input[type=submit]
not anchor tag for destroy action (button_to change)
- test/test_helper.rb: add I18n.locale reset in setup block
- doc/rc.d_cccms: fix cccms_chdir, add start_precmd for log/pid dirs,
PATH export for bash wrapper, user/pid/tcp_nopush unicorn fixes
- doc/INSTALL.md: new installation guide covering all non-obvious steps
- Remove parked search migration from doc/ (now in db/migrate/)
Diffstat (limited to 'public')
| -rw-r--r-- | public/stylesheets/admin.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css index 1a29eff..4b08356 100644 --- a/public/stylesheets/admin.css +++ b/public/stylesheets/admin.css | |||
| @@ -131,11 +131,12 @@ form.button_to input[type="submit"] { | |||
| 131 | font: inherit; | 131 | font: inherit; |
| 132 | color: inherit; | 132 | color: inherit; |
| 133 | cursor: pointer; | 133 | cursor: pointer; |
| 134 | text-decoration: underline; | 134 | text-decoration: none |
| 135 | } | 135 | } |
| 136 | 136 | ||
| 137 | form.button_to input[type="submit"]:hover { | 137 | form.button_to input[type="submit"]:hover { |
| 138 | color: inherit; | 138 | color: #ffffff; |
| 139 | background-color: #ff9600; | ||
| 139 | } | 140 | } |
| 140 | 141 | ||
| 141 | #admin_wizard { | 142 | #admin_wizard { |
