diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-05-10 20:43:40 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-05-10 20:44:12 +0200 |
commit | 7bc6e869696c446f2d8a75c89b5db74de8a38960 (patch) | |
tree | 3cc60bf9cebc879c9071befecbb2f17c7f64ee9d /apps/contacts/css | |
parent | bf93b9e98ae748d8b292c5407019d9362c04178f (diff) | |
download | nextcloud-server-7bc6e869696c446f2d8a75c89b5db74de8a38960.tar.gz nextcloud-server-7bc6e869696c446f2d8a75c89b5db74de8a38960.zip |
Contacts: Fix some regressions from last commit.
Diffstat (limited to 'apps/contacts/css')
-rw-r--r-- | apps/contacts/css/contacts.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/contacts/css/contacts.css b/apps/contacts/css/contacts.css index 1dd6648c477..dfca0b37fa6 100644 --- a/apps/contacts/css/contacts.css +++ b/apps/contacts/css/contacts.css @@ -4,10 +4,11 @@ #leftcontent { top: 3.5em !important; padding: 0; margin: 0; } #rightcontent { top: 3.5em !important; padding-top: 5px; } #contacts { background: #fff; width: 20em; left: 12.5em; top: 3.7em; bottom:3em; position: fixed; overflow: auto; padding: 0; margin: 0; } +#contacts li { height: 28px; display: block; margin: 0 0 0 0; padding: 0 0 0 25px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; } +#contacts li:hover { background-color: #eee } #bottomcontrols { padding: 0; bottom:0px; height:2.8em; width: 20em; margin:0; background:#eee; border-top:1px solid #ccc; position:fixed; -moz-box-shadow: 0 -3px 3px -3px #000; -webkit-box-shadow: 0 -3px 3px -3px #000; box-shadow: 0 -3px 3px -3px #000;} #contacts_newcontact { float: left; margin: 0.2em 0 0 1em; } #chooseaddressbook { float: right; margin: 0.2em 1em 0 0; } -#leftcontent a { height: 23px; display: block; margin: 0 0 0 0; padding: 0 0 0 25px; } #actionbar { height: 30px; width: 60px; position: fixed; right: 0px; top: 4em; margin: 0 0 0 0; padding: 0 0 0 0; z-index: 1000; } #contacts_deletecard {position:relative; float:left; background:url('%webroot%/core/img/actions/delete.svg') no-repeat center; } #contacts_downloadcard {position:relative; float:left; background:url('%webroot%/core/img/actions/download.svg') no-repeat center; } |