Taller Plex metadata modal

Makes the Plex metadata modal taller so it doesn't cut off the collections dropdown

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Taller Plex metadata modal
// @version      0.1
// @description  Makes the Plex metadata modal taller so it doesn't cut off the collections dropdown
// @author       Jim Leirvik <jim@jimleirvik.no>
// @match        https://app.plex.tv/*
// @grant        GM_addStyle
// @namespace https://greasyfork.org/users/570718
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle('.edit-metadata-modal .modal-body { max-height: 730px; }');
    GM_addStyle('.edit-metadata-modal .modal-body-pane { height: 730px; }');
    GM_addStyle('.edit-metadata-modal .selectize-dropdown-content { max-height: 338px; }');
})();