Currently using the Stylish extension under Firefox to override AO's default CSS definitions in order to make the forum (what I think is) visually easier to navigate:
View attachment 373511 View attachment 373512 View attachment 373513
Two questions:
1) Currently, the exact prefix formatting isn't terribly specific or consistent across different subforums, regarding the formatting code applied to them. Namely:
Would it be possible to review some of the consistency? As in the screenshots, I'm using client-side CSS overrides to reformat the prefixes; when the square brackets are individually enclosed in [noparse]<span></span>[/noparse] tags, it's quite trivial to make nicely formatted prefix "icons" as seen with the [HQ] tags.
[fullattach]373514[/fullattach]
2) Following from the first point, there's another concern due to thread starters being unable to select multiple prefixes: Since uploaders are now expected to post additional filehosts as replies to the original thread -- and replies cannot modify thread titles (prefix included) -- threads cannot be updated to reflect what filehosts are available for a given file.
Of course it would be nice if replies could additionally modify the thread prefix only, but not having seen the server code I don't know if this is possible (or if the necessary modifications would introduce security holes).
Another idea would be to use thread tags, since they can be updated by users. But again, not having seen forum code I don't know how feasible this is.
Ideally, it would be nice to clean up the code formatting to make it more consistent (CSS-friendly): for example, using class selectors such as .hotfile, or .hq, rather than [noparse]a[title~="[HQ]"][/noparse] as in the example above.
Fortunately, with properly formatted CSS, it would be remarkably easy to turn prefixes into small icons to make the forum more navigable (and at nearly negligible performance cost).
View attachment 373511 View attachment 373512 View attachment 373513
Two questions:
1) Currently, the exact prefix formatting isn't terribly specific or consistent across different subforums, regarding the formatting code applied to them. Namely:
- In Direct Download and Torrents subforums (mainly Idol and JIC), [HQ] prefixes are enclosed in [noparse]<b><span></span></b>[/noparse] tags.
- Other options (filehost, PIC, CLIP, etc) are enclosed in just a [noparse]<b></b>[/noparse] tag.
- There are also some posters who type prefixes into thread titles, and sometimes a specific prefix option (or combination of options) is not available (eg: [PICS-n-CLIPS] prefix).
Would it be possible to review some of the consistency? As in the screenshots, I'm using client-side CSS overrides to reformat the prefixes; when the square brackets are individually enclosed in [noparse]<span></span>[/noparse] tags, it's quite trivial to make nicely formatted prefix "icons" as seen with the [HQ] tags.
[fullattach]373514[/fullattach]
Code:
a[title~="[HQ]"] { background-color: #1d3652 !important; font-size: 12px !important; color: #f1f4f7 !important; -moz-border-radius: 3px !important; padding: 0 3px !important; }
a span[style="color: rgb(136, 136, 136);"] { display: none !important; }
2) Following from the first point, there's another concern due to thread starters being unable to select multiple prefixes: Since uploaders are now expected to post additional filehosts as replies to the original thread -- and replies cannot modify thread titles (prefix included) -- threads cannot be updated to reflect what filehosts are available for a given file.
Of course it would be nice if replies could additionally modify the thread prefix only, but not having seen the server code I don't know if this is possible (or if the necessary modifications would introduce security holes).
Another idea would be to use thread tags, since they can be updated by users. But again, not having seen forum code I don't know how feasible this is.
Ideally, it would be nice to clean up the code formatting to make it more consistent (CSS-friendly): for example, using class selectors such as .hotfile, or .hq, rather than [noparse]a[title~="[HQ]"][/noparse] as in the example above.
Fortunately, with properly formatted CSS, it would be remarkably easy to turn prefixes into small icons to make the forum more navigable (and at nearly negligible performance cost).