File: 15_no_query_fallback.css

package info (click to toggle)
compass-breakpoint-plugin 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 648 kB
  • sloc: javascript: 27; makefile: 2; sh: 1
file content (26 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * IE no-query fallbacks.
 */
/*
 * Legacy syntax
 */
.no-mq .legacy {
  content: "$legacy";
  content: "@media not screen and (min-width: 500px)";
}
.no-mq .legacy {
  content: "$legacy";
  content: "@media not screen and (min-width: 500px)";
}

/*
 * No Query
 */
.no-mq .no-query {
  _query: "700px, no-query .no-mq";
  _expected: "@media (min-width: 700px)";
}
.no-mq .no-query {
  _query: "700px, no-query .no-mq";
  _expected: "@media (min-width: 700px)";
}