mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-05 23:18:53 -05:00
Scope fullscreen button size to hover-capable devices
Wrapped the fullscreen button SVG sizing rules in a media query targeting devices with hover and fine pointer capabilities. This prevents the size override from affecting touch devices.
This commit is contained in:
parent
d955576a7e
commit
219e80e9e2
@ -29,7 +29,9 @@ button {
|
||||
}
|
||||
|
||||
/* Center the fullscreen button inside its wrapper */
|
||||
.vjs-fullscreen-control svg {
|
||||
@media (hover: hover) and (pointer: fine) {
|
||||
.vjs-fullscreen-control svg {
|
||||
width: 30px !important;
|
||||
height: 30px !important;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user