Browse Source

Rozlišení lokálního/testovacího/produkčního webu v korekturovátku

korekturovatko
Jonas Havelka 2 weeks ago
parent
commit
341ae7ce45
  1. 19
      korektury/static/korektury/opraf.css

19
korektury/static/korektury/opraf.css

@ -140,3 +140,22 @@ form {
margin-top: 3px; 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; } }
/****************************************************************/

Loading…
Cancel
Save