diff options
author | Kate Arzamastseva <pshns@ukr.net> | 2011-08-15 14:22:19 +0300 |
---|---|---|
committer | Kate Arzamastseva <pshns@ukr.net> | 2011-08-15 14:22:19 +0300 |
commit | 873cd06e1bda38e0decce16d6ec7d3bdaece612e (patch) | |
tree | beb03cae1bcb2b924fd6b44f6293839f14ebeafd /lib/tpl | |
parent | e9eba4b18be81444014e59c83ee6c5cf004a7ad7 (diff) | |
download | rpg-873cd06e1bda38e0decce16d6ec7d3bdaece612e.tar.gz rpg-873cd06e1bda38e0decce16d6ec7d3bdaece612e.tar.bz2 |
issue #50 styling the new uploader
Diffstat (limited to 'lib/tpl')
-rw-r--r-- | lib/tpl/default/_fileuploader.css | 91 | ||||
-rw-r--r-- | lib/tpl/default/style.ini | 2 |
2 files changed, 92 insertions, 1 deletions
diff --git a/lib/tpl/default/_fileuploader.css b/lib/tpl/default/_fileuploader.css new file mode 100644 index 000000000..07f3158a1 --- /dev/null +++ b/lib/tpl/default/_fileuploader.css @@ -0,0 +1,91 @@ +.qq-uploader { + position: relative; + width: 100%; +} + +.qq-upload-button { + display: block; + width: 115px; + padding: 7px 0; + text-align: center; + background: __background_alt__; + border: 1px solid __border__; + color: __extern__; + font-weight: bold; + margin-bottom: 5px; +} + +.qq-upload-button-hover { + background: __border__; + color: __background__; +} + +.qq-upload-button-focus { + outline: 1px dotted black; +} + +.qq-upload-drop-area { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + min-height: 70px; + z-index: 2; + background: __background_neu__; + text-align: center; +} + +.qq-upload-drop-area span { + display:block; + position:absolute; + top: 50%; + width:100%; + margin-top:-8px; + font-size:16px; +} + +.qq-upload-drop-area-active { + background: #DADADA; +} + +.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text { + margin-right: 7px; +} + +.qq-upload-spinner { + display: inline-block; + background: url("../../images/throbber.gif"); + width: 15px; + height: 15px; + vertical-align: text-bottom; +} + +.qq-upload-size,.qq-upload-cancel { + font-size:11px; +} + +.qq-upload-failed-text { + display:none; +} + +.qq-upload-fail .qq-upload-failed-text { + display:inline; +} + +.qq-upload-file { + display: block; + font-weight: bold; +} + +.qq-upload-file-hidden { + display:none; +} + +.qq-upload-cancel { + padding-left: 10px; +} + +.qq-uploader #dw__ow { + margin: 10px 0; +} diff --git a/lib/tpl/default/style.ini b/lib/tpl/default/style.ini index e12ddbf57..05914012e 100644 --- a/lib/tpl/default/style.ini +++ b/lib/tpl/default/style.ini @@ -16,7 +16,7 @@ _admin.css = screen _linkwiz.css = screen _subscription.css = screen mediamanager.css = screen -fileuploader.css = screen +_fileuploader.css = screen rtl.css = rtl print.css = print |