Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 4a74cf3

Browse files
committed
gh-pages & project url update
1 parent 0d0554b commit 4a74cf3

File tree

4 files changed

+117
-15
lines changed

4 files changed

+117
-15
lines changed

dist/jquery.easyselect.min.css

Lines changed: 114 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,117 @@
11
/*!
2-
jQuery easySelect 1.0.4 - http://outofroutine.github.com/jquery-easyselect/
2+
jQuery easySelect 1.0.5 - http://tameraydin.github.com/jquery-easyselect/
33
*/
44

5-
.easyselect-field-wrapper{position:relative}.easyselect-field{margin:0}.easyselect-list-wrapper{clear:left}.easyselect-list{left:0;margin:0;padding:0;position:absolute;width:100%}.easyselect-list li{background:#FFF;cursor:pointer;display:none}.easyselect-list li.filtered{display:block}.easyselect-list li.active{background:#333;color:#FFF}.easyselect-box{background:#999;padding:10px}.easyselect-box-item{background:#CCC;cursor:pointer;margin-right:10px;padding:3px 5px}.easyselect-container{font-family:sans-serif}.easyselect-field-wrapper{z-index:2}.easyselect-field{border:4px solid #369;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);padding:4px 6px;width:300px}.easyselect-list{box-shadow:0 0 2px rgba(0,0,0,0.5);-webkit-box-shadow:0 0 5px rgba(0,0,0,0.5);margin-left:4px;width:312px;z-index:2}.easyselect-list li{border-bottom:1px solid #eaeffa;padding:3px 5px;width:302px}.easyselect-list li.active{background:#369}.easyselect-box{background:#eaeffa;border-radius:4px;margin-top:8px;padding:0 8px 8px 0;position:relative;width:312px;*zoom:1}.easyselect-box.empty{display:none}.easyselect-box:before,.easyselect-box:after{content:"";display:table}.easyselect-box:after{clear:both}.easyselect-box-item{background:#7a9bbd;background:linear-gradient(to bottom,#7a9bbd 0,#7a9bbd 50%,#369 50%,#369 100%);background:-o-linear-gradient(top,#7a9bbd 0,#7a9bbd 50%,#369 50%,#369 100%);background:-ms-linear-gradient(top,#7a9bbd 0,#7a9bbd 50%,#369 50%,#369 100%);background:-webkit-linear-gradient(top,#7a9bbd 0,#7a9bbd 50%,#369 50%,#369 100%);border:1px solid #7a9bbd;border-radius:4px;color:#FFF;float:left;line-height:1em;margin:8px 0 0 8px;text-shadow:0 -1px 0 #369;text-decoration:none}.easyselect-box-item:hover{border-color:#369}
5+
/*
6+
Base Styles
7+
*/
8+
.easyselect-field-wrapper {
9+
position: relative;
10+
}
11+
.easyselect-field {
12+
margin: 0;
13+
}
14+
.easyselect-list-wrapper {
15+
/* IE7 fix */
16+
clear: left;
17+
}
18+
.easyselect-list {
19+
left: 0;
20+
margin: 0;
21+
padding: 0;
22+
position: absolute;
23+
width: 100%;
24+
}
25+
.easyselect-list li {
26+
background: #FFF;
27+
cursor: pointer;
28+
display: none;
29+
}
30+
.easyselect-list li.filtered {
31+
display: block;
32+
}
33+
.easyselect-list li.active {
34+
background: #333;
35+
color: #FFF;
36+
}
37+
.easyselect-box {
38+
background: #999;
39+
padding: 10px;
40+
}
41+
.easyselect-box-item {
42+
background: #CCC;
43+
cursor: pointer;
44+
margin-right: 10px;
45+
padding: 3px 5px;
46+
}
47+
48+
/*
49+
Extras
50+
*/
51+
.easyselect-container {
52+
font-family: sans-serif;
53+
}
54+
.easyselect-field-wrapper {
55+
z-index: 2;
56+
}
57+
.easyselect-field {
58+
border: 4px solid #336699;
59+
border-radius: 4px;
60+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
61+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
62+
padding: 4px 6px;
63+
width: 300px;
64+
}
65+
.easyselect-list {
66+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
67+
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
68+
margin-left: 4px;
69+
width: 312px;
70+
z-index: 2;
71+
}
72+
.easyselect-list li {
73+
border-bottom: 1px solid #EAEFFA;
74+
padding: 3px 5px;
75+
width: 302px;
76+
}
77+
.easyselect-list li.active {
78+
background: #336699;
79+
}
80+
.easyselect-box {
81+
background: #EAEFFA;
82+
border-radius: 4px;
83+
margin-top: 8px;
84+
padding: 0 8px 8px 0;
85+
position: relative;
86+
width: 312px;
87+
*zoom: 1;
88+
}
89+
.easyselect-box.empty {
90+
display: none;
91+
}
92+
.easyselect-box:before,
93+
.easyselect-box:after {
94+
content: "";
95+
display: table;
96+
}
97+
.easyselect-box:after {
98+
clear: both;
99+
}
100+
.easyselect-box-item {
101+
background: #7A9BBD;
102+
background: linear-gradient(to bottom, #7a9bbd 0%, #7a9bbd 50%, #336699 50%, #336699 100%);
103+
background: -o-linear-gradient(top, #7a9bbd 0%, #7a9bbd 50%, #336699 50%, #336699 100%);
104+
background: -ms-linear-gradient(top, #7a9bbd 0%, #7a9bbd 50%, #336699 50%, #336699 100%);
105+
background: -webkit-linear-gradient(top, #7a9bbd 0%, #7a9bbd 50%, #336699 50%, #336699 100%);
106+
border: 1px solid #7A9BBD;
107+
border-radius: 4px;
108+
color: #FFF;
109+
float: left;
110+
line-height: 1em;
111+
margin: 8px 0 0 8px;
112+
text-shadow: 0 -1px 0 #336699;
113+
text-decoration: none;
114+
}
115+
.easyselect-box-item:hover {
116+
border-color: #336699;
117+
}

dist/jquery.easyselect.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

easyselect.jquery.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "easyselect",
33
"title": "jQuery easySelect",
44
"description": "A plugin to present multiple select elements in easier way.",
5-
"homepage": "http://outofroutine.github.com/jquery-easyselect/",
5+
"homepage": "http://tameraydin.github.com/jquery-easyselect/",
66
"keywords": [
77
"select",
88
"selectbox",
99
"multiselect",
1010
"autosuggest",
1111
"token"
1212
],
13-
"version": "1.0.4",
13+
"version": "1.0.5",
1414
"author": {
1515
"name": "Tamer Aydin",
1616
"email": "[email protected]",

src/jquery.easyselect.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
/*
2-
* jQuery easySelect - http://outofroutine.github.com/jquery-easyselect/
3-
*
4-
* Version: 0.1.0
5-
* Dependency: jQuery v1.4.2+
6-
* Author: Tamer Aydın - http://www.tamerayd.in
7-
*
8-
* This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/.
9-
*/
10-
111
;(function ($, window, document, undefined) {
122

133
"use strict";

0 commit comments

Comments
 (0)