Files
Jellystat/src/pages/css/width_breakpoint_css.css
Thegan Govender 3a04661915 Automated Tasks + Logging +misc
New:
Added automated tasks for Sync and Backups - Backups run every  24hrs, Sync runs every 10 minutes
Added switcher to switch between 12hr/24hr time formats
Added sorting to Activity Tables
Added Version Checking and indicators
Added logging on Tasks + Log Page
Added Recently Added view to Home page
Added background images to item banners
Added Proxy for Device Images in session card
Changed Navbar to be a side bar

Fixes:
Fixed Jellyfin API returning Empty folder as library item
CSS File to add breakpoints to bootstrap-width

Other:
Various CSS changes
Temporarily removed Websockets due to Proxy Errors
Changed Activity View Playback conversion function to more accurately display Playback Duration
Backend changes to sum Playback Durations to show more accurate information in thee collapsed summarized view
2023-05-25 07:21:24 +02:00

142 lines
2.1 KiB
CSS

/*sourced from https://drive.google.com/uc?export=view&id=1yTLwNiCZhIdCWolQldwq4spHQkgZDqkG */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
.w-sm-100 {
width: 100% !important;
}
.w-sm-75 {
width: 75% !important;
}
.w-sm-50 {
width: 50% !important;
}
.w-sm-25 {
width: 25% !important;
}
.h-sm-100 {
height: 100% !important;
}
.h-sm-75 {
height: 75% !important;
}
.h-sm-50 {
height: 50% !important;
}
.h-sm-25 {
height: 25% !important;
}
}
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
.w-md-100 {
width: 100% !important;
}
.w-md-75 {
width: 75% !important;
}
.w-md-50 {
width: 50% !important;
}
.w-md-25 {
width: 25% !important;
}
.h-md-100 {
height: 100% !important;
}
.h-md-75 {
height: 75% !important;
}
.h-md-50 {
height: 50% !important;
}
.h-md-25 {
height: 25% !important;
}
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
.w-lg-100 {
width: 100% !important;
}
.w-lg-75 {
width: 75% !important;
}
.w-lg-50 {
width: 50% !important;
}
.w-lg-25 {
width: 25% !important;
}
.h-lg-100 {
height: 100% !important;
}
.h-lg-75 {
height: 75% !important;
}
.h-lg-50 {
height: 50% !important;
}
.h-lg-25 {
height: 25% !important;
}
}
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
.w-xl-100 {
width: 100% !important;
}
.w-xl-75 {
width: 75% !important;
}
.w-xl-50 {
width: 50% !important;
}
.w-xl-25 {
width: 25% !important;
}
.h-xl-100 {
height: 100% !important;
}
.h-xl-75 {
height: 75% !important;
}
.h-xl-50 {
height: 50% !important;
}
.h-xl-25 {
height: 25% !important;
}
}