0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Allow clicking on the down arrow of select boxes

Closes #57

- Adds `pointer-events: none;` to the down arrow of select boxes
This commit is contained in:
Paul Adam Davis 2014-07-11 17:36:22 +01:00
parent e5f207ea01
commit 867648b76e
3 changed files with 4 additions and 2 deletions

View file

@ -104,6 +104,7 @@
@include position(absolute, 50% 0.8em null null);
position: absolute;
margin-top: -(0.85em / 2);
pointer-events: none;
};
select {

View file

@ -403,6 +403,7 @@ input[type='radio'] {
@include position(absolute, 50% 0.8em null null);
position: absolute;
margin-top: -0.5em;
pointer-events: none;
};
select {

File diff suppressed because one or more lines are too long