Skip to content

Commit

Permalink
Restructuring files, adding grunt, updating to version 0.4.1
Browse files Browse the repository at this point in the history
* Restructured library's files
* Created docs directory
* Created node script to build docs
* Added grunt script to add copyright/license and minify
* Incrementing version number
  • Loading branch information
Jason Butz committed Nov 20, 2012
1 parent 09a0a1b commit b870733
Show file tree
Hide file tree
Showing 50 changed files with 1,451 additions and 89 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -3,4 +3,6 @@ node_modules
*~ *~
.DS_STORE .DS_STORE
.htaccess .htaccess
test.html test.html
bootstrap-lightbox/
bootstrap-lightbox-v*.zip
67 changes: 0 additions & 67 deletions bootstrap-lightbox.css

This file was deleted.

65 changes: 65 additions & 0 deletions build/bootstrap-lightbox.css
@@ -0,0 +1,65 @@
/*!=========================================================
* bootstrap-lightbox v0.4.1 - 11/20/2012
* http://jbutz.github.com/bootstrap-lightbox/
* HEAVILY based off bootstrap-modal.js
* ==========================================================
* Copyright (c) 2012 Jason Butz (http://jasonbutz.info)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */
.lightbox {
background-color: transparent;
text-align: center;
line-height: 0;
z-index: 1050;
position: relative;
top: 70px;
outline: none;
}
.lightbox .hide {
display: none;
}
.lightbox .in {
display: block;
}
.lightbox-content {
display: inline-block;
padding: 10px;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
*border: 1px solid #999;
/* IE6-7 */

-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
}
.lightbox-header .close {
color: white;
margin-right: -16px;
margin-top: -16px;
font-size: 2em;
opacity: .8;
filter: alpha(opacity=80);
}
.lightbox-header .close :hover {
opacity: .4;
filter: alpha(opacity=40);
}

0 comments on commit b870733

Please sign in to comment.