From 58a1a46ce483cdd167f7e3fc443ce9133c95d1cd Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 8 Jun 2013 17:31:13 +0100 Subject: [PATCH] Style tweaks for the field editor --- core/ui/EditTemplate.tid | 7 +++---- themes/tiddlywiki/snowwhite/base.tid | 19 +++++++++++++++++-- .../tiddlywiki/snowwhite/colourmappings.tid | 1 + themes/tiddlywiki/snowwhite/colours.tid | 1 + 4 files changed, 22 insertions(+), 6 deletions(-) diff --git a/core/ui/EditTemplate.tid b/core/ui/EditTemplate.tid index 4e4b496b2..5b351bf1e 100644 --- a/core/ui/EditTemplate.tid +++ b/core/ui/EditTemplate.tid @@ -29,11 +29,10 @@ modifier: JeremyRuston <$edit field="text"/> -<$fieldmangler> -<$fieldlist exclude="title tags text modified modifier draft.title draft.of"> -<$info type="currentField"/>: <$edit/> <$button message="tw-remove-field" class="">remove +<$fieldmangler>
<$fieldlist exclude="title tags text modified modifier draft.title draft.of">
<$info type="currentField"/>: <$edit placeholder="field value"/> <$button message="tw-remove-field" class="btn-invisible">{{$:/core/images/delete-button}}
+
-
Add a new field: <$edit tiddler="$:/NewFieldName" type="input" default=""/> <$button message="tw-add-field" param={{$:/NewFieldName}} set="$:/NewFieldName" setTo="" class="">add
+
Add a new field: <$edit tiddler="$:/NewFieldName" type="input" default="" placeholder="field name"/> <$button message="tw-add-field" param={{$:/NewFieldName}} set="$:/NewFieldName" setTo="" class="">add
diff --git a/themes/tiddlywiki/snowwhite/base.tid b/themes/tiddlywiki/snowwhite/base.tid index 029aefdd0..7ad040078 100644 --- a/themes/tiddlywiki/snowwhite/base.tid +++ b/themes/tiddlywiki/snowwhite/base.tid @@ -63,6 +63,7 @@ html { body { font-size: {{$:/themes/tiddlywiki/snowwhite/metrics##fontsize}}; line-height: {{$:/themes/tiddlywiki/snowwhite/metrics##lineheight}}; + color: {{$:/themes/tiddlywiki/snowwhite/colourmappings##foreground}}; background-color: {{$:/themes/tiddlywiki/snowwhite/colourmappings##pagebackground}}; word-wrap: break-word; } @@ -486,6 +487,14 @@ canvas.tw-edit-bitmapeditor { width: 48%; } +.tw-fieldlist > div:nth-child(odd) { + background-color: #f0f4f0; +} + +.tw-fieldlist > div:nth-child(even) { + background-color: #e0e8e0; +} + .tw-edit-field-name { display: inline-block; width: 15%; @@ -494,12 +503,18 @@ canvas.tw-edit-bitmapeditor { .tw-edit-field-value { display: inline-block; - width: 70%; + width: 75%; } .tw-edit-field-remove { display: inline-block; - width: 10%; + width: 5%; +} + +.tw-edit-field-remove svg { + height: 1em; + fill: #888; + vertical-align: middle; } .tw-edit-field-add-name { diff --git a/themes/tiddlywiki/snowwhite/colourmappings.tid b/themes/tiddlywiki/snowwhite/colourmappings.tid index 1278835eb..7bfbfffcd 100644 --- a/themes/tiddlywiki/snowwhite/colourmappings.tid +++ b/themes/tiddlywiki/snowwhite/colourmappings.tid @@ -2,6 +2,7 @@ title: $:/themes/tiddlywiki/snowwhite/colourmappings type: application/x-tiddler-dictionary tiddlerbackground: {{$:/themes/tiddlywiki/snowwhite/colours##background}} +foreground: {{$:/themes/tiddlywiki/snowwhite/colours##foreground}} pagebackground: {{$:/themes/tiddlywiki/snowwhite/colours##pagebackground}} linkbackground: {{$:/themes/tiddlywiki/snowwhite/colours##background}} linkforeground: {{$:/themes/tiddlywiki/snowwhite/colours##primary}} diff --git a/themes/tiddlywiki/snowwhite/colours.tid b/themes/tiddlywiki/snowwhite/colours.tid index 35b3e9271..fb4f653b9 100644 --- a/themes/tiddlywiki/snowwhite/colours.tid +++ b/themes/tiddlywiki/snowwhite/colours.tid @@ -3,5 +3,6 @@ type: application/x-tiddler-dictionary primary: `#5959C0` background: `#fff` +foreground: `#333` pagebackground: `#ececec` medium: `#bbb` \ No newline at end of file