bri-components 1.3.30 → 1.3.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -68,8 +68,10 @@
68
68
  tr.ve-table-body-tr,
69
69
  tr.ve-table-expand-tr {
70
70
  height: auto;
71
+ // position: relative;
71
72
 
72
73
  td.ve-table-body-td {
74
+ height: 40px;
73
75
  padding: 4px 16px;
74
76
  }
75
77
  }
@@ -122,7 +124,7 @@
122
124
 
123
125
  &-td {
124
126
  position: relative;
125
-
127
+
126
128
  &-tip {
127
129
  padding: 0px 0px 0px 16px;
128
130
  font-size: 12px;
@@ -138,27 +140,56 @@
138
140
  padding: 0px;
139
141
  margin-left: 16px;
140
142
  }
141
-
143
+
142
144
  &-btn {
143
145
  margin-left: 16px;
144
146
  padding: 0px;
145
-
146
-
147
+
147
148
  &:first-of-type {
148
149
  margin: 0px;
149
150
  }
150
151
  }
151
152
  }
152
-
153
+
154
+ &-show {
155
+
156
+ }
153
157
  &-edit {
154
158
  padding: 4px 16px 12px 16px!important;
155
159
  }
156
- &-show {
157
-
160
+
161
+ &-visible {
162
+ @keyframes slideDown {
163
+ from {
164
+ top: -40px;
165
+ opacity: 0.9;
166
+ }
167
+
168
+ to {
169
+ top: 0px;
170
+ opacity: 1;
171
+ }
172
+ }
173
+
174
+ animation: slideDown .2s linear;
158
175
  }
159
176
  &-hide {
177
+ // @keyframes slideDown2 {
178
+ // from {
179
+ // top: 0px;
180
+ // opacity: 1;
181
+ // }
182
+
183
+ // to {
184
+ // top: -40px;
185
+ // opacity: 0.9;
186
+ // }
187
+ // }
188
+
160
189
  display: none!important;
190
+ // animation: slideDown2 .2s linear;
161
191
  }
192
+
162
193
  &-index {
163
194
  padding: 4px 16px 4px 12px!important;
164
195
  }