From 63e6495e82b77baf384a478453ca37bd02430a83 Mon Sep 17 00:00:00 2001
From: Jan-Christoph Borchardt <hey@jancborchardt.net>
Date: Mon, 30 Jun 2014 14:08:36 +0200
Subject: [PATCH] make expiration message grey, less present in dropdown

---
 core/js/share.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/js/share.js b/core/js/share.js
index aab41cf76d..5763664c5d 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);
-- 
GitLab