Enabled/Disabled

The :enabled and :disabled pseudo-classes are applied to controls when the instance data they are bound to becomes relevant or not.

The CSS rules to use for these pseudo-classes are:

.pc-enabled {
    display    :   block;
    background-color   :   gray;
}

and

.pc-disabled {
    display    :   none;
}