Changeset acaecfe in sicp for templates


Ignore:
Timestamp:
Jun 2, 2015, 12:47:06 PM (9 years ago)
Author:
Ing. Roldan D. Vargas G <rvargas@…>
Branches:
master
Children:
baeac71
Parents:
f2802a4
Message:

eliminación de estilos los cuales se transfieren a la hoja de estilos de la aplicación

File:
1 edited

Legend:

Unmodified
Added
Removed
  • templates/base_head.html

    rbebce15 racaecfe  
    99        <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/css/bootstrap.min.css' %}" media="all">
    1010    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/select2-3.5.2/select2.css' %}" media="all">
     11    {# <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/media/css/jquery.dataTables.css' %}"> #}
     12    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/extensions/TableTools/css/dataTables.tableTools.css' %}">
     13    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/media/css/dataTables.bootstrap.css' %}">
    1114        <link rel="stylesheet" type="text/css" href="{% static 'css/styles.css' %}" media="all">
    12         <script type="text/javascript" src="{% static 'js/jquery.min.js' %}"></script>
    13         <script type="text/javascript" src="{% static 'bootstrap-3.3.4/js/bootstrap.min.js' %}"></script>
    14     <script type="text/javascript" src="{% static 'bootstrap-3.3.4/plugins/select2-3.5.2/select2.min.js' %}"></script>
    15     <script type="text/javascript" src="{% static 'bootstrap-3.3.4/plugins/bootbox/bootbox.min.js' %}"></script>
    16         <script type="text/javascript" src="{% static 'js/funciones.js' %}"></script>
    1715    <script type="text/javascript">
    18         $(document).ready(function() {
    19             $('[data-toggle="tooltip"]').tooltip();
    20         });
     16        /**
     17         * @brief Sección de variables comúnes
     18         *
     19         * @author Ing. Roldan Vargas (rvargas at cenditel.gob.ve)
     20         * @copyright GNU/GPLv2
     21         * @date 02-06-2015
     22         */
     23        var LABEL_ALL = "{% trans 'Todas' %}";
     24        var LABEL_RECORDS = "{% trans 'Registros por página' %}";
     25        var LABEL_FILTER = "{% trans 'Filtro' %}";
     26        var LABEL_INFO = "{% trans 'Registros del _START_ al _END_ de un total: _TOTAL_' %}";
     27        var LABEL_FIRST = "{% trans 'Primero' %}";
     28        var LABEL_LAST = "{% trans 'Último' %}";
     29        var LABEL_PREVIOUS = "{% trans 'Anterior' %}";
     30        var LABEL_NEXT = "{% trans 'Siguiente' %}";
     31        var LABEL_EMPTY = "{% trans 'No hay registros disponibles' %}";
     32        var DATA_LENGTH_MENU = [[10, 25, 50, 100, -1], [10, 25, 50, 100, LABEL_ALL]];
     33        var DEFAULT_ROWS_PER_PAGE = "{% trans 'Registros' %}";
     34        var LABEL_INFORMATION = "{% trans 'Información' %}";
     35        var BASE_URL = "{{ request.META.HTTP_HOST }}";
    2136    </script>
    22         <style type="text/css">
    23         .bg_sections { background-color: #990000; color: #FFFFFF; }
    24         .bg_sections >  a { color: #FFFFFF; }
    25         body { padding-top: 50px; }
    26         /*.modal-header, .modal-footer { background-color: #a00000; color: #FFFFFF; }
    27         .modal-body { z-index: 1; }*/
    28         /*.modal-body:before {
    29             content: ' ';
    30             display: block;
    31             position: absolute;
    32             left: 0;
    33             top: 0;
    34             width: 90%;
    35             height: 98%;
    36             z-index: 0;
    37             opacity: 0.1;
    38             background-image: url({% static 'images/mpv.png' %});
    39             background-repeat: no-repeat;
    40             background-position: 50% 0;
    41             -ms-background-size: contain;
    42             -o-background-size: contain;
    43             -moz-background-size: contain;
    44             -webkit-background-size: contain;
    45             background-size: contain;
    46         }*/
    47         </style>
    4837</head>
Note: See TracChangeset for help on using the changeset viewer.