Blame view

node_modules/less/test/css/strings.css 1.08 KB
ce4c83ff   wxy   初始提交
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  #strings {
    background-image: url("http://son-of-a-banana.com");
    quotes: "~" "~";
    content: "#*%:&^,)!.(~*})";
    empty: "";
    brackets: "{" "}";
    escapes: "\"hello\" \\world";
    escapes2: "\"llo";
  }
  #comments {
    content: "/* hello */ // not-so-secret";
  }
  #single-quote {
    quotes: "'" "'";
    content: '""#!&""';
    empty: '';
    semi-colon: ';';
  }
  #escaped {
    filter: DX.Transform.MS.BS.filter(opacity=50);
  }
  #one-line {
    image: url(http://tooks.com);
  }
  #crazy {
    image: url(http://), "}", url("http://}");
  }
  #interpolation {
    url: "http://lesscss.org/dev/image.jpg";
    url2: "http://lesscss.org/image-256.jpg";
    url3: "http://lesscss.org#456";
    url4: "http://lesscss.org/hello";
    url5: "http://lesscss.org/54.4px";
  }
  .mix-mul-class {
    color: blue;
    color: red;
    color: black;
    color: orange;
  }
  .watermark {
    family: Univers, Arial, Verdana, San-Serif;
  }
  #iterated-interpolation .mixin {
    width: 100px;
    weird: 100px;
    width-str: "100px";
    weird-str: "100px";
  }
  #iterated-interpolation .interpolation-mixin {
    width: 100px;
    weird: 100px;
    width-str: "100px";
    weird-str: "100px";
  }