Add copyediting shortcuts for editor and author versions#5333
Conversation
There was a problem hiding this comment.
-
Andy, I can't get this to work, unless I cherry-pick 5e275cf from master. So I think when you rebase this on master, all should be well, but as it stands, the css doesn't load.
-
These tick boxes on the
request author versionare extremely difficult to see.
- Context / Accessibility wise - you have three identically-styled options, one loads a new page (change of context) the other two open small popups that you then can select items without a change of context. This isn't consistent and makes it harder for a user to predict when they will trigger a change of context.
f5c74c2 to
b54377e
Compare
StephDriver
left a comment
There was a problem hiding this comment.
Andy, I was still getting tiny tick boxes in safari. A bit of digging later - and none of the new css was in the inspector.
The CSS targets .modal-content form ul li label
but rendered was
<div><label><input>, not <ul><li>.
I suspect Safari default is smaller than other browser defaults.
this worked for me:
.modal-content form label:has(> input[type="checkbox"]) {
font-weight: normal;
}
.modal-content form label > input[type="checkbox"] {
width: 1rem;
height: 1rem;
margin-right: 0.5rem;
margin-bottom: 0;
vertical-align: -0.15em;
}
But - is this me on the wrong version of Django somehow, or wrong settings, or is this real? What do you get in the inspector for these tickboxes?
Closes #3137