|
|
@@ -12,10 +12,15 @@ $ck-focus-outer-shadow: 0 0 3px 2px lighten( ck-color( 'focus' ), 10% );
|
|
|
$ck-focus-ring: 1px solid ck-color( 'focus' );
|
|
|
|
|
|
/**
|
|
|
+ * An opacity value of disabled UI item
|
|
|
+ */
|
|
|
+$ck-disabled-opacity: .5;
|
|
|
+
|
|
|
+/**
|
|
|
* A class which indicates that an element holding it is disabled.
|
|
|
*/
|
|
|
-.ck-disabled {
|
|
|
- opacity: .5;
|
|
|
+@mixin ck-disabled {
|
|
|
+ opacity: $ck-disabled-opacity;
|
|
|
}
|
|
|
|
|
|
/**
|