diff options
author | marijus <mario@localhost.localdomain> | 2013-11-23 01:10:54 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-11-23 01:10:54 +0100 |
commit | adad1b75cd1fb6ef96e06d32ee5c2d89cd9e759b (patch) | |
tree | 1b99ed35d85664da50ffab9e3eff6cd313d9162a /view | |
parent | 45c10d6d0a4a971446390137676fe8c00712372b (diff) | |
download | volse-hubzilla-adad1b75cd1fb6ef96e06d32ee5c2d89cd9e759b.tar.gz volse-hubzilla-adad1b75cd1fb6ef96e06d32ee5c2d89cd9e759b.tar.bz2 volse-hubzilla-adad1b75cd1fb6ef96e06d32ee5c2d89cd9e759b.zip |
use placeholder for profile-jot-text and some minor alignment
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 7 | ||||
-rwxr-xr-x | view/tpl/jot.tpl | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index bdf1fb5fd..97f24c8df 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -54,6 +54,7 @@ a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; } input[type="text"], input[type="password"], input[type="submit"], +select, textarea { font-family: arial,freesans,sans-serif; font-size: $body_font_size; @@ -1464,7 +1465,7 @@ tr.mceLast { } #profile-jot-text:hover { - color: #000000; + color: #000000; } #profile-jot-text-loading { @@ -2545,7 +2546,7 @@ brain is weird like that */ .field label { float: left; - width: 200px; + width: 350px; } .field input, @@ -2555,7 +2556,7 @@ brain is weird like that */ .field textarea { height: 100px; } .field_help { display: block; - margin-left: 200px; + margin-left: 350px; color: #666666; } diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index ef91f45be..b9238f0c0 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -24,7 +24,7 @@ <div id="jot-pagetitle-wrap"><input name="pagetitle" id="jot-pagetitle" type="text" placeholder="{{$placeholdpagetitle}}" value="{{$pagetitle}}" class="jothidden" style="display:none" /></div> {{/if}} <div id="jot-text-wrap"> - <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" >{{if $content}}{{$content}}{{else}}{{$share}}{{/if}}</textarea> + <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" placeholder="{{$share}}">{{$content}}</textarea> </div> <div id="profile-jot-text-loading"></div> |