From 452f0747c88f3d4e0a5c7944ffc9e9d0031af964 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Mon, 25 Dec 2017 09:02:33 -0800 Subject: [PATCH] Add missing stream info modal css --- data/interfaces/default/css/plexpy.css | 73 +++++++++++++++++++++++++- 1 file changed, 72 insertions(+), 1 deletion(-) diff --git a/data/interfaces/default/css/plexpy.css b/data/interfaces/default/css/plexpy.css index baacabe8..86f88044 100644 --- a/data/interfaces/default/css/plexpy.css +++ b/data/interfaces/default/css/plexpy.css @@ -3698,4 +3698,75 @@ a:hover .overlay-refresh-image:hover { } .no-image { background-image: none !important; -} \ No newline at end of file +} + +#info-modal .stream-info-item { + display: flex; + flex-direction: row; + flex-wrap: nowrap; + align-items: baseline; + width: 100%; + margin-bottom: 5px; +} +#info-modal .stream-info-item .sub-heading { + height: 100%; + width: 75px; + color: #aaa; + font-size: 10px; + text-align: right; + text-transform: uppercase; + line-height: 14px; + -webkit-flex-shrink: 0; + flex-shrink: 0; +} +#info-modal .stream-info-item .sub-value { + color: #fff; + font-weight: bold; + margin-left: 10px; + text-align: left; + line-height: 14px; + -webkit-flex-grow: 1; + flex-grow: 1; +} +.stream-info { + width: 100%; + margin-top: 10px; + background-color: #282828; + table-layout: fixed; +} +.stream-info .heading { + color: #F9AA03; + text-transform: uppercase; + font-size: 15px; + font-weight: bold !important; +} +.stream-info th:first-child { + width: 125px; + height: 30px; + color: #fff; + font-size: 12px; + text-align: right; + text-transform: uppercase; +} +.stream-info th:not(:first-child) { + text-align: center; + font-weight: normal; +} +.stream-info td { + height: 25px; +} +.stream-info td:first-child { + color: #aaa; + font-size: 10px; + text-align: right; + text-transform: uppercase; +} +.stream-info td:not(:first-child) { + text-align: center; +} +.stream-info tr:nth-child(odd) td { + background-color: rgba(255,255,255,0.035); +} +.stream-info tr:nth-child(even) td { + background-color: rgba(255,255,255,0.010); +}