Page 3 of 3

Re: Solved Button proposal

Posted: 01 Jul 2016, 19:30
by tank
I honestly dont know what your talking about. What is a 'test' forum?

Re: Solved Button proposal

Posted: 01 Jul 2016, 20:53
by TAC109
I suppose it's more a Usenet thing. Anyway I was trying to test aspects of the 'solved' button and I attempted to do this in the 'off topic' forum as it seemed to be the most appropriate forum to use. I and someone else had done this earlier without problems but my recent attempt didn't work. I was wanting to see what the 'solved' icon looked like in the different board styles and whether, having turned it on, it could be turned off.

Such a simple thing, but apparently fraught with difficulties.

Re: Solved Button proposal

Posted: 01 Jul 2016, 23:56
by joedf
Sure why not? :)
Edit: now enabled for all in offtopic

Re: Solved Button proposal

Posted: 04 Jul 2016, 14:25
by joedf
I've intergrated my greasemonkey script into the simplicity theme.
https://autohotkey.com/boards/styles/si ... tsolved.js
GitHub Commit: https://github.com/ahkscript/phpbb31_st ... 47fb3e1ca0

Re: Solved Button proposal

Posted: 05 Jul 2016, 09:36
by joedf
http://autohotkey.com/boards/ext/tierra ... uttons.css @ line 4
changed

Code: Select all

.topicsolved-icon.dropdown-select:after {
	background-image: url("images/topicsolved_icons_button.png");
}
to

Code: Select all

.topicsolved-icon.dropdown-select:after {
	background-image: url("images/topicsolved_icons_button.png") !important;
	color: transparent;
}
There's still the issue of the on-Hover css and also the contrast isn't very good for checkmark.

Re: Solved Button proposal

Posted: 05 Jul 2016, 09:45
by joedf
FIXED:
changed it to

Code: Select all

.topicsolved-icon.dropdown-select:after {
	/*background-image: url("images/topicsolved_icons_button.png") !important;
	color: transparent;*/
	color: white;
	content: '\f00c';
}
EDIT: changed '\002714' to '\f00c' (using font-awesome's checkmark instead of universal unicode)

Re: Solved Button proposal

Posted: 09 Jul 2016, 19:51
by lexikos
joedf wrote:Understood. Here are the current settings.

Code: Select all

Yes
	Ask For Help
No
	Everything else...
It seems that you haven't enabled it for the Gaming sub-forum.
https://autohotkey.com/boards/viewtopic ... 702#p96702


Btw, is there a way to unmark a post or change which post is marked as the answer?

Re: Solved Button proposal

Posted: 10 Jul 2016, 11:00
by joedf
lexikos wrote:It seems that you haven't enabled it for the Gaming sub-forum. [...]
Oops! Thanks, I've set it now.
lexikos wrote:Btw, is there a way to unmark a post or change which post is marked as the answer?
topic-solved Plugin wrote:Allow topics to be reopened: Give users or moderators the ability to set a topic back as not solved. Moderators can unsolve topics in both yes-options.
I have set it to Yes, moderator for all of them.