From 83ae835bed3d08866791b2463174073d0769992b Mon Sep 17 00:00:00 2001 From: calzoneman Date: Wed, 13 Aug 2014 14:01:21 -0500 Subject: [PATCH] Allow modals to be wider on large screens --- www/css/cytube.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/www/css/cytube.css b/www/css/cytube.css index 048bef51..9e16964a 100644 --- a/www/css/cytube.css +++ b/www/css/cytube.css @@ -574,3 +574,15 @@ body.chatOnly .pm-panel, body.chatOnly .pm-panel-placeholder { #chanjs-allow-prompt-buttons button:first-child { margin-right: 5px; } + +@media screen and (min-width: 768px) { + .modal { + padding: 30px; + } + + .modal-dialog { + min-width: 600px!important; + max-width: 1200px!important; + width: auto!important; + } +}