You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 25, 2019. It is now read-only.
- an easier API for creating cell editors (see docs)
5
+
-[`autocomplete`](http://handsontable.com/demo/autocomplete.html) cell type now uses Handsontable as the options list (previously was using Bootstrap Typeahead)
border-collapse: separate; /*it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit*/
35
+
border-collapse: separate;
36
+
/*it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit*/
40
37
position: relative;
41
38
/*this actually only changes appearance of user selection - does not make text unselectable
42
39
-webkit-user-select: none;
@@ -71,13 +68,14 @@
71
68
height:22px;
72
69
empty-cells: show;
73
70
line-height:21px;
74
-
padding:04px04px; /* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
71
+
padding:04px04px;
72
+
/* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
75
73
background-color:#FFF;
76
-
font-size:12px;
77
74
vertical-align: top;
78
75
overflow: hidden;
79
76
outline-width:0;
80
-
white-space: pre-line; /* preserve new line character in cell */
77
+
white-space: pre-line;
78
+
/* preserve new line character in cell */
81
79
}
82
80
83
81
.handsontabletd.htInvalid {
@@ -128,10 +126,6 @@
128
126
white-space: nowrap;
129
127
}
130
128
131
-
.handsontableth .small {
132
-
font-size:12px;
133
-
}
134
-
135
129
.handsontabletheadth {
136
130
padding:0;
137
131
}
@@ -200,6 +194,7 @@
200
194
}
201
195
202
196
/* border line */
197
+
203
198
.handsontable .wtBorder {
204
199
position: absolute;
205
200
font-size:0;
@@ -210,6 +205,7 @@
210
205
}
211
206
212
207
/* fill handle */
208
+
213
209
.handsontable .wtBorder.corner {
214
210
font-size:0;
215
211
cursor: crosshair;
@@ -226,16 +222,16 @@
226
222
outline-width:0;
227
223
margin:0;
228
224
padding:1px4px02px;
229
-
font-family: Arial, Helvetica, sans-serif; /*repeat from .handsontable (inherit doesn't work with IE<8) */
230
-
line-height:1.3em; /*repeat from .handsontable (inherit doesn't work with IE<8) */
231
-
font-size:13px;
225
+
font-family: Arial, Helvetica, sans-serif;
226
+
/*repeat from .handsontable (inherit doesn't work with IE<8) */
227
+
line-height:1.3em;
228
+
/*repeat from .handsontable (inherit doesn't work with IE<8) */
229
+
font-size: inherit;
232
230
-webkit-box-shadow:1px2px5pxrgba(0,0,0,0.4);
233
231
box-shadow:1px2px5pxrgba(0,0,0,0.4);
234
232
resize: none;
235
-
236
233
/*below are needed to overwrite stuff added by jQuery UI Bootstrap theme*/
237
234
display: inline-block;
238
-
font-size:13px;
239
235
color:#000;
240
236
border-radius:0;
241
237
}
@@ -244,21 +240,35 @@
244
240
position: absolute;
245
241
top:0;
246
242
left:0;
247
-
width:1px;
248
-
height:1px;
243
+
z-index:100;
244
+
}
245
+
246
+
.htSelectEditor {
247
+
-webkit-appearance: menulist-button !important;
248
+
position: absolute;
249
249
}
250
250
251
251
/*
252
252
TextRenderer readOnly cell
253
253
*/
254
+
254
255
.handsontable .htDimmed {
255
256
font-style: italic;
256
257
color:#777;
257
258
}
258
259
260
+
/*
261
+
TextRenderer placeholder value
262
+
*/
263
+
264
+
.handsontable .htPlaceholder {
265
+
color:#999;
266
+
}
267
+
259
268
/*
260
269
AutocompleteRenderer down arrow
261
270
*/
271
+
262
272
.handsontable .htAutocomplete {
263
273
position: relative;
264
274
padding-right:20px;
@@ -282,23 +292,23 @@ AutocompleteRenderer down arrow
282
292
/*
283
293
CheckboxRenderer
284
294
*/
295
+
285
296
.handsontable .htCheckboxRendererInput.noValue {
286
297
opacity:0.5;
287
298
}
288
299
289
300
/*
290
301
NumericRenderer
291
302
*/
303
+
292
304
.handsontable .htNumeric {
293
305
text-align: right;
294
306
}
295
307
296
308
/* typeahead rules. Needed only if you are using the autocomplete feature */
0 commit comments