|
@@ -307,8 +307,10 @@ background:#fff;
|
307
|
307
|
list-style:none;
|
308
|
308
|
position: absolute;
|
309
|
309
|
cursor: default;
|
|
310
|
+list-style-type: none;
|
|
311
|
+width: 300px;
|
310
|
312
|
}
|
311
|
|
-.ui-autocomplete li {margin:0;}
|
|
313
|
+.ui-autocomplete li {margin-right:8px; float: left;}
|
312
|
314
|
.ui-autocomplete li a {display:block; padding:4px;}
|
313
|
315
|
.ui-autocomplete li a.ui-state-hover,
|
314
|
316
|
.ui-autocomplete li a:hover {background:#eee;}
|
|
@@ -446,4 +448,36 @@ input.main
|
446
|
448
|
input.clear, input.mytags
|
447
|
449
|
{
|
448
|
450
|
font-size: 80%;
|
|
451
|
+}
|
|
452
|
+
|
|
453
|
+ul.tagbox, ul.tagbox input[type="text"]
|
|
454
|
+{
|
|
455
|
+ background-color: #bdf1fe;
|
|
456
|
+}
|
|
457
|
+
|
|
458
|
+ul.tagbox input[type="text"]
|
|
459
|
+{
|
|
460
|
+ height: 14px;
|
|
461
|
+ margin-top: 3px;
|
|
462
|
+ width: 150px;
|
|
463
|
+ color: #676767;
|
|
464
|
+ font-weight: bold;
|
|
465
|
+}
|
|
466
|
+
|
|
467
|
+ul.tagbox input[type="text"]:FOCUS
|
|
468
|
+{
|
|
469
|
+ background-image: linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
|
|
470
|
+ background-image: -o-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
|
|
471
|
+ background-image: -moz-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
|
|
472
|
+ background-image: -webkit-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
|
|
473
|
+ background-image: -ms-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
|
|
474
|
+
|
|
475
|
+ background-image: -webkit-gradient(
|
|
476
|
+ linear,
|
|
477
|
+ left bottom,
|
|
478
|
+ right bottom,
|
|
479
|
+ color-stop(0.1, rgb(137,232,253)),
|
|
480
|
+ color-stop(0.49, rgb(168,238,255)),
|
|
481
|
+ color-stop(1, rgb(189,241,254))
|
|
482
|
+ );
|
449
|
483
|
}
|