scratch – Blame information for rev 134

Subversion Repositories:
Rev:
Rev Author Line No. Line
134 office 1 /*!
2 * bootstrap-tokenfield
3 * https://github.com/sliptree/bootstrap-tokenfield
4 * Copyright 2013-2014 Sliptree and other contributors; Licensed MIT
5 */
6 /* General Typeahead styling, from http://jsfiddle.net/ragulka/Dy9au/1/ */
7 .twitter-typeahead {
8 width: 100%;
9 position: relative;
10 vertical-align: top;
11 }
12 .twitter-typeahead .tt-input,
13 .twitter-typeahead .tt-hint {
14 margin: 0;
15 width: 100%;
16 vertical-align: middle;
17 background-color: #ffffff;
18 }
19 .twitter-typeahead .tt-hint {
20 color: #999999;
21 z-index: 1;
22 border: 1px solid transparent;
23 }
24 .twitter-typeahead .tt-input {
25 color: #555555;
26 z-index: 2;
27 }
28 .twitter-typeahead .tt-input,
29 .twitter-typeahead .tt-hint {
30 height: 34px;
31 padding: 6px 12px;
32 font-size: 14px;
33 line-height: 1.428571429;
34 }
35 .twitter-typeahead .input-sm.tt-input,
36 .twitter-typeahead .hint-sm.tt-hint {
37 border-radius: 3px;
38 }
39 .twitter-typeahead .input-lg.tt-input,
40 .twitter-typeahead .hint-lg.tt-hint {
41 border-radius: 6px;
42 }
43 .input-group .twitter-typeahead:first-child .tt-input,
44 .input-group .twitter-typeahead:first-child .tt-hint {
45 border-radius: 4px 0 0 4px !important;
46 }
47 .input-group .twitter-typeahead:last-child .tt-input,
48 .input-group .twitter-typeahead:last-child .tt-hint {
49 border-radius: 0 4px 4px 0 !important;
50 }
51 .input-group.input-group-sm .twitter-typeahead:first-child .tt-input,
52 .input-group.input-group-sm .twitter-typeahead:first-child .tt-hint {
53 border-radius: 3px 0 0 3px !important;
54 }
55 .input-group.input-group-sm .twitter-typeahead:last-child .tt-input,
56 .input-group.input-group-sm .twitter-typeahead:last-child .tt-hint {
57 border-radius: 0 3px 3px 0 !important;
58 }
59 .input-sm.tt-input,
60 .hint-sm.tt-hint,
61 .input-group.input-group-sm .tt-input,
62 .input-group.input-group-sm .tt-hint {
63 height: 30px;
64 padding: 5px 10px;
65 font-size: 12px;
66 line-height: 1.5;
67 }
68 .input-group.input-group-lg .twitter-typeahead:first-child .tt-input,
69 .input-group.input-group-lg .twitter-typeahead:first-child .tt-hint {
70 border-radius: 6px 0 0 6px !important;
71 }
72 .input-group.input-group-lg .twitter-typeahead:last-child .tt-input,
73 .input-group.input-group-lg .twitter-typeahead:last-child .tt-hint {
74 border-radius: 0 6px 6px 0 !important;
75 }
76 .input-lg.tt-input,
77 .hint-lg.tt-hint,
78 .input-group.input-group-lg .tt-input,
79 .input-group.input-group-lg .tt-hint {
80 height: 45px;
81 padding: 10px 16px;
82 font-size: 18px;
83 line-height: 1.33;
84 }
85 .tt-dropdown-menu {
86 width: 100%;
87 min-width: 160px;
88 margin-top: 2px;
89 padding: 5px 0;
90 background-color: #ffffff;
91 border: 1px solid #ccc;
92 border: 1px solid rgba(0, 0, 0, 0.15);
93 *border-right-width: 2px;
94 *border-bottom-width: 2px;
95 border-radius: 6px;
96 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
97 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
98 -webkit-background-clip: padding-box;
99 -moz-background-clip: padding;
100 background-clip: padding-box;
101 }
102 .tt-suggestion {
103 display: block;
104 padding: 3px 20px;
105 }
106 .tt-suggestion.tt-cursor {
107 color: #262626;
108 background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
109 background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
110 background-repeat: repeat-x;
111 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
112 }
113 .tt-suggestion.tt-cursor a {
114 color: #ffffff;
115 }
116 .tt-suggestion p {
117 margin: 0;
118 }
119 /* Tokenfield-specific Typeahead styling */
120 .tokenfield .twitter-typeahead {
121 width: auto;
122 }
123 .tokenfield .twitter-typeahead .tt-hint {
124 padding: 0;
125 height: 20px;
126 }
127 .tokenfield.input-sm .twitter-typeahead .tt-input,
128 .tokenfield.input-sm .twitter-typeahead .tt-hint {
129 height: 18px;
130 font-size: 12px;
131 line-height: 1.5;
132 }
133 .tokenfield.input-lg .twitter-typeahead .tt-input,
134 .tokenfield.input-lg .twitter-typeahead .tt-hint {
135 height: 23px;
136 font-size: 18px;
137 line-height: 1.33;
138 }
139 .tokenfield .twitter-typeahead .tt-suggestions {
140 font-size: 14px;
141 }