scratch – Blame information for rev 125

Subversion Repositories:
Rev:
Rev Author Line No. Line
125 office 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: 4px 6px;
7 color: #555;
8 vertical-align: middle;
9 border-radius: 4px;
10 max-width: 100%;
11 line-height: 22px;
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 margin: 0;
21 width: auto;
22 max-width: inherit;
23 }
24 .bootstrap-tagsinput.form-control input::-moz-placeholder {
25 color: #777;
26 opacity: 1;
27 }
28 .bootstrap-tagsinput.form-control input:-ms-input-placeholder {
29 color: #777;
30 }
31 .bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
32 color: #777;
33 }
34 .bootstrap-tagsinput input:focus {
35 border: none;
36 box-shadow: none;
37 }
38 .bootstrap-tagsinput .tag {
39 margin-right: 2px;
40 color: white;
41 }
42 .bootstrap-tagsinput .tag [data-role="remove"] {
43 margin-left: 8px;
44 cursor: pointer;
45 }
46 .bootstrap-tagsinput .tag [data-role="remove"]:after {
47 content: "x";
48 padding: 0px 2px;
49 }
50 .bootstrap-tagsinput .tag [data-role="remove"]:hover {
51 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
52 }
53 .bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
54 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
55 }