compass-inuit 4.3.4.1 → 4.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/stylesheets/partials/generic/_helper.scss +10 -1
- metadata +1 -1
@@ -39,6 +39,15 @@
|
|
39
39
|
}
|
40
40
|
|
41
41
|
|
42
|
+
/**
|
43
|
+
* Mute an object by reducing its opacity.
|
44
|
+
*/
|
45
|
+
.muted{
|
46
|
+
opacity:0.5;
|
47
|
+
filter:alpha(opacity = 50);
|
48
|
+
}
|
49
|
+
|
50
|
+
|
42
51
|
/**
|
43
52
|
* Align items to the right where they imply progression/movement forward, e.g.:
|
44
53
|
*
|
@@ -73,4 +82,4 @@
|
|
73
82
|
* Hide content off-screen without resorting to `display:none;`
|
74
83
|
*/
|
75
84
|
.accessibility { position:absolute; left:-99999px; }
|
76
|
-
[dir=rtl] .accessibility { left:auto; right:-99999px; }
|
85
|
+
[dir=rtl] .accessibility { left:auto; right:-99999px; }
|