2011-01-25 22:48:05 +01:00
|
|
|
/**
|
|
|
|
* @provides aphront-tokenizer-control-css
|
|
|
|
* @requires aphront-typeahead-control-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.jx-tokenizer {
|
|
|
|
background: transparent;
|
2012-11-12 22:15:46 +01:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2011-01-25 22:48:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.jx-tokenizer-container {
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #96A6C5;
|
|
|
|
position: relative;
|
2011-04-04 04:20:47 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 0 2px;
|
2011-01-25 22:48:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var.jx-tokenizer-metrics {
|
|
|
|
position: absolute;
|
|
|
|
left: 20px;
|
|
|
|
top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.jx-tokenizer-input {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-width: 1px 0px;
|
2012-11-12 22:15:46 +01:00
|
|
|
padding: 3px;
|
2011-01-25 22:48:05 +01:00
|
|
|
outline: none;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.jx-tokenizer-x-placeholder {
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.jx-tokenizer-token {
|
2012-11-12 22:15:46 +01:00
|
|
|
padding: 2px 0 2px 5px;
|
2011-01-25 22:48:05 +01:00
|
|
|
border: 1px solid #a4bdec;
|
|
|
|
margin: 3px 2px 0 4px;
|
|
|
|
background: #dee7f8;
|
|
|
|
float: left;
|
|
|
|
cursor: text;
|
|
|
|
font-size: 12px;
|
2012-11-12 22:15:46 +01:00
|
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
2011-01-25 22:48:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a.jx-tokenizer-token:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background: #bbcef1;
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.jx-tokenizer-token a.jx-tokenizer-x {
|
|
|
|
color: #627aad;
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
font-weight: normal;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.jx-tokenizer-token a.jx-tokenizer-x:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|