Blame view

styles/components/tag.less 1.62 KB
4ec205b6   梁灏   add Tag UI
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
  @tag-prefix-cls: ~"@{css-prefix}tag";
  @tag-close-prefix-cls: ivu-icon-ios-close-empty;
  
  .@{tag-prefix-cls} {
      display: inline-block;
      height: 22px;
      line-height: 22px;
      margin: 2px 4px 2px 0;
      padding: 0 8px;
      border-radius: @btn-border-radius-small;
      border: 1px solid @border-color-split;
      background: @background-color-base;
      font-size: @tag-font-size;
      vertical-align: middle;
      opacity: 1;
      overflow: hidden;
      cursor: pointer;
      //.transition(all @transition-time @ease-in-out);
  
      &:hover {
          opacity: 0.85;
      }
  
      &,
      a,
      a:hover {
          color: @text-color;
      }
  
      &-text {
          a:first-child:last-child {
              display: inline-block;
              margin: 0 -8px;
              padding: 0 8px;
          }
      }
  
      .@{tag-close-prefix-cls} {
          .iconfont-size-under-12px(20px);
          cursor: pointer;
          margin-left: 3px;
          color: #666;
          opacity: 0.66;
          position: relative;
          top: 1px;
          //.transition(all @transition-time @ease-in-out);
  
          &:hover {
              opacity: 1;
          }
      }
  
      &-blue,
      &-green,
      &-yellow,
      &-red {
          border: 0;
          &,
          a,
          a:hover,
          .@{tag-close-prefix-cls},
          .@{tag-close-prefix-cls}:hover {
              color: #fff;
          }
      }
  
      &-blue {
          background: @link-color;
      }
  
      &-green {
          background: @success-color;
      }
  
      &-yellow {
          background: @warning-color;
      }
  
      &-red {
          background: @error-color;
      }
  
      &-close {
          width: 0 !important;
          padding: 0;
          margin: 0;
      }
  }