add cursor: pointer to actionable poll options (#7826)
* add cursor: pointer to actionable poll options Signed-off-by: Kerry Archibald <kerrya@element.io> * eof Signed-off-by: Kerry Archibald <kerrya@element.io>
This commit is contained in:
parent
32e127e098
commit
6fccd6b183
3 changed files with 58 additions and 44 deletions
|
@ -109,6 +109,11 @@ limitations under the License.
|
|||
}
|
||||
}
|
||||
|
||||
// options not actionable in these states
|
||||
.mx_MPollBody_option_checked, .mx_MPollBody_option_ended {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.mx_StyledRadioButton_checked, .mx_MPollBody_endedOptionWinner {
|
||||
input[type="radio"] + div {
|
||||
border-width: 2px;
|
||||
|
@ -150,3 +155,10 @@ limitations under the License.
|
|||
.mx_ReplyTile .mx_MPollBody {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.mx_MPollBody_option,
|
||||
// label has cursor: default in user-agent stylesheet
|
||||
// override
|
||||
.mx_MPollBody_live-option {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue