moved all search styling to CSS, removed friendly (but slow) URLs, moved WHERE strings into an array
This commit is contained in:
@@ -92,7 +92,7 @@ $(function() {
|
||||
// match up to 2 words (everything except some special characters)
|
||||
// each word can have up to 16 characters (up to 32 total)
|
||||
// words must be separated by a single space
|
||||
match: /(^|\s)(([^!"§$%&\/()=?.,;+*@\s]{1,16} ?){0,1}[^!"§$%&\/()=?.,;+*@\s]{1,16})$/,
|
||||
match: /(^|\s)([^!"§$%&\/()=?.,;+*@\s]{1,16})$/,
|
||||
search: function (text, callback, match) {
|
||||
console.log("Searching " + text);
|
||||
text = text.toLowerCase();
|
||||
|
||||
@@ -1049,18 +1049,17 @@ nav.pagination {
|
||||
}
|
||||
|
||||
.searchfield {
|
||||
margin:0px;
|
||||
height:40px;
|
||||
display: inline-block;
|
||||
|
||||
.btn {
|
||||
&.field {
|
||||
width: 300px;
|
||||
}
|
||||
&.btn {
|
||||
margin: 4px 1px 0 0;
|
||||
padding: 6px;
|
||||
cursor: default;
|
||||
color: #fff;
|
||||
border: none;
|
||||
font-size: 12px;
|
||||
line-height: normal;
|
||||
background: #4096ee;
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user