mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-03 11:29:24 +01:00
Miglioramento CSS
Aggiunto limite massimo di larghezza per le colonne Datatables (500px).
This commit is contained in:
parent
b11f641f24
commit
4d8a35d5da
@ -199,9 +199,7 @@ a.disabled {
|
|||||||
background: transparent url(../img/ajax-loader.gif) top left no-repeat;
|
background: transparent url(../img/ajax-loader.gif) top left no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#tiny-loader {
|
#tiny-loader {
|
||||||
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 9000;
|
z-index: 9000;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -209,7 +207,6 @@ a.disabled {
|
|||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
background: transparent url(../img/ajax-loader.gif) top left no-repeat;
|
background: transparent url(../img/ajax-loader.gif) top left no-repeat;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body .header .logo {
|
body .header .logo {
|
||||||
@ -541,9 +538,17 @@ span.form-control {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Interventi da pianificare in Dashboard */
|
/* Interventi da pianificare in Dashboard */
|
||||||
|
|
||||||
#external-events .fc-event {
|
#external-events .fc-event {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.DTS tbody td,
|
||||||
|
div.DTS tbody th {
|
||||||
|
word-wrap: break-word;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
@ -560,9 +560,6 @@ if (get_var('Utilizzare i tooltip sul calendario') == '1') {
|
|||||||
events: {
|
events: {
|
||||||
url: globals.rootdir + "/modules/dashboard/ajaxreq.php?op=get_current_month",
|
url: globals.rootdir + "/modules/dashboard/ajaxreq.php?op=get_current_month",
|
||||||
type: 'GET',
|
type: 'GET',
|
||||||
success: function(data) {
|
|
||||||
console.log(data);
|
|
||||||
},
|
|
||||||
error: function() {
|
error: function() {
|
||||||
alert('<?php echo _('Errore durante la creazione degli eventi'); ?>');
|
alert('<?php echo _('Errore durante la creazione degli eventi'); ?>');
|
||||||
}
|
}
|
||||||
|
@ -304,7 +304,7 @@ if (empty($new_codice)) {
|
|||||||
$('#add-form').find('[type=submit]').prop("disabled", true).addClass("disabled");
|
$('#add-form').find('[type=submit]').prop("disabled", true).addClass("disabled");
|
||||||
$('#add-form').find('input:disabled, select:disabled, textarea:disabled').removeAttr('disabled');
|
$('#add-form').find('input:disabled, select:disabled, textarea:disabled').removeAttr('disabled');
|
||||||
|
|
||||||
$.post(globals.rootdir + '/actions.php', $('#add-form').serialize(), function(data,response){
|
$.post(globals.rootdir + '/actions.php?id_module=<?php echo Modules::getModule('Interventi')['id'] ?>', $('#add-form').serialize(), function(data,response){
|
||||||
if(response=="success"){
|
if(response=="success"){
|
||||||
// Se l'aggiunta intervento proviene dalla scheda di pianificazione ordini di servizio della dashboard, la ricarico
|
// Se l'aggiunta intervento proviene dalla scheda di pianificazione ordini di servizio della dashboard, la ricarico
|
||||||
if(ref == "dashboard"){
|
if(ref == "dashboard"){
|
||||||
|
Loading…
Reference in New Issue
Block a user