aboutsummaryrefslogtreecommitdiffstats
path: root/its/plugin/projects/issues-project/src/file2.less
blob: f8ddf14e3c1c32ce1b5faed0fd11bff92d3be56c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@import "a.css";
@import "a.css";              /* S1128 | no-duplicate-at-import-rules | Doesn't raise for LESS */

.class1 {
  background-color: #ffw;     /* S4647 | color-no-invalid-hex */
  width: 100pixels;           /* S4653 | unit-no-unknown */
  /* */                       /* S4663 | comment-no-empty */
  content: "first
    second";                  /* S4652 | string-no-newline */
  color: pink;
  color: orange;              /* S4656 | declaration-block-no-duplicate-properties */
  font: 1em/1.3 Times;        /* S4649 | font-family-no-missing-generic-family-keyword */
  font-family: serif, serif;  /* S4648 | font-family-no-duplicate-names */
}

@keyframes important1 {
  from {
    margin-top: 50px;
  }
  to {
    margin-top: 100px !important; /* S4655 | keyframe-declaration-no-important */
  }
}