Agrega librerias y temas gráficos de forma local, no cdn,
directorio local lib
Formulario de registro:
- select se hacen con select2, falta validarlos
- validación de nombre, apellido y mail ya funcionando con
jquery-validate
- arregla temas gráficos y de presentación
FALTA:
- validar los select
- validar los radiobutton
- TODA LA PUTA LOGICA DE BACK-END DE NUEVO!!!
25 lines
485 B
Plaintext
25 lines
485 B
Plaintext
// Pagination
|
|
|
|
.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
|
|
> li {
|
|
> a,
|
|
> span {
|
|
padding: @padding-vertical @padding-horizontal;
|
|
font-size: @font-size;
|
|
line-height: @line-height;
|
|
}
|
|
&:first-child {
|
|
> a,
|
|
> span {
|
|
.border-left-radius(@border-radius);
|
|
}
|
|
}
|
|
&:last-child {
|
|
> a,
|
|
> span {
|
|
.border-right-radius(@border-radius);
|
|
}
|
|
}
|
|
}
|
|
}
|