diff options
Diffstat (limited to 'site-media/css/jquery.tagInput.css')
-rw-r--r-- | site-media/css/jquery.tagInput.css | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/site-media/css/jquery.tagInput.css b/site-media/css/jquery.tagInput.css new file mode 100644 index 0000000..d2066c5 --- /dev/null +++ b/site-media/css/jquery.tagInput.css @@ -0,0 +1,81 @@ +
+.tagInput {
+ padding:2px;
+ padding-left: 20px;
+ background-image: url("tags.gif");
+ background-position: 2px 2px;
+ background-repeat: no-repeat;
+ border:1px solid lightgray;
+}
+
+
+.tagInputDiv {
+ display: none;
+ background-color: white;
+ position: absolute;
+ overflow: auto;
+ border: 1px solid lightgray;
+ margin-top:-1px;
+ font:13px/15px arial,sans-serif;
+}
+
+.tagInputLine {
+ color: black;
+ font-weight: normal;
+ padding:4px;
+}
+
+.tagInputSel {
+ background-color: gray;
+ color:white;
+}
+
+
+.tagInputLineTag {
+ min-width: 150px;
+ display: inline-block;
+}
+
+.tagInputLineFreq {
+ min-width: 50px;
+ text-align: right;
+ display: inline-block;
+ float:right;
+}
+
+
+.tagInputSuggestedTags {
+ font-size: 12px;
+ background-color:#e0e0e0;
+ padding:2px;
+ font:13px/15px arial,sans-serif;
+ margin-top:5px;
+ width:550px;
+ color:#303030;
+}
+
+.tagInputSuggestedTags .label{
+ font-weight:bolder;
+}
+
+.tagInputSuggestedTagList{
+
+}
+
+.tagInputSuggestedTagList .tag{
+ padding:2px;
+ cursor:pointer;
+ display:inline-block;
+ margin:1px;
+}
+
+.tagInputSuggestedTagList span.tag:hover{
+ background-color:#f0f0f0;
+}
+
+.tagInputSuggestedTagList .tagUsed{
+ background-color:lightgray;
+}
+
+
+
|