1.bootstrap-tagsinput {
2  background-color: #fff;
3  border: 1px solid #ccc;
4  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
5  display: inline-block;
6  padding: 0 6px;
7  color: #555;
8  vertical-align: middle;
9  border-radius: 4px;
10  max-width: 100%;
11  line-height: 20px;
12  cursor: text;
13}
14.bootstrap-tagsinput input {
15  border: none;
16  box-shadow: none;
17  outline: none;
18  background-color: transparent;
19  /*padding: 0 6px;*/
20  padding: 0;
21  height: 26px;
22  margin: 1px;
23  width: auto;
24  max-width: inherit;
25}
26.bootstrap-tagsinput.disabled,
27.bootstrap-tagsinput input[disabled],
28.bootstrap-tagsinput input[readonly] {
29  cursor: not-allowed;
30  background-color: #f0f0f0;
31}
32.bootstrap-tagsinput.disabled [data-role="remove"] {
33  display: none;
34}
35.bootstrap-tagsinput.form-control input::-ms-clear {
36  display: none;
37}
38.bootstrap-tagsinput.form-control input::-moz-placeholder {
39  color: #777;
40  opacity: 1;
41}
42.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
43  color: #777;
44}
45.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
46  color: #777;
47}
48.bootstrap-tagsinput input:focus {
49  border: none;
50  box-shadow: none;
51  cursor: pointer;
52}
53.bootstrap-tagsinput .tag {
54  margin-right: 2px;
55  color: white;
56}
57.bootstrap-tagsinput .tag [data-role="remove"] {
58  margin-left: 4px;
59  cursor: pointer;
60}
61.bootstrap-tagsinput .tag [data-role="remove"]:after {
62  /*content: "×";*/
63  content: "\00d7";
64  padding: 0px 2px;
65}
66.bootstrap-tagsinput .tag [data-role="remove"]:hover {
67  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
68}
69.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
70  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
71}
72