Subversion Repositories Integrator Subversion

Rev

Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
179 espaco 1
body {
2
  .ui-chip {
3
    background-color: $chipBg;
4
    color: $chipTextColor;
5
    border-radius: $chipBorderRadius;
6
    padding: 0 nth($inputPadding, 2);
7
 
8
    .ui-chip-text {
9
      line-height: 1.5;
10
      margin-top: nth($inputPadding, 1) / 2;
11
      margin-bottom: nth($inputPadding, 1) / 2;
12
    }
13
 
14
    .ui-chip-icon {
15
      margin-right: $inlineSpacing;
16
    }
17
 
18
    img {
19
      width: 1.5 + nth($inputPadding, 1);
20
      height: 1.5 + nth($inputPadding, 1);
21
      margin-left: -1 * nth($inputPadding, 2);
22
      margin-right: $inlineSpacing;
23
    }
24
 
25
    .ui-chip-remove-icon {
26
      margin-left: $inlineSpacing;
27
      border-radius: $borderRadius;
28
      transition: $transition;
29
 
30
      &:focus {
31
        @include focused();
32
      }
33
    }
34
  }
35
}