diff --git a/ajax/libs/bootstrap-lightbox/0.3/bootstrap-lightbox.css b/ajax/libs/bootstrap-lightbox/0.3/bootstrap-lightbox.css index b6f97a239..b9bd89e1e 100644 --- a/ajax/libs/bootstrap-lightbox/0.3/bootstrap-lightbox.css +++ b/ajax/libs/bootstrap-lightbox/0.3/bootstrap-lightbox.css @@ -1,882 +1,48 @@ - - - - - -
- - -
- 1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19 -20 -21 -22 -23 -24 -25 -26 -27 -28 -29 -30 -31 -32 -33 -34 -35 -36 -37 -38 -39 -40 -41 -42 -43 -44 -45 -46 -47 -48 -- |
-
- |
-
Headers
--# This is an <h1> tag -## This is an <h2> tag -###### This is an <h6> tag-
Text styles
--*This text will be italic* -_This will also be italic_ -**This text will be bold** -__This will also be bold__ - -*You **can** combine them* --
Unordered
--* Item 1 -* Item 2 - * Item 2a - * Item 2b-
Ordered
--1. Item 1 -2. Item 2 -3. Item 3 - * Item 3a - * Item 3b-
Images
-- -Format:  --
Links
--http://github.com - automatic! -[GitHub](http://github.com)-
Blockquotes
--As Kanye West said: - -> We're living the future so -> the present is our past. --
Syntax highlighting with GFM
-
-```javascript
-function fancyAlert(arg) {
- if(arg) {
- $.facebox({div:'#foo'})
- }
+/*
+/* =========================================================
+ * bootstrap-lightbox.css v0.3
+ *
+ * =========================================================
+ * Copyright 2012 Jason Butz
+ *
+ * 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;
+ display: block;
+ text-align: center;
+ line-height: 0;
+ z-index: 1050;
+ position: relative;
+ top: 70px;
+
+}
+.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;
}
-```
- Or, indent your code 4 spaces
--Here is a Python code example -without syntax highlighting: - - def foo: - if not bar: - return true-
Inline code for comments
--I think you should use an -`<addr>` element here instead.-