/* TABLE SETTINGS (INAXHMI -> /plcviewer -> table) */

.plc-input-table > .plc-checkbox {
    display: inline-block
}

.plc-input-table > .plc-checkbox-label {
    width: 230;
    min-height: 26px;
    text-align: center;
    vertical-align: middle;
    background-color: #ddd;
    border-radius: 4px;
    font-weight: normal;
    display: inline-block;
}

.plc-input-table > .plc-checkbox:checked ~ .plc-checkbox-label {
    background-color: #5cb85c;
}

/* add new style settings here */

/* Syntax:

.my-class {
    div containing all elements
}

.my-class > .plc-checkbox {
    applies to checkbox 
}

.my-class > .plc-checkbox-label {
    applies to label after checkbox 
}

.my-class > .plc-checkbox:checked {
    applies to checkbox only when checked 
}

.my-class > .plc-checkbox:checked ~ .plc-checkbox-label {
    applies to label only when checkbox is checked 
}
*/
