source: public/vendors/tagsinput/bootstrap-tagsinput.css@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 1.1 KB
Line 
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: "×";
53 padding: 0px 2px;
54 font-size: 17px;
55}
Note: See TracBrowser for help on using the repository browser.