Blame view

src/styles/components/poptip.less 2.96 KB
9699c270   梁灏   add Poptip component
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
  @poptip-prefix-cls: ~"@{css-prefix}poptip";
  @poptip-arrow: ~"@{poptip-prefix-cls}-arrow";
  @poptip-max-width: 250px;
  @poptip-arrow-width: 5px;
  @poptip-arrow-outer-width: (@poptip-arrow-width + 1);
  @poptip-distance: @poptip-arrow-width - 1 + 4;
  //@poptip-arrow-color: fadein(@border-color-base, 5%);
  @poptip-arrow-color: hsla(0,0%,85%,.5);
  
  .@{poptip-prefix-cls} {
      display: inline-block;
  
      &-rel{
          display: inline-block;
          position: relative;
      }
  
      &-title {
          margin: 0;
          padding: 0 16px;
          height: 32px;
          line-height: 32px;
          border-bottom: 1px solid @border-color-split;
          color: #666;
      }
  
      &-body{
613f5243   梁灏   update Poptip
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
          padding: 8px 16px;
  
          &-content{
              overflow: auto;
          }
      }
  
      &-inner{
          width: 100%;
          background-color: #fff;
          background-clip: padding-box;
          border: 1px solid @border-color-split;
          border-radius: @border-radius-small;
          box-shadow: @shadow-base;
          white-space: nowrap;
9699c270   梁灏   add Poptip component
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
      }
  
      &-popper{
          min-width: 150px;
          font-size: @font-size-small;
          .popper(@poptip-arrow, @poptip-arrow-width, @poptip-distance, @poptip-arrow-color);
  
          &[x-placement^="top"] .@{poptip-arrow}:after {
              content: " ";
              bottom: 1px;
              margin-left: -@poptip-arrow-width;
              border-bottom-width: 0;
              border-top-color: #fff;
          }
  
          &[x-placement^="right"] .@{poptip-arrow}:after {
              content: " ";
              left: 1px;
              bottom: -@poptip-arrow-width;
              border-left-width: 0;
              border-right-color: #fff;
          }
  
          &[x-placement^="bottom"] .@{poptip-arrow}:after {
              content: " ";
              top: 1px;
              margin-left: -@poptip-arrow-width;
              border-top-width: 0;
              border-bottom-color: #fff;
          }
  
          &[x-placement^="left"] .@{poptip-arrow}:after {
              content: " ";
              right: 1px;
              border-right-width: 0;
              border-left-color: #fff;
              bottom: -@poptip-arrow-width;
          }
      }
  
9699c270   梁灏   add Poptip component
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
      &-arrow{
          &, &:after{
              display: block;
              width: 0;
              height: 0;
              position: absolute;
              border-color: transparent;
              border-style: solid;
          }
      }
      &-arrow {
          border-width: @poptip-arrow-outer-width;
      }
      &-arrow:after{
          content: "";
          border-width: @poptip-arrow-width;
      }
  
      &-confirm &-popper{
          max-width: 300px;
      }
      &-confirm &-inner{
          white-space: normal;
9699c270   梁灏   add Poptip component
106
107
108
      }
  
      &-confirm &-body{
613f5243   梁灏   update Poptip
109
          padding: 16px 16px 8px;
9699c270   梁灏   add Poptip component
110
111
112
113
114
115
116
117
118
119
120
121
122
          .ivu-icon{
              color: @warning-color;
              line-height: 17px;
              position: absolute;
          }
  
          &-message{
              padding-left: 20px;
          }
      }
  
      &-confirm &-footer{
          text-align: right;
613f5243   梁灏   update Poptip
123
          padding: 8px 16px 16px;
9699c270   梁灏   add Poptip component
124
125
126
127
128
          button {
              margin-left: 4px;
          }
      }
  }