Browse Source

Adiciona arquivo css separado para atendimento

pull/6/head
Eduardo Edson Batista Cordeiro Alves 9 years ago
committed by Luciano Almeida
parent
commit
17d5ae8d5f
  1. 4
      sigi/settings/base.py
  2. 3
      sigiStatic/css/atendimento.css
  3. 3
      templates/base.html

4
sigi/settings/base.py

@ -194,10 +194,6 @@ LOGGING = {
},
}
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "collected_static")
STATICFILES_DIRS = (os.path.join(BASE_DIR, ("static")),)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',

3
sigiStatic/css/atendimento.css

@ -0,0 +1,3 @@
input {
height: 30px !important;
}

3
templates/base.html

@ -7,6 +7,8 @@
<title>Sistema de Atendimento</title>
{% block head_content %}
<link rel="icon" href="{% static 'img/img_atendimento/favicon.ico' %}" type="image/png" >
<link rel="stylesheet" type="text/css" href="{% static 'css/atendimento.css' %}">
<!-- Bootstrap -->
<link href="{% static 'css/bootstrap-fluid-adj.css' %}" rel="stylesheet">
<link href="{% static 'bootstrap/css/bootstrap.min.css' %}" rel="stylesheet" media="screen">
@ -14,7 +16,6 @@
<link href="{% static 'bootstrap-sass/assets/stylesheets/_bootstrap.css' %}" rel="stylesheet">
{% endblock head_content %}
</head>
{% block navigation %}
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">

Loading…
Cancel
Save