From 341ae7ce45380bfba0f559c2869eae4e99998a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=C3=A1=C5=A1=20Havelka?= Date: Thu, 12 Dec 2024 12:51:32 +0100 Subject: [PATCH] =?UTF-8?q?Rozli=C5=A1en=C3=AD=20lok=C3=A1ln=C3=ADho/testo?= =?UTF-8?q?vac=C3=ADho/produk=C4=8Dn=C3=ADho=20webu=20v=20korekturov=C3=A1?= =?UTF-8?q?tku?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- korektury/static/korektury/opraf.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/korektury/static/korektury/opraf.css b/korektury/static/korektury/opraf.css index 2be943fe..77b62d52 100644 --- a/korektury/static/korektury/opraf.css +++ b/korektury/static/korektury/opraf.css @@ -140,3 +140,22 @@ form { margin-top: 3px; } +/**** ROZLIŠENÍ MEZI LOKÁLNÍM, TESTOVACÍM A PRODUKČNÍM WEBEM ****/ +body.localweb, body.testweb, body.suprodweb { + &:before, &:after { + content: ""; + position: fixed; + width: 20px; + height: 100%; + top: 0; + z-index: -1000; + } + + &:before { left: 0; } + &:after { right: 0; } +} + +body.localweb { &:before, &:after { background: greenyellow; } } +body.testweb { &:before, &:after { background: darkorange; } } +body.suprodweb { &:before, &:after { background: red; } } +/****************************************************************/