autocomplete style
authorMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Thu, 2 Feb 2012 14:39:23 +0000 (15:39 +0100)
committerMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Thu, 2 Feb 2012 14:39:23 +0000 (15:39 +0100)
scripts/drop-tables [new file with mode: 0755]
wolnelektury/static/css/base.css
wolnelektury/static/css/header.css
wolnelektury/static/js/search.js

diff --git a/scripts/drop-tables b/scripts/drop-tables
new file mode 100755 (executable)
index 0000000..dba22eb
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/bash
+DATABASE=$1
+USERNAME=$2
+PASSWORD=$3
+mysqldump -u$USERNAME -p$PASSWORD --add-drop-table --no-data $DATABASE | grep ^DROP | mysql -u$USERNAME -p$PASSWORD $DATABASE
index 70bf83d..70aa172 100755 (executable)
@@ -26,11 +26,29 @@ body {
 a img {
        border: 0;
 }
+
 a {
     color: #0d7e85; /*#1199a2;*/ /* #01adba; */
     text-decoration: none;
 }
 
+/* jquery UI overrides us */
+.ui-menu .ui-menu-item a {
+    color: #0d7e85 !important;
+    line-height: 1.636em !important;
+}
+
+.ui-widget {
+    font-family: Georgia !important;
+    font-size: 1em !important;
+}
+
+.ui-widget-content {
+    background: #EEEEEE !important; /* #E2E2E2 ? */
+    border-radius: 0px !important;
+}
+
+
 h1 {
     font-size: 3.5em;
     font-weight: normal;
index feac00f..cdb74f8 100755 (executable)
@@ -231,3 +231,16 @@ a.menu span {
 #lang-menu .active {
     color: #000;
 }
+
+.search-hint-label {
+    display: inline-block;
+    width: 25em;
+    font-size: 1.1em;
+    line-height: 1.636em;
+}
+
+.search-hint-category {
+    font-size: 1.1em;
+    line-height: 1.636em;
+    
+}
\ No newline at end of file
index ee4cc51..e810246 100644 (file)
@@ -29,7 +29,8 @@ var __bind = function (self, fn) {
    
        render_item: function (ul, item) {
            return $("<li></li>").data('item.autocomplete', item)
-               .append('<a href="'+item.url+'">'+item.label+ ' ('+item.category+')</a>')
+               .append('<span class="search-hint-label"><a href="'+item.url+'">'+item.label+'</a></span>'+
+                       '<span class="search-hint-category mono">'+item.category+'</span>')
                .appendTo(ul);
        },