Skip to content

Commit

Permalink
First release
Browse files Browse the repository at this point in the history
  • Loading branch information
keyo321 committed Feb 10, 2013
0 parents commit 595eb02
Show file tree
Hide file tree
Showing 9 changed files with 473 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
163 changes: 163 additions & 0 deletions .gitignore
@@ -0,0 +1,163 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover

## TODO: If you have NuGet Package Restore enabled, uncomment this
#packages/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp

# ReSharper is a .NET coding add-in
_ReSharper*

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish

# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML



############
## Windows
############

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

# Mac crap
.DS_Store
17 changes: 17 additions & 0 deletions README.md
@@ -0,0 +1,17 @@
# jQuery Plugin: Light Weight MultiSelect

### What is it?

This is a super light weight jQuery plugin that converts a multiselect drop menu into a simple two panel selection interface. The UI is completely controlled via CSS, so you can change the look and feel as need. The js file is 4kb after minification, 2kb for the css and 2kb for the double arrow icon.

The plugin is written and maintained by Benny Lin. The design is created by Monique Aviles.

Current version: 1.0
License: MIT/GPL
Requires: jQuery 1.7+
Browsers: IE8+, FF, Chrome, Safari

## Live Demos

[http://bennylin.net/jquery-plugin-light-weight-multiselect/](http://bennylin.net/jquery-plugin-light-weight-multiselect/)

4 changes: 4 additions & 0 deletions changelog.txt
@@ -0,0 +1,4 @@
1.0 - 2/10/2013
--------------------------

* initial release
Binary file added doublearrow.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions jquery.lwMultiSelect.css
@@ -0,0 +1,69 @@
/* multi select */
.lwms-main{font-family: Arial,Helvetica,sans-serif; background: url('doublearrow.png') no-repeat 204px 110px; width:435px;}

.lwms-main .lwms-left, .lwms-main .lwms-right{width: 200px; color: #555; float: left;}

.lwms-main .lwms-list{
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
border: 1px solid #ccc;
}

.lwms-selected{display:none;}

.lwms-main .lwms-left{margin-right: 35px;}

.lwms-main ul{margin: 0; list-style-type: none;}

.lwms-main ul.lwms-list{
height: 200px;
padding: 0px 0px;
overflow-y: auto;
background:#fff;
}

.lwms-main .lwms-left li.lwms-selectli,
.lwms-main .lwms-right li.lwms-selectli{
padding: 4px 10px;
color: #555;
font-size: 12px;
line-height:16px;
border-bottom:1px solid #D4D4D4;
}

.lwms-filterhead {
color: #4A4A4A;
font-size: 12px;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-top: 5px;
vertical-align: middle;
}

.lwms-filterhead a {
color: #4A4A4A;
text-decoration: none;
}

.lwms-filcount {
color: #078697;
font-size: 14px;
}

.lwms-filterhead a:hover { text-decoration: underline; }

.lwms-main li.lwms-selectli:hover,
.lwms-main .lwms-right li:hover{
cursor: pointer;
text-decoration: none;
color:#fff;
background-color: #1a849b;
}

/* clear fix */
.lwms-cf:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.lwms-cf { display: inline-block;}
html[xmlns] .lwms-cf {display: block;}
* html .lwms-cf { height: 1%;}

0 comments on commit 595eb02

Please sign in to comment.