1

如何将引导焦点发光添加到引导标签输入(对于引导 3)?

在此处输入图像描述

bootstrap-tagsinput.css文件:

.bootstrap-tagsinput {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  display: inline-block;
  padding: 4px 6px;
  margin-bottom: 10px;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  max-width: 100%;
  line-height: 22px;
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto !important;
  max-width: inherit;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

是否可以垂直对齐标签?

谢谢。

4

2 回答 2

2

目前在纯 CSS 中是不可能的,因为没有父选择器,但你可以在 JavaScript 中做到:

$('.bootstrap-tagsinput').focusin(function() {
    $(this).addClass('focus');
});
$('.bootstrap-tagsinput').focusout(function() {
    $(this).removeClass('focus');
});

和 CSS:

.focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(102,175,233,.6);
}
于 2014-08-14T04:53:47.670 回答
0

直接来自 Bootstrap 网站。如果您查看他们的焦点 CSS,它看起来像这样。

#focusedInput {
    border-color: rgba(82,168,236,.8);
    outline: 0;
    outline: thin dotted \9;
    -moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
    box-shadow: 0 0 8px rgba(82,168,236,.6);
}

您可能想尝试的是从上面的代码中将上面的内容添加到您的类中。它看起来像这样。

.bootstrap-tagsinput input:focus {
    border: none;
    box-shadow: none;
    border-color: rgba(82,168,236,.8);
    outline: 0;
    outline: thin dotted \9;
    -moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
    box-shadow: 0 0 8px rgba(82,168,236,.6);
}

我没有在任何事情上尝试过这个。但我认为这可能会对你有所帮助。

于 2013-11-13T20:58:30.170 回答