forked from blueimp/jQuery-File-Upload
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added an updated jQuery UI example implementation.
- Loading branch information
Showing
11 changed files
with
495 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
@charset "UTF-8"; | ||
/* | ||
* jQuery File Upload Demo CSS 1.0 | ||
* https://github.com/blueimp/jQuery-File-Upload | ||
* | ||
* Copyright 2013, Sebastian Tschan | ||
* https://blueimp.net | ||
* | ||
* Licensed under the MIT license: | ||
* http://www.opensource.org/licenses/MIT | ||
*/ | ||
|
||
body { | ||
max-width: 750px; | ||
margin: 0 auto; | ||
padding: 1em; | ||
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; | ||
font-size: 1em; | ||
line-height: 1.4em; | ||
background: #222; | ||
color: #fff; | ||
-webkit-text-size-adjust: 100%; | ||
-ms-text-size-adjust: 100%; | ||
} | ||
a { | ||
color: orange; | ||
text-decoration: none; | ||
} | ||
img { | ||
border: 0; | ||
vertical-align: middle; | ||
} | ||
h1 { | ||
line-height: 1em; | ||
} | ||
blockquote { | ||
padding: 0 0 0 15px; | ||
margin: 0 0 20px; | ||
border-left: 5px solid #eee; | ||
} | ||
table { | ||
width: 100%; | ||
margin: 10px 0; | ||
} | ||
|
||
.fileupload-progress { | ||
margin: 10px 0; | ||
} | ||
.fileupload-progress .progress-extended { | ||
margin-top: 5px; | ||
} | ||
.error { | ||
color: red; | ||
} | ||
|
||
@media (min-width: 481px) { | ||
.navigation { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
.navigation li { | ||
display: inline-block; | ||
} | ||
.navigation li:not(:first-child):before { | ||
content: '| '; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.