scratch – Blame information for rev 125

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