-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: hls player and audio only on apple devices
ok, for the likely 0 people who are gonna read this, lets have a quick rant about apple, why do i have to make changes just for my website to work on apples devices when it works on literally every other thing i tried, just for the fix to be such a stupid one like you having to put the mimetype as if it cant just auto detect that, i thaught apple was a multi trillion us dollar company, why cant it spend a tiny little bit more on their software team making the software actually kind of functional jesus christ
- Loading branch information
1 parent
0c0158c
commit ca645ee
Showing
3 changed files
with
18 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
::-webkit-media-controls-enclosure { | ||
border-radius: 0px; | ||
display: revert; | ||
transition: transform 0.2s; | ||
transition: 1.8s; | ||
-webkit-text-stroke: 1px white; | ||
transition: transform 0.2s; | ||
transition: 1.8s; | ||
-webkit-text-stroke: 1px white; | ||
background-color: rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
::-webkit-media-controls-enclosure:hover { | ||
border-radius: 0px; | ||
display: revert; | ||
background-color: rgb(31, 31, 31); | ||
transition: transform 0.2s; | ||
transition: 0.3s; | ||
display: revert; | ||
background-color: rgb(31, 31, 31); | ||
transition: transform 0.2s; | ||
transition: 0.3s; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters