调整样式

This commit is contained in:
Anyon 2020-10-21 18:58:53 +08:00
parent 2bc33af525
commit ae0281b3e4
4 changed files with 6 additions and 4 deletions

View File

@ -575,8 +575,9 @@ $(function () {
/*! 标签输入插件 */
$.fn.initTagInput = function () {
return this.each(function () {
var $this = $(this), tags = this.value ? this.value.split(',') : [], $box = $('<div class="layui-tags"></div>');
var $text = $('<textarea class="layui-input layui-input-inline layui-tag-input" style="width:100px"></textarea>');
var $box = $('<div class="layui-tags"></div>');
var $this = $(this), tags = this.value ? this.value.split(',') : [];
var $text = $('<textarea class="layui-input layui-input-inline layui-tag-input"></textarea>');
$this.parent().append($box.append($text)), $text.off('keydown blur'), (tags.length > 0 && showTags(tags));
$text.on('keydown blur', function (event, value) {
if (event.keyCode === 13 || event.type === 'blur') {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -474,6 +474,7 @@ label.think-radio, label.think-checkbox {
}
&-input {
width: 100px;
resize: none;
margin: 3px 8px 3px 0;
overflow: hidden;