Blame view

src/styles/components/transfer.less 2.71 KB
77f7bb95   梁灏   add Transfer comp...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  @transfer-prefix-cls: ~"@{css-prefix}transfer";
  @transfer-item-prefix-cls: ~"@{css-prefix}transfer-list-content-item";
  
  .@{transfer-prefix-cls} {
      position: relative;
      line-height: @line-height-base;
  
      &-list{
          display: inline-block;
          width: 180px;
          height: 210px;
          font-size: @font-size-small;
          vertical-align: middle;
          border: 1px solid @border-color-base;
122e69ee   梁灏   update Transfer
15
          border-radius: @border-radius-base @border-radius-base 0 0;
77f7bb95   梁灏   add Transfer comp...
16
17
18
19
20
21
          position: relative;
          padding-top: 35px;
  
          &-header {
              padding: 8px 16px;
              border-radius: @border-radius-base @border-radius-base 0 0;
122e69ee   梁灏   update Transfer
22
              background: @head-bg;
77f7bb95   梁灏   add Transfer comp...
23
24
25
26
27
28
29
30
              color: @text-color;
              border-bottom: 1px solid @border-color-split;
              overflow: hidden;
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
  
122e69ee   梁灏   update Transfer
31
32
33
34
              & > span{
                  padding-left: 4px;
              }
  
77f7bb95   梁灏   add Transfer comp...
35
36
37
38
39
40
41
42
43
44
45
              &-count {
                  margin: 0 !important;
                  float: right;
              }
          }
  
          &-body{
              height: 100%;
              position: relative;
  
              &-with-search{
122e69ee   梁灏   update Transfer
46
                  padding-top: 34px;
77f7bb95   梁灏   add Transfer comp...
47
48
49
50
51
52
53
54
55
56
57
58
              }
          }
  
          &-content{
              height: 100%;
              padding: 4px 0;
              overflow: auto;
  
              &-item{
                  overflow: hidden;
                  white-space: nowrap;
                  text-overflow: ellipsis;
122e69ee   梁灏   update Transfer
59
60
61
62
  
                  & > span{
                      padding-left: 4px;
                  }
77f7bb95   梁灏   add Transfer comp...
63
              }
37ee1535   梁灏   update Transfer
64
65
66
67
68
69
70
71
72
  
              &-not-found{
                  display: none;
                  text-align: center;
                  color: @btn-disable-color;
              }
              li&-not-found:only-child{
                  display: block;
              }
77f7bb95   梁灏   add Transfer comp...
73
74
          }
          &-body-with-search &-content{
122e69ee   梁灏   update Transfer
75
              padding: 6px 0 0;
77f7bb95   梁灏   add Transfer comp...
76
77
78
          }
  
          &-body-search-wrapper{
122e69ee   梁灏   update Transfer
79
              padding: 8px 8px 0;
77f7bb95   梁灏   add Transfer comp...
80
81
82
83
84
85
86
87
88
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
          }
  
          &-search{
              position: relative;
          }
122e69ee   梁灏   update Transfer
89
90
91
92
93
94
95
96
97
  
          &-footer{
              margin: 0 -1px;
              border: 1px solid @border-color-base;
              border-top: none;
              border-radius: 0 0 @border-radius-base @border-radius-base;
  
              .clearfix();
          }
77f7bb95   梁灏   add Transfer comp...
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
      }
      &-operation {
          display: inline-block;
          overflow: hidden;
          margin: 0 16px;
          vertical-align: middle;
  
          .@{btn-prefix-cls} {
              display: block;
              min-width: @btn-circle-size-small;
  
              &:first-child {
                  margin-bottom: 12px;
              }
          }
      }
  }
  .select-item(@transfer-prefix-cls, @transfer-item-prefix-cls);