- fixed some minor bugs in signature table module

This commit is contained in:
Exodus4D
2016-07-14 21:39:01 +02:00
parent cdd1846431
commit fed3fd9d96
6 changed files with 15 additions and 15 deletions

View File

@@ -1669,9 +1669,9 @@ define([
// submit all fields within a table row
var formFields = rowElement.find('.editable');
// the "toggle" makes sure to take care about open editable fields (e.g. description)
// the "hide" makes sure to take care about open editable fields (e.g. description)
// otherwise, changes would not be submitted in this field (not necessary)
formFields.editable('toggle');
formFields.editable('hide');
// submit all xEditable fields
formFields.editable('submit', {

File diff suppressed because one or more lines are too long

View File

@@ -1669,9 +1669,9 @@ define([
// submit all fields within a table row
var formFields = rowElement.find('.editable');
// the "toggle" makes sure to take care about open editable fields (e.g. description)
// the "hide" makes sure to take care about open editable fields (e.g. description)
// otherwise, changes would not be submitted in this field (not necessary)
formFields.editable('toggle');
formFields.editable('hide');
// submit all xEditable fields
formFields.editable('submit', {

View File

@@ -932,7 +932,7 @@ $onOffSwitchBG: $blueStandard;
//##
$progressbar-radius: 0px;
$progressbar-micro: 3px;
$progressbar-micro: 2px;
$progressbar-xs: 7px;
$progressbar-sm: 14px;
$progressbar-lg: 30px;

View File

@@ -1,16 +1,16 @@
table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
background-color: #B0BED9;
background-color: $teal-darkest;
}
table.dataTable.stripe tbody > tr.odd.selected,
table.dataTable.stripe tbody > tr.odd > .selected, table.dataTable.display tbody > tr.odd.selected,
table.dataTable.display tbody > tr.odd > .selected {
background-color: #acbad4;
background-color: $teal-darkest;
}
table.dataTable.hover tbody > tr.selected:hover,
table.dataTable.hover tbody > tr > .selected:hover, table.dataTable.display tbody > tr.selected:hover,
table.dataTable.display tbody > tr > .selected:hover {
background-color: #aab7d1;
background-color: darken($orange-dark, 10%);
}
table.dataTable.order-column tbody > tr.selected > .sorting_1,
table.dataTable.order-column tbody > tr.selected > .sorting_2,
@@ -22,7 +22,7 @@ table.dataTable.display tbody > tr > .selected {
background-color: #acbad5;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
background-color: #a6b4cd;
background-color: darken($teal-darkest, 2%);
}
table.dataTable.display tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_2 {
background-color: #a8b5cf;
@@ -31,7 +31,7 @@ table.dataTable.display tbody > tr.odd.selected > .sorting_3, table.dataTable.or
background-color: #a9b7d1;
}
table.dataTable.display tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
background-color: #acbad5;
background-color: darken($teal-darkest, 2%);
}
table.dataTable.display tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_2 {
background-color: #aebcd6;
@@ -40,13 +40,13 @@ table.dataTable.display tbody > tr.even.selected > .sorting_3, table.dataTable.o
background-color: #afbdd8;
}
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
background-color: #a6b4cd;
background-color: darken($teal-darkest, 2%);
}
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
background-color: #acbad5;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
background-color: #a2aec7;
background-color: darken($orange-dark, 10%);
}
table.dataTable.display tbody > tr.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_2 {
background-color: #a3b0c9;

View File

@@ -65,7 +65,7 @@ table.dataTable tbody tr {
background-color: darken($gray-darker, 4%);;
}
table.dataTable tbody tr.selected {
background-color: $teal-darkest;;
background-color: $teal-darkest;
}
table.dataTable tbody th,
table.dataTable tbody td {