Skip to content
Snippets Groups Projects
Commit 8425e318 authored by Nils Steinger's avatar Nils Steinger
Browse files

Add background color in dev environment

parent 392227c4
No related branches found
No related tags found
No related merge requests found
Pipeline #9037 passed
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
<link rel="icon" type="image/svg+xml" href="{% if debug %}{% static 'common/images/logo-dev.svg' %}{% else %}{% static 'common/images/logo.svg' %}{% endif %}"> <link rel="icon" type="image/svg+xml" href="{% if debug %}{% static 'common/images/logo-dev.svg' %}{% else %}{% static 'common/images/logo.svg' %}{% endif %}">
<link rel="stylesheet" href="{% static 'common/css/custom.css' %}"> <link rel="stylesheet" href="{% static 'common/css/custom.css' %}">
{% if debug %}
<link rel="stylesheet" href="{% static 'common/css/dev.css' %}">
{% endif %}
{% get_current_language as LANGUAGE_CODE %} {% get_current_language as LANGUAGE_CODE %}
......
body {
background: repeating-linear-gradient(-45deg, #0000 0, #0000 20px, #ee02 20px, #ee02 40px);
}
\ No newline at end of file
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
<link rel="icon" type="image/svg+xml" href="{% if debug %}{% static 'common/images/logo-dev.svg' %}{% else %}{% static 'common/images/logo.svg' %}{% endif %}"> <link rel="icon" type="image/svg+xml" href="{% if debug %}{% static 'common/images/logo-dev.svg' %}{% else %}{% static 'common/images/logo.svg' %}{% endif %}">
<link rel="stylesheet" href="{% static 'common/css/custom.css' %}"> <link rel="stylesheet" href="{% static 'common/css/custom.css' %}">
{% if debug %}
<link rel="stylesheet" href="{% static 'common/css/dev.css' %}">
{% endif %}
<script type='text/javascript'> <script type='text/javascript'>
var changed_form = false; var changed_form = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment