Changeset 2d291e9 in sicp for templates


Ignore:
Timestamp:
Jul 30, 2015, 11:45:09 AM (9 years ago)
Author:
Ing. Roldan D. Vargas G <rvargas@…>
Branches:
master
Children:
4037571
Parents:
7bfe9cf
Message:

agregado media query para ocultar información sobre la paginación en smartphones o pantallas muy pequeñas

File:
1 edited

Legend:

Unmodified
Added
Removed
  • templates/base_head.html

    r0c6d4ae r2d291e9  
    1212    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/extensions/TableTools/css/dataTables.tableTools.css' %}">
    1313    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/media/css/dataTables.bootstrap.css' %}">
     14    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/DataTables-1.10.6/extensions/Responsive/css/dataTables.responsive.css' %}">
    1415    <link rel="stylesheet" type="text/css" href="{% static 'bootstrap-3.3.4/plugins/bootstrap-treeview/css/bootstrap-treeview.css' %}">
    1516    {# Extra glyicons #}
     
    1920    {# Inclusión de variables de uso global a implementar en erchivos javascript #}
    2021    {% include 'variables_javascript.html' %}
     22    <style type="text/css">
     23        /* Media Query para ocultar el texto de la paginación en SmartPhones */
     24        @media (max-width: 440px) {
     25            div.dataTables_info { display: none; }
     26        }
     27    </style>
    2128</head>
Note: See TracChangeset for help on using the changeset viewer.