diff --git a/data/interfaces/default/css/plexpy.css b/data/interfaces/default/css/plexpy.css index ebbc48b9..bc28b946 100644 --- a/data/interfaces/default/css/plexpy.css +++ b/data/interfaces/default/css/plexpy.css @@ -899,15 +899,15 @@ a .users-poster-face:hover { height: 249px; } .dashboard-activity-container:hover .dashboard-activity-progress { - height: 14px; + height: 14px; } -.dashboard-activity-container:hover .progress-bar { +.dashboard-activity-container:hover .progress-bar { color: rgba(255, 255, 255, 1); background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.25),0%,rgba(0,0,0,0),50px); background-image: -moz-linear-gradient(left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px); background-image: linear-gradient(to left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px); } -.dashboard-activity-container:hover .buffer-bar { +.dashboard-activity-container:hover .buffer-bar { color: rgba(255, 255, 255, 1); background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.25),0%,rgba(0,0,0,0),50px); background-image: -moz-linear-gradient(left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px); @@ -3155,8 +3155,8 @@ pre::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,.15); } -@media only screen - and (min-device-width: 300px) +@media only screen + and (min-device-width: 300px) and (max-device-width: 450px) { .home-platforms-instance { width: calc(100% - 20px); @@ -3578,6 +3578,10 @@ a:hover .overlay-refresh-image:hover { background-color: #10a4e8; background-image: url(../images/platforms/chromecast.svg); } +.platform-default { + background-color: #e5a00d; + background-image: url(../images/platforms/default.svg); +} .platform-dlna { background-color: #0cb14b; background-image: url(../images/platforms/dlna.svg); @@ -3586,6 +3590,10 @@ a:hover .overlay-refresh-image:hover { background-color: #e67817; background-image: url(../images/platforms/firefox.svg); } +.platform-gtv { + background-color: #008bcf; + background-image: url(../images/platforms/gtv.svg); +} .platform-ie { background-color: #00599e; background-image: url(../images/platforms/ie.svg); @@ -3602,6 +3610,10 @@ a:hover .overlay-refresh-image:hover { background-color: #1793d0; background-image: url(../images/platforms/linux.svg); } +.platform-macos { + background-color: #858487; + background-image: url(../images/platforms/macos.svg); +} .platform-msedge { background-color: #0078d7; background-image: url(../images/platforms/msedge.svg); @@ -3622,10 +3634,6 @@ a:hover .overlay-refresh-image:hover { background-color: #e5a00d; background-image: url(../images/platforms/plexamp.svg); } -.platform-plextogether { - background-color: #151924; - background-image: url(../images/platforms/plextogether.svg); -} .platform-roku { background-color: #6d3c97; background-image: url(../images/platforms/roku.svg); @@ -3638,6 +3646,18 @@ a:hover .overlay-refresh-image:hover { background-color: #034ea2; background-image: url(../images/platforms/samsung.svg); } +.platform-synclounge { + background-color: #151924; + background-image: url(../images/platforms/synclounge.svg); +} +.platform-tivo { + background-color: #00a7e1; + background-image: url(../images/platforms/tivo.svg); +} +.platform-wiiu { + background-color: #03a9f4; + background-image: url(../images/platforms/wiiu.svg); +} .platform-windows { background-color: #2fc0f5; background-image: url(../images/platforms/windows.svg); @@ -3646,10 +3666,6 @@ a:hover .overlay-refresh-image:hover { background-color: #68217a; background-image: url(../images/platforms/windows.svg); } -.platform-wiiu { - background-color: #03a9f4; - background-image: url(../images/platforms/wiiu.svg); -} .platform-xbmc { background-color: #3b4872; background-image: url(../images/platforms/xbmc.svg); @@ -3658,10 +3674,6 @@ a:hover .overlay-refresh-image:hover { background-color: #107c10; background-image: url(../images/platforms/xbox.svg); } -.platform-default { - background-color: #e5a00d; - background-image: url(../images/platforms/default.svg); -} .library-movie { background-image: url(../images/libraries/movie.svg); } diff --git a/data/interfaces/default/images/platforms/macOS.svg b/data/interfaces/default/images/platforms/macos.svg similarity index 100% rename from data/interfaces/default/images/platforms/macOS.svg rename to data/interfaces/default/images/platforms/macos.svg diff --git a/plexpy/common.py b/plexpy/common.py index 96c1126c..f88c217d 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -68,11 +68,12 @@ PLATFORM_NAMES = {'android': 'android', 'safari': 'safari', 'samsung': 'samsung', 'synclounge': 'synclounge', + 'tivo': 'tivo', 'tvos': 'atv', 'vizio': 'opera', + 'wiiu': 'wiiu', 'windows': 'windows', 'windows phone': 'wp', - 'wiiu': 'wiiu', 'xbmc': 'xbmc', 'xbox': 'xbox' }