Skip to content

Commit

Permalink
ajuste tooltip / funciona en página usuario_admin_filtro.html req#15881
Browse files Browse the repository at this point in the history
  • Loading branch information
mpayeras committed Oct 9, 2023
1 parent a675fc7 commit 7a4ecfd
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 16 deletions.
7 changes: 6 additions & 1 deletion src/_includes/snt/head-login.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@
<script src="{{ "/node_modules/jquery/dist/jquery.min.js" | prepend: site.baseurl }}"></script>

<script src="{{ "/node_modules/bootstrap/dist/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
<script src='https://www.google.com/recaptcha/api.js'></script>

<script src='https://www.google.com/recaptcha/api.js'></script>





<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
Expand Down
5 changes: 3 additions & 2 deletions src/_sass/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ section {
}

.tooltip-inner {
max-width: 300px;
background-color: $brand-primary;
max-width: 350px;
background-color: $black;
border-radius: 6px;

}


Expand Down
3 changes: 2 additions & 1 deletion src/proyectos/snt/v1/crear_usuario2.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
author: "Subsecretaría de Gobierno Abierto y País Digital"
color: "#0072b8"
---

<!--
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<link rel="stylesheet" href="../css/snt.css">
-->

<section class="box-campania pt-0 pt-sm-2 pb-0">
<div class="container pb-1">
Expand Down
41 changes: 29 additions & 12 deletions src/proyectos/snt/v1/usuarios_admin_filtro.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,32 @@
author: "Subsecretaría de Gobierno Abierto y País Digital"
color: "#0072b8"
---
<!--
<script src="{{ "/node_modules/jquery/dist/jquery.min.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/node_modules/bootstrap/dist/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
<script src='https://www.google.com/recaptcha/api.js'></script>
<!-- prueba uso tooltip -->







<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"></script>

<section class="box-campania">
<div class="container pb-3">
{% include snt/breadcrumbs.html %}

{% include snt/menu-admin.html %}

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"></script>

<section class="box-campania pt-0 pt-sm-2 pb-0">
<div class="container pb-1">
{% include snt/breadcrumbs.html %}
</div>
</section>


<section>
<div class="container">

Expand Down Expand Up @@ -135,8 +149,8 @@ <h2 class="accordion-header mt-0" id="headingTwo">


<table class="table dataTables table-responsive-poncho table-hover" >
<thead class="border-bottom border-3">
<th>CUIL</th>
<thead class="border-bottom border-2 border-0 border-black">
<th>CUIL </th>
<th>Nombre</th>
<th>Organismo</th>
<th>Área</th>
Expand Down Expand Up @@ -198,7 +212,7 @@ <h3 class="modal-title h5"> <i class="fa fa-question-circle me-0 text-info" titl



<button type="button" class="btn btn-md pt-0" data-bs-toggle="tooltip" title="Activo. Último ingreso: 24/6/21 - 11:20"><i class="fa fa-check-circle text-success"></i></button>
<button type="button" class="btn btn-md pt-0" data-toggle="tooltip" title="ACTIVO. Último ingreso: 24/6/21 - 11:20"><i class="fa fa-check-circle text-success"></i></button>


</td>
Expand Down Expand Up @@ -235,7 +249,8 @@ <h3 class="modal-title h5"> <i class="fa fa-question-circle me-0 text-info" titl
<td data-label="Rol">
<p class="badge card text-black badge-rol">Resp. de organismo</p></td>

<td data-label="Estado"><button type="button" data-bs-toggle="tooltip" data-placement="bottom" title="Desactivado. Último ingreso: 02/12/21 - 10:00" class="btn btn-md pt-0">
<td data-label="Estado">
<button type="button" data-toggle="tooltip" data-placement="bottom" title="DESACTIVADO. Último ingreso: 02/12/21 - 10:00" class="btn btn-md pt-0">
<i class="fa fa-close text-danger"></i></button></td>


Expand Down Expand Up @@ -267,7 +282,7 @@ <h3 class="modal-title h5"> <i class="fa fa-question-circle me-0 text-info" titl

<td data-label="Rol">
<p class="badge card text-black badge-rol">Agente</p></td>
<td data-label="Estado"><button type="button" data-bs-toggle="tooltip" data-placement="bottom" title="Pendiente. Sin ingreso registrado." class="btn btn-md pt-0">
<td data-label="Estado"><button type="button" data-toggle="tooltip" data-placement="bottom" title="PENDIENTE. Sin ingreso registrado." class="btn btn-md pt-0">
<i class="fa fa-question-circle me-1 text-warning" title="Pendiente"> </i></button></td>


Expand Down Expand Up @@ -481,14 +496,16 @@ <h3 class="modal-title h5"> <i class="fa fa-question-circle me-0 text-info" titl

</script>


<!--
<script>
// Initialize tooltips
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
})
</script>
</script>-->


<script type="text/javascript"> $(function () { $('[data-toggle="tooltip"]').tooltip() }) </script>

0 comments on commit 7a4ecfd

Please sign in to comment.