diff options
-rw-r--r-- | version.inc | 2 | ||||
-rw-r--r-- | view/css/widgets.css | 14 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 2 | ||||
-rwxr-xr-x | view/tpl/register.tpl | 2 |
4 files changed, 18 insertions, 2 deletions
diff --git a/version.inc b/version.inc index bd0e744d9..7c362e775 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-04-16.648 +2014-04-17.649 diff --git a/view/css/widgets.css b/view/css/widgets.css index 326dfa0a1..493c83d97 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -1,8 +1,22 @@ + .widget { padding: 8px; margin-top: 5px; } +/* Easiest way to indent the widget body - indent the entire widget and then shift the header label back to the left */ + +.widget { + margin-left: 10px; +} + +.widget h3 { + margin-left: -10px; +} + + + + /* suggest */ .suggest-widget-more { diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 0618a3612..e9620cadb 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -236,6 +236,8 @@ aside ul { aside li { margin-top: 5px; + /* in order to achieve consistent indentation cross-browser, set margin-left on the li element e.g. */ + /* margin-left: 10px; */ } /*TODO: we should use one class for all this. */ diff --git a/view/tpl/register.tpl b/view/tpl/register.tpl index 916a946d3..ed673031a 100755 --- a/view/tpl/register.tpl +++ b/view/tpl/register.tpl @@ -45,7 +45,7 @@ <input type="hidden" name="tos" value="1" /> {{/if}} - <input type="submit" name="submit" id="register-submit-button" value="{{$submit}}" /> + <input type="submit" name="submit" class="btn btn-default" id="register-submit-button" value="{{$submit}}" /> <div id="register-submit-end" class="register-field-end"></div> </form> |