1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

Best effort to fix share dropdown. Fix #228

This commit is contained in:
Thomas Tanghus 2013-10-29 21:52:05 +01:00
parent 85a16f8241
commit 5671aa5fbc

View File

@ -170,12 +170,16 @@
/* override the default margin on share dropdown */
#dropdown {
margin: 0;
margin: 0; padding: 0;
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
width: 100%;
}
#dropdown label { display: list-item; }
#dropdown input[type="text"] { width: 90%; }
#shareWithList {
width: 100%;
}
#shareWithList .cruds > label {
display: list-item;
}
/* reset box-sizing for multiSelect */
#content div.multiselect, #content div.multiselect > * { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }