ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/website/www.git/commit/?id=f915039719c8c5454e8eba7189ea293b961c28bf
commit f915039719c8c5454e8eba7189ea293b961c28bf Author: Andy Williams <[email protected]> Date: Sat Jul 15 11:04:27 2017 +0100 If we launch kiwiirc on a small device then fill the screen --- public_html/lib/tpl/e/css/modifications.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/public_html/lib/tpl/e/css/modifications.css b/public_html/lib/tpl/e/css/modifications.css index 9cc7377..2a300de 100644 --- a/public_html/lib/tpl/e/css/modifications.css +++ b/public_html/lib/tpl/e/css/modifications.css @@ -706,3 +706,22 @@ table { width: 60px; height: 60px; } + +@media screen and (max-width: 768px) { + /* If we are trying to launch kiwi-irc on mobile use the whole window... */ + #ircbubble { + top: 0; + left: 0; + bottom: 0; + right: 0; + width: 100%; + height: 100%; + z-index: 100; + } + + #ircbubble iframe { + width: 100% !important; + height: 100% !important; + } +} + --
