mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
调整样式
This commit is contained in:
parent
2bc33af525
commit
ae0281b3e4
@ -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
@ -474,6 +474,7 @@ label.think-radio, label.think-checkbox {
|
||||
}
|
||||
|
||||
&-input {
|
||||
width: 100px;
|
||||
resize: none;
|
||||
margin: 3px 8px 3px 0;
|
||||
overflow: hidden;
|
||||
|
Loading…
x
Reference in New Issue
Block a user