Browse Source

Put bootstrap.css at the top to fix precedence issues.

pull/241/head
Pēteris Caune 6 years ago
parent
commit
cdd8e57239
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
2 changed files with 4 additions and 3 deletions
  1. +2
    -2
      static/css/base.css
  2. +2
    -1
      templates/base.html

+ 2
- 2
static/css/base.css View File

@ -5,7 +5,7 @@ html {
body {
/* Margin bottom by footer height */
margin-bottom: 140px !important;
margin-bottom: 140px;
}
.footer {
@ -136,4 +136,4 @@ pre {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}

+ 2
- 1
templates/base.html View File

@ -16,13 +16,14 @@
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/apple-touch-180.png' %}">
{% compress css %}
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/add_project_modal.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/add_pushover.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/add_webhook.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/base.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/billing.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/bootstrap-select.min.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/channel_checks.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/channels.css' %}" type="text/css">
<link rel="stylesheet" href="{% static 'css/checkbox.css' %}" type="text/css">


Loading…
Cancel
Save