diff options
author | plegall <plg@piwigo.org> | 2011-08-18 15:19:03 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-08-18 15:19:03 +0000 |
commit | 27d0c89c337ee5a2281640d0fed68ed26c0a50e1 (patch) | |
tree | ad6c21054706d7d81cc9fe541107100a51c565da /admin/themes/default/theme.css | |
parent | 71848746ba06480ed82811df2373faf75e6e563f (diff) |
feature 2407 added: display upload limitations before file selection (file
maximum size, maximum dimensions, allowed file types). The maximum dimensions
are calculated for GD only (because Imagick and External ImageMagick are not
using PHP memory as far as I could find on the web).
bug 2408 fixed: change term "old style form" into "browser uploader" and
"multiple file form" into "Flash Uploader" (based on WordPress user interface)
git-svn-id: http://piwigo.org/svn/trunk@11966 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/theme.css')
-rw-r--r-- | admin/themes/default/theme.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index ad99e20ce..ff99ff8f7 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -922,6 +922,7 @@ h2:lang(en) { text-transform:capitalize; } .pluginActions {display: table-row; font-size:0.95em; color:#777;} .pluginActions DIV {display: table-cell; vertical-align: middle; line-height:18px; } .showInfo {display:block;position:absolute;top:0;right:5px;width:15px;font-style:italic;font-family:"Georgia",serif;background-color:#464646;font-size:0.9em;border-radius:10px;-moz-border-radius:10px;} +.showInfo:hover {cursor:pointer} .warning:before {content:url(icon/warning.png);vertical-align:top;} .deactivate_all {text-align:right;font-size:0.95em;} @@ -1058,4 +1059,14 @@ div.token-input-dropdown ul li.token-input-selected-dropdown-item {background-co #mainConfCheck span.property span.filter:first-child a.removeFilter {display:none;} /* can't delete the first field */ #mainConfCheck span.filter {display:block;margin-left:20px;} #mainConfCheck .transparent {opacity:0.5;filter:alpha(opacity=50);} -#mainConfCheck .order_by_is_custom {display:block;font-weight:normal;font-style:italic;margin-left:20px;}
\ No newline at end of file +#mainConfCheck .order_by_is_custom {display:block;font-weight:normal;font-style:italic;margin-left:20px;} + +/* Upload Form */ +#uploadBoxes .file {margin-bottom:5px;text-align:left;} +#uploadBoxes {margin-top:20px;} +#addUploadBox {margin-bottom:2em;} + +p#uploadWarningsSummary {text-align:left;margin-bottom:1em;font-size:90%;color:#999;} +p#uploadWarningsSummary .showInfo {position:static;display:inline;padding:1px 6px;margin-left:3px;} +p#uploadWarnings {display:none;text-align:left;margin-bottom:1em;font-size:90%;color:#999;} +p#uploadModeInfos {text-align:left;margin-top:1em;font-size:90%;color:#999;}
\ No newline at end of file |