summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-30 14:08:36 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-30 14:08:36 +0200
commit63e6495e82b77baf384a478453ca37bd02430a83 (patch)
tree6af55c1f62baebe107abc3385a1022d2c771031c /core/js
parentc5fa9153ae6acfa520affdc0f7bd19e2b4531c14 (diff)
downloadnextcloud-server-63e6495e82b77baf384a478453ca37bd02430a83.tar.gz
nextcloud-server-63e6495e82b77baf384a478453ca37bd02430a83.zip
make expiration message grey, less present in dropdown
Diffstat (limited to 'core/js')
-rw-r--r--core/js/share.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js
index aab41cf76da..5763664c5de 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -364,7 +364,7 @@ OC.Share={
html += '<div id="expiration">';
html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>';
html += '<input id="expirationDate" type="text" placeholder="'+t('core', 'Expiration date')+'" style="display:none; width:90%;" />';
- html += '<div id="defaultExpireMessage">'+defaultExpireMessage+'</div>';
+ html += '<em id="defaultExpireMessage">'+defaultExpireMessage+'</em>';
html += '</div>';
dropDownEl = $(html);
dropDownEl = dropDownEl.appendTo(appendTo);