Blame view

styles/components/button.less 1.56 KB
7fa943eb   梁灏   init
1
2
3
  @btn-prefix-cls: ~"@{css-prefix}btn";
  
  .@{btn-prefix-cls} {
e1596b7e   梁灏   add Button UI
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
      .btn;
      .btn-default;
  
      &-primary {
          .btn-primary;
  
          .@{btn-prefix-cls}-group &:not(:first-child):not(:last-child) {
              border-right-color: @btn-group-border;
              border-left-color: @btn-group-border;
          }
  
          .@{btn-prefix-cls}-group &:first-child {
              &:not(:last-child) {
                  border-right-color: @btn-group-border;
                  &[disabled] {
                      border-right-color: @btn-default-border;
                  }
              }
          }
  
          .@{btn-prefix-cls}-group &:last-child:not(:first-child),
          .@{btn-prefix-cls}-group & + .@{btn-prefix-cls} {
              border-left-color: @btn-group-border;
              &[disabled] {
                  border-left-color: @btn-default-border;
              }
          }
      }
  
      &-ghost {
          .btn-ghost;
      }
  
      //&-dashed {
      //    .btn-dashed;
      //}
  
      &-circle,
      &-circle-outline {
          .btn-circle(@btn-prefix-cls);
      }
  
      &:before {
          position: absolute;
          top: -1px;
          left: -1px;
          bottom: -1px;
          right: -1px;
          background: #fff;
          opacity: 0.35;
          content: '';
          border-radius: inherit;
          z-index: 1;
6c5fbd8b   梁灏   add Checkbox UI
57
          .transition(opacity @transition-time);
e1596b7e   梁灏   add Button UI
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
          pointer-events: none;
          display: none;
      }
  
      &&-loading {
          pointer-events: none;
          position: relative;
  
          &:before {
              display: block;
          }
      }
  
      &-group {
          .btn-group(@btn-prefix-cls);
      }
7fa943eb   梁灏   init
74
  }