From a4c693dd75b50424afeff7e3a8d5a535526fa278 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 30 Jun 2014 14:00:43 +0200 Subject: [PATCH 1/3] remove obsolete CSS, fix visual bug in share dialog #9255 --- apps/files/css/files.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index ecb58789f61..89130e47fd3 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -307,8 +307,10 @@ table td.filename .nametext .innernametext { /* for smaller resolutions - see mobile.css */ -table td.filename .uploadtext { font-weight:normal; margin-left:8px; } -table td.filename form { font-size:14px; margin-left:46px; height: 40px; padding-top: 10px} +table td.filename .uploadtext { + font-weight: normal; + margin-left: 8px; +} .ie8 input[type="checkbox"]{ padding: 0; From c5fa9153ae6acfa520affdc0f7bd19e2b4531c14 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 30 Jun 2014 14:08:11 +0200 Subject: [PATCH 2/3] fix expire message going out of box, fix #9280 --- core/css/share.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/css/share.css b/core/css/share.css index 314c6140d78..f6f51376f11 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -104,6 +104,7 @@ a.showCruds:hover,a.unshare:hover { opacity:1; } +#defaultExpireMessage, /* fix expire message going out of box */ .reshare { /* fix shared by text going out of box */ white-space:normal; } @@ -118,4 +119,4 @@ a.showCruds:hover,a.unshare:hover { padding-left: 12px; padding-top: 12px; color: #999; -} +} \ No newline at end of file From 63e6495e82b77baf384a478453ca37bd02430a83 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 30 Jun 2014 14:08:36 +0200 Subject: [PATCH 3/3] 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 aab41cf76da..5763664c5de 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -364,7 +364,7 @@ OC.Share={ html += '
'; html += ''; html += ''; - html += '
'+defaultExpireMessage+'
'; + html += ''+defaultExpireMessage+''; html += '
'; dropDownEl = $(html); dropDownEl = dropDownEl.appendTo(appendTo);