aloha-vue 1.0.128 → 1.0.129
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.
package/package.json
CHANGED
|
@@ -228,10 +228,10 @@ export default {
|
|
|
228
228
|
}
|
|
229
229
|
return h("li", this.attributesLi, [
|
|
230
230
|
h("div", {
|
|
231
|
-
class: "a_dropdown__item_text a_table__th__dropdown_item
|
|
231
|
+
class: "a_dropdown__item_text a_table__th__dropdown_item",
|
|
232
232
|
}, [
|
|
233
233
|
h("div", {
|
|
234
|
-
class: "a_table__th__dropdown_item__child
|
|
234
|
+
class: "a_table__th__dropdown_item__child",
|
|
235
235
|
}, [
|
|
236
236
|
h(this.tagIconParent, this.attributesIconParent, [
|
|
237
237
|
h(AIcon, {
|
|
@@ -142,17 +142,24 @@
|
|
|
142
142
|
.a_table__cell_action {
|
|
143
143
|
justify-content: flex-end;
|
|
144
144
|
flex-grow: 1;
|
|
145
|
+
min-width: 50px;
|
|
145
146
|
}
|
|
146
147
|
.a_table__th__dropdown_item {
|
|
147
148
|
display: flex;
|
|
148
149
|
justify-content: space-between;
|
|
149
150
|
align-items: center;
|
|
151
|
+
white-space: nowrap;
|
|
150
152
|
}
|
|
151
153
|
.a_table__th__dropdown_item__child {
|
|
152
154
|
position: relative;
|
|
153
155
|
flex-grow: 1;
|
|
154
156
|
padding-right: 25px;
|
|
155
157
|
display: flex;
|
|
158
|
+
align-items: center;
|
|
159
|
+
word-wrap: break-word;
|
|
160
|
+
word-break: break-word;
|
|
161
|
+
hyphens: auto;
|
|
162
|
+
white-space: normal;
|
|
156
163
|
}
|
|
157
164
|
.a_table__th__dropdown_item__btn_arrow {
|
|
158
165
|
position: absolute;
|