diff --git a/auditoria.php b/auditoria.php
index f91ac30..aec8de1 100644
--- a/auditoria.php
+++ b/auditoria.php
@@ -262,15 +262,20 @@
:class="{ 'table-warning': registro.reposicion_id }">
{{ registro.registro_fecha_ideal }}
|
- {{ registro.salon }} |
-
- {{ registro.profesor_clave }}
- {{ registro.profesor_nombre }}
-
+ | {{
+ `${registro.salon?.slice(0,15)}${registro.salon?.length > 15 ? '...' : ''}` }} |
+
+
+
+ {{ registro.profesor_clave }}
+ {{ registro.profesor_nombre }}
+
+
+
+
+
|
@@ -315,7 +320,7 @@
Observaciones:
{{`${registro.comentario?.slice(0,25)}
${registro.comentario.length
- > 10 ? '...' : ''}`}}
+ > 25 ? '...' : ''}`}}
@@ -392,6 +397,11 @@
+
+
@@ -431,7 +441,8 @@
{{clase_vista.carrera}}
-
+
{{clase_vista.materia}}
diff --git a/css/auditoria-ux.css b/css/auditoria-ux.css
index a52b6f8..8431448 100644
--- a/css/auditoria-ux.css
+++ b/css/auditoria-ux.css
@@ -38,7 +38,8 @@
fill: #001d68;
}
-.profesor-nombre, .materia_nombre {
+.profesor-nombre,
+.materia_nombre {
font-size: 1.5rem;
font-weight: 900;
font-family: 'La Salle Display Regular';
@@ -81,16 +82,19 @@
background-color: #969696;
}
-.detalle > main {
+.detalle>main {
display: grid;
gap: 2rem;
grid-template-columns: repeat(2, 1fr);
}
/* Media query for mobile devices */
-@media (max-width: 768px) { /* Adjust the max-width as needed for your target screen size */
- .detalle > main {
- grid-template-columns: 1fr; /* Single column */
+@media (max-width: 768px) {
+
+ /* Adjust the max-width as needed for your target screen size */
+ .detalle>main {
+ grid-template-columns: 1fr;
+ /* Single column */
}
}
@@ -111,7 +115,7 @@
padding: 1rem;
}
-.pp-card > div {
+.pp-card>div {
border-start-start-radius: 1rem;
border-start-end-radius: 1rem;
padding-inline: 1.5rem;
@@ -155,12 +159,12 @@
display: flex;
justify-content: center;
flex-direction: column;
-
+
.supervisor_nombre {
font-size: 1.5rem;
font-weight: bolder;
}
-
+
.supervisor_hora {
font-size: 1rem;
color: #3f3f3f;
@@ -173,12 +177,19 @@
grid-template-columns: 1fr 1fr;
}
+.modal-close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin: 2rem;
+}
+
.facultad {
- font-family: 'La Salle Display Heavy';
+ font-family: 'La Salle Display Regular';
font-size: 1.4rem;
color: #969696;
position: absolute;
bottom: 0;
right: 0;
- margin: 1rem;
+ margin: 2rem;
}
\ No newline at end of file