From 08b5f787cc26dce46e94f170a63874e2428482d8 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 6 Jun 2014 13:01:24 +0200 Subject: [PATCH] app settings: display input fields at full width --- apps/files/css/files.css | 4 ---- core/css/apps.css | 9 +++++++++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 0392733f4ca..ce6d3f9aed5 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -113,10 +113,6 @@ bottom: 0; } -.app-files #app-settings input { - width: 90%; -} - #filestable tbody tr { background-color:#fff; height:40px; } #filestable tbody tr:hover, tbody tr:active { background-color: rgb(240,240,240); diff --git a/core/css/apps.css b/core/css/apps.css index ebb0c269000..f919bf09fb9 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -190,6 +190,10 @@ overflow-y: auto; } + + +/* APP-SETTINGS ---------------------------------------------------------------*/ + /* settings area */ #app-settings { position: fixed; @@ -215,6 +219,11 @@ overflow-y: auto; } +/* display input fields at full width */ +#app-settings-content input { + width: 93%; +} + .settings-button { display: block; height: 44px;