Commit 7f3260da1b96e91534925b3229b6f17e6c2f37e5

Authored by Felipe Henrique de Almeida Bormann
1 parent 22b71966

modifying to add 1.2.1 version guidelines

core/static/css/base/material_guideline.css 0 → 100644
... ... @@ -0,0 +1,32 @@
  1 +/*This .css file follows material design guidelines to implement it colors */
  2 +/*Buttons Guideline*/
  3 +.confirm-button{
  4 + background-color: #66BB6A !important;
  5 + color: #FFFFFF !important;
  6 +}
  7 +
  8 +
  9 +.cancel-button{
  10 + background-color: #FAFAFA;
  11 + color: #009988;
  12 +}
  13 +
  14 +.info-card{
  15 + background-color: #26A69A;
  16 +}
  17 +
  18 +/*BREADCRUMBS*/
  19 +
  20 +.last-item{
  21 + color: #BDBDBD;
  22 +}
  23 +
  24 +/* Side Menu */
  25 +
  26 +.side-menu-item{
  27 + color: #26A69A;
  28 +}
  29 +
  30 +.side-menu-item:hover{
  31 + color: #00695C;
  32 +}
0 33 \ No newline at end of file
... ...
core/templates/base.html
... ... @@ -28,6 +28,8 @@
28 28 <link rel="stylesheet" type="text/css" href="{% static 'css/vendor/bootstrap-datepicker.standalone.css' %}">
29 29 <link rel="stylesheet" type="text/css" href="{% static 'css/vendor/alertifyjs/alertify.min.css' %}">
30 30 <link rel="stylesheet" type="text/css" href="{% static 'css/vendor/alertifyjs/themes/bootstrap.css' %}">
  31 + <link rel="stylesheet" type="text/css" href="{% static 'css/base/material_guideline.css' %}">
  32 +
31 33 <script type="text/javascript" src="{% static 'bootstrap-3.3.7/js/bootstrap.js' %}"></script>
32 34 <script type="text/javascript" src="{% static 'js/vendor/bootstrap-acessibility.min.js' %}"></script>
33 35 <script type="text/javascript" src="{% static 'material/js/material.min.js' %}"></script>
... ...