Revisando roles y añadido clase beta al CSS

This commit is contained in:
unknown
2025-04-07 09:55:30 +02:00
parent e5b2bc19d4
commit c450d4f804
18 changed files with 135 additions and 104 deletions

View File

@ -215,7 +215,7 @@ class tarifasClienteView {
popErrorAlert(window.language.ClientePrecios.errors.error_nombre_template, 'error-nombre')
}
else {
new Ajax('/clientes/clienteplantillaprecios/add',
new Ajax('/clienteplantillaprecios/add',
{
'from_client_data': 1,
'cliente_id': this.clienteId,

View File

@ -60,7 +60,7 @@ class PlantillasTarifasClienteList {
// Se borran las lineas asociadas
new Ajax(
"/clientes/clienteplantillaprecios/update/" + dataId,
"/clienteplantillaprecios/update/" + dataId,
{
[this.csrf_token]: this.csrf_hash
},

View File

@ -35,9 +35,11 @@
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
padding-top: 64px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
padding-top: 78px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
z-index: auto;
@ -47,36 +49,39 @@
* Content
******************************************************************************/
.demo-blocks > * {
.demo-blocks>* {
display: block !important;
}
.demo-inline-spacing > * {
.demo-inline-spacing>* {
margin: 1rem 0.375rem 0 0 !important;
}
/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
.demo-vertical-spacing>* {
margin-top: 1rem !important;
margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
.demo-vertical-spacing.demo-only-element> :first-child {
margin-top: 0 !important;
}
.demo-vertical-spacing-lg > * {
.demo-vertical-spacing-lg>* {
margin-top: 1.875rem !important;
margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
.demo-vertical-spacing-lg.demo-only-element> :first-child {
margin-top: 0 !important;
}
.demo-vertical-spacing-xl > * {
.demo-vertical-spacing-xl>* {
margin-top: 5rem !important;
margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
.demo-vertical-spacing-xl.demo-only-element> :first-child {
margin-top: 0 !important;
}
@ -107,9 +112,11 @@
flex-direction: column;
margin-top: 1rem;
}
.layout-demo-placeholder img {
width: 900px;
}
.layout-demo-info {
text-align: center;
margin-top: 1rem;
@ -119,4 +126,8 @@
position: sticky;
top: 90px;
z-index: 1020;
}
.beta {
color: orangered !important;
}