moved media to media folder in app
[~kgodey/maayanwich.git] / media / token-input.css
diff --git a/media/token-input.css b/media/token-input.css
new file mode 100755 (executable)
index 0000000..f950805
--- /dev/null
@@ -0,0 +1,113 @@
+/* Example tokeninput style #1: Token vertical list*/
+ul.token-input-list {
+    overflow: hidden; 
+    height: auto !important; 
+    height: 30px;
+    width: 180px;
+    border: 1px solid #532029;
+    cursor: text;
+    font-size: 14px;
+    font-family: 'Adobe Caslon Pro', Georgia, sans-serif;
+    z-index: 999;
+    margin: 0;
+    padding: 0;
+    background-color: #C9C79E;
+}
+
+ul.token-input-list li {
+    list-style-type: none;
+}
+
+ul.token-input-list li input {
+    border: 0;
+    width: 180px;
+    padding: 3px 8px;
+    background-color: #C9C79E;
+}
+
+li.token-input-token {
+    overflow: hidden; 
+    height: 18px;
+    margin: 3px;
+    padding: 3px 5px;
+    background-color: #FBFEF3;
+    color: #000;
+       border: 1px solid #532029;
+    font-weight: bold;
+    cursor: default;
+    display: block;
+}
+
+li.token-input-token p {
+    float: left;
+    padding: 0;
+    margin: 0;
+}
+
+li.token-input-token span {
+    float: right;
+    color: #532029;
+    cursor: pointer;
+}
+
+li.token-input-selected-token {
+    background-color: #FCB49E;
+    color: #000;
+}
+
+li.token-input-selected-token span {
+    color: #532029;
+}
+
+div.token-input-dropdown {
+    position: absolute;
+       margin-left:150px;
+    width: 176px;
+    background-color: #C9C79E;
+    overflow: hidden;
+    border-left: 2px solid #532029;
+    border-right: 2px solid #532029;
+    border-bottom: 2px solid #532029;
+    cursor: default;
+    font-size: 14px;
+    font-family: 'Adobe Caslon Pro', Georgia, sans-serif;
+    z-index: 1;
+}
+
+div.token-input-dropdown p {
+    margin: 0;
+    padding: 5px;
+    font-weight: bold;
+    color: #000;
+}
+
+div.token-input-dropdown ul {
+    margin: 0;
+    padding: 0;
+}
+
+div.token-input-dropdown ul li {
+    background-color: #C9C79E;
+    padding: 3px;
+    list-style-type: none;
+}
+
+div.token-input-dropdown ul li.token-input-dropdown-item {
+    background-color: #C9C79E;
+}
+
+div.token-input-dropdown ul li.token-input-dropdown-item2 {
+    background-color: #C9C79E;
+}
+
+div.token-input-dropdown ul li em {
+    font-weight: bold;
+    font-style: normal;
+}
+
+div.token-input-dropdown ul li.token-input-selected-dropdown-item {
+    background-color: #532029;
+       border: 2px solid #FBFEF3;
+       color: #fff;
+}
+