diff options
author | matthew <matthew> | 2008-03-29 03:03:34 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-03-29 03:03:34 +0000 |
commit | 193f3360a151178afb0df56e2bbf9430f63228bb (patch) | |
tree | f557f0ddf60dc394a6c0a778acc0fd3d81763785 /web/css | |
parent | 673715797876711db8eadd510610655e991d66cf (diff) |
Photo uploading for updates, and progress bar when uploading photos on
FixMyStreet (using swfupload). Needs more testing and error handling code
yet.
Diffstat (limited to 'web/css')
-rw-r--r-- | web/css/core.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/web/css/core.css b/web/css/core.css index 9a40bd052..c2e32909a 100644 --- a/web/css/core.css +++ b/web/css/core.css @@ -357,3 +357,54 @@ p#copyright { #content { max-width: none; } #side { margin-right: 0; } } + +/* File upload */ +.progressContainer { + margin: 5px; + padding: 4px; + width: 357px; + border: solid 1px #E8E8E8; + background-color: #F7F7F7; + overflow: hidden; +} +.red { border: solid 1px #B50000; background-color: #FFEBEB; } +.green { border: solid 1px #DDF0DD; background-color: #EBFFEB; } +.blue { border: solid 1px #CEE2F2; background-color: #F0F5FF; } + +.progressName { + font-size: 8pt; + font-weight: bold; + color: #555555; + width: 323px; + height: 14px; + text-align: left; + white-space: nowrap; + overflow: hidden; +} +.progressBarInProgress, .progressBarComplete, .progressBarError { + font-size: 0px; + width: 0%; + height: 2px; + background-color: blue; + margin-top: 2px; +} +.progressBarComplete { + width: 100%; + background-color: green; + visibility: hidden; +} +.progressBarError { + width: 100%; + background-color: red; + visibility: hidden; +} +.progressBarStatus { + margin-top: 2px; + width: 337px; + font-size: 7pt; + font-family: Verdana; + text-align: left; + white-space: nowrap; +} + + |