Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke McDonald authored and Luke McDonald committed Oct 7, 2023
1 parent fbfbe56 commit 283b182
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 13 deletions.
38 changes: 28 additions & 10 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* -----------------------------------------------------------------------------
*/

/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
/*! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -31,6 +31,7 @@
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
Expand All @@ -41,6 +42,7 @@ html {
tab-size: 4; /* 3 */
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
font-feature-settings: normal; /* 5 */
font-variation-settings: normal; /* 6 */
}

/*
Expand Down Expand Up @@ -171,6 +173,8 @@ optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-feature-settings: inherit; /* 1 */
font-variation-settings: inherit; /* 1 */
font-size: 100%; /* 1 */
font-weight: inherit; /* 1 */
line-height: inherit; /* 1 */
Expand Down Expand Up @@ -308,6 +312,14 @@ menu {
padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
Expand Down Expand Up @@ -397,6 +409,9 @@ video {
--tw-pan-y: ;
--tw-pinch-zoom: ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position: ;
--tw-gradient-via-position: ;
--tw-gradient-to-position: ;
--tw-ordinal: ;
--tw-slashed-zero: ;
--tw-numeric-figure: ;
Expand Down Expand Up @@ -444,6 +459,9 @@ video {
--tw-pan-y: ;
--tw-pinch-zoom: ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position: ;
--tw-gradient-via-position: ;
--tw-gradient-to-position: ;
--tw-ordinal: ;
--tw-slashed-zero: ;
--tw-numeric-figure: ;
Expand Down Expand Up @@ -586,10 +604,10 @@ body {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
--tw-gradient-from: #52525b;
--tw-gradient-to: rgb(82 82 91 / 0);
--tw-gradient-from: #52525b var(--tw-gradient-from-position);
--tw-gradient-to: rgb(82 82 91 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
--tw-gradient-to: #27272a;
--tw-gradient-to: #27272a var(--tw-gradient-to-position);
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
Expand Down Expand Up @@ -748,19 +766,19 @@ body {
position: relative;
cursor: pointer;
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
--tw-gradient-from: #3f3f46;
--tw-gradient-to: rgb(63 63 70 / 0);
--tw-gradient-from: #3f3f46 var(--tw-gradient-from-position);
--tw-gradient-to: rgb(63 63 70 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
--tw-gradient-to: #52525b;
--tw-gradient-to: #52525b var(--tw-gradient-to-position);
}

.jp-volume-bar-value,
.jp-play-bar {
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
--tw-gradient-from: #eab308;
--tw-gradient-to: rgb(234 179 8 / 0);
--tw-gradient-from: #eab308 var(--tw-gradient-from-position);
--tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
--tw-gradient-to: #fde047;
--tw-gradient-to: #fde047 var(--tw-gradient-to-position);
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
Expand Down
3 changes: 1 addition & 2 deletions assets/js/jplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jQuery.extend(demo, {
/**
* Initialize the jPlayer and playlist.
*/

setupPlayer: () => {
jPlaylist = new jPlayerPlaylist(
{
Expand All @@ -23,7 +22,7 @@ jQuery.extend(demo, {
useStateClassSkin: true,
autoBlur: false,
keyEnabled: true,
}
},
)
},
})
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
Expand Down

0 comments on commit 283b182

Please sign in to comment.