User tests: Successful: Unsuccessful:
Pull Request for Issue #12715
Added overrides to boostrap css in the installation template.css in order to use only a highlight color when a button has been selected.
Install a clean Joomla as default Multilingual site.
In the specific page to set Multilingual you now should get:
Status | New | ⇒ | Pending |
Category | ⇒ | Installation |
cursor showing ?
yes it does , cursor is not showing "inside" the buttons,
the cursor is shown inside the fieldset button group, and it appears as it is inside the second button (but it is actually inside the button group)
e.g. in firefox click besides the buttons, or on the 2nd button
is that due to this patch?
is that due to this patch?
no
This wouldn't pass WCAG AA, so would suggest making the blue a little darker (#386cac
).
#294f7e
if you want it to pass AAA
#294f7e looks good to me
I haven't test this but you could shorten it to something like the following presuming the pseudo class colors are inherited (add !important if not)...
#jform_activateMultilanguage [class^="btn-"],
#jform_installLocalisedContent [class^="btn-"],
#jform_activatePluginLanguageCode [class^="btn-"] {
background-color: #5a97d7;
color: #fff;
}
@ciar4n , need to target the active
state:
#jform_activateMultilanguage [class^="btn-"]:active,
#jform_activateMultilanguage [class^="btn-"].active,
#jform_installLocalisedContent [class^="btn-"]:active,
#jform_installLocalisedContent [class^="btn-"].active,
#jform_activatePluginLanguageCode [class^="btn-"]:active,
#jform_activatePluginLanguageCode [class^="btn-"].active {
background-color: #294f7e;
}
Note: color: #fff;
is already set, so no need to redefine it.
Thanks guys
I evidently accept any PR towards my branch.
@infograf768 - ^
doesn't seem to work in FF for me, so used *
instead:
will test after siesta
Please update when you have merged so I can test it - thanks
I have tested this item
I have tested this item
I have tested this item
Status | Pending | ⇒ | Ready to Commit |
RTC
Milestone |
Added: |
You can use the same colour as the "Next" button above. This is level AA compliant. Choice is up to you guys
Folks, just make up your mind... It is easy to change...
I think it's fine as is. Visually I'd somewhat expect the buttons to have a different shade from form inputs.
Status | Ready to Commit | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-11-15 20:46:13 |
Closed_By | ⇒ | wilsonge |
About cursor showing inside the button
we need to disallow selection on both the group and the button
About active color on buttons, it looks too exposed, and makes words yes / no harder to read
-- maybe a little darker flavour: #5a97d7