diff options
author | friendica <info@friendica.com> | 2014-08-27 22:01:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-27 22:01:02 -0700 |
commit | 2d210db1b85e5893afe285fc7b32f9987f1ae565 (patch) | |
tree | 5acc6288380390c8ba21543a34e60228257ec276 /view/theme | |
parent | eb27bea794d5aff547be9722f7c058678b8cbb1d (diff) | |
download | volse-hubzilla-2d210db1b85e5893afe285fc7b32f9987f1ae565.tar.gz volse-hubzilla-2d210db1b85e5893afe285fc7b32f9987f1ae565.tar.bz2 volse-hubzilla-2d210db1b85e5893afe285fc7b32f9987f1ae565.zip |
ability to create/edit/delete custom profile field definitions - read the source. Currently the created entries aren't added to the allowed fields arrays, but this can be done by hand until that bit is made available. Only choice for input type at the moment is 'text' or a text input, not a textarea. Multiple choice will be added later.
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 209e32c52..85ab4adb8 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -371,6 +371,17 @@ aside li { clear: both; } +#profile-edit-wrapper .field label { + margin-top: 20px; + width: 175px; +} + +#profile-edit-wrapper .field input[type="text"] { + margin-top: 20px; + width: 220px; +} + + #profile-edit-links { max-width: $converse_width; padding-top: 15px; |