From 5757d02b768585ad3301523d49c7e3fa7ba8b02f Mon Sep 17 00:00:00 2001 From: Bagera Date: Tue, 13 May 2014 20:02:22 +0200 Subject: [PATCH 1/2] fixes #7949 Sets height to form to avoid resizing when filename link is not shown --- apps/files/css/files.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 2aae73f8bd..6c7dd33c4e 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -243,7 +243,7 @@ table td.filename .nametext { max-width: 800px; } table td.filename .uploadtext { font-weight:normal; margin-left:8px; } -table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; } +table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; height: 50px; } .ie8 input[type="checkbox"]{ padding: 0; From 7b39704c6163bd3e39d16dfc54090c815c8a1fc7 Mon Sep 17 00:00:00 2001 From: Bagera Date: Wed, 14 May 2014 08:32:48 +0200 Subject: [PATCH 2/2] Set row height in files table Sets row height to avoid resize when name is edited --- apps/files/css/files.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 6c7dd33c4e..3dc5ef5a39 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -83,7 +83,7 @@ min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } -#filestable tbody tr { background-color:#fff; height:40px; } +#filestable tbody tr { background-color:#fff; height:51px; } #filestable tbody tr:hover, tbody tr:active { background-color: rgb(240,240,240); } @@ -243,7 +243,7 @@ table td.filename .nametext { max-width: 800px; } table td.filename .uploadtext { font-weight:normal; margin-left:8px; } -table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; height: 50px; } +table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; } .ie8 input[type="checkbox"]{ padding: 0;