diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-11-17 19:11:49 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-11-17 19:11:49 +0100 |
commit | 88865e9728bee9285f4e91559108aac9f0e8438f (patch) | |
tree | f206c7af2d3d6d5c4b31df527d4d22e92d81ddb2 /apps | |
parent | 5eab1cdece0b263a64b20df70bfd1473213871a8 (diff) | |
download | nextcloud-server-88865e9728bee9285f4e91559108aac9f0e8438f.tar.gz nextcloud-server-88865e9728bee9285f4e91559108aac9f0e8438f.zip |
properly align input box items in share tab view
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/sharetabview.css | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/apps/files_sharing/css/sharetabview.css b/apps/files_sharing/css/sharetabview.css index 911ad1b4b99..13152d5f7b5 100644 --- a/apps/files_sharing/css/sharetabview.css +++ b/apps/files_sharing/css/sharetabview.css @@ -2,7 +2,10 @@ min-height: 100px; } -.shareTabView .oneline { white-space: nowrap; } +.shareTabView .oneline { + white-space: nowrap; + position: relative; +} .shareTabView .shareWithLoading { padding-left: 10px; @@ -12,7 +15,10 @@ .shareTabView .shareWithRemoteInfo, .shareTabView .clipboardButton { - padding-left: 10px; + position: absolute; + right: -7px; + top: -3px; + padding: 14px; } .shareTabView label { @@ -24,15 +30,14 @@ vertical-align: middle; } -.shareTabView input[type="text"], -.shareTabView input[type="password"] { - width: 94%; - margin-left: 0; -} .shareTabView input[type="text"].shareWithField, .shareTabView input[type="text"].emailField, -.shareTabView input[type="text"].linkText { - width: 80%; +.shareTabView input[type="text"].linkText, +.shareTabView input[type="password"] { + width: 100%; + box-sizing: border-box; + padding-right: 32px; + text-overflow: ellipsis; } .shareTabView form { |