We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 323e7eb + 1a16239 commit 0c78f30Copy full SHA for 0c78f30
app/assets/stylesheets/active_admin/_base.css.scss
@@ -329,7 +329,7 @@ table.dashboard {
329
}
330
th {
331
@include no-shadow;
332
- background: none;
+ @include no-gradient;
333
width: 150px;
334
font-size: 0.9em;
335
padding-left: 0;
app/assets/stylesheets/active_admin/mixins/_gradients.css.scss
@@ -19,3 +19,11 @@ $secondary-gradient-stop: #dfe1e2;
19
@mixin secondary-gradient {
20
@include gradient($secondary-gradient-start, $secondary-gradient-stop);
21
22
+
23
+@mixin no-gradient {
24
+ background: none;
25
+ // IE 6 & 7
26
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
27
+ // IE 8
28
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
29
+}
0 commit comments