I have been working on a tabbed left slider menu to integrate with the new hamburger for v_5.0.10. For those interested , this may be viewed here: http://wills.tiddlyspot.com/
I have provided sample menus for the tabs incorporating a quick and dirty gTD system (but the menus are easily changed or edited.)The gTD system is fairly hands on, but is functional -- it has been designed to replicate a paper based system to the extent that tasks must be manually moved from folder to folder.I would appreciate any ideas for improvement -- also help uncovering display problems and bugs.regards
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
Hi Matabele! Fascinating and wonderful TW adaptation!
3. Heads up: on my lap, the checklist on the tasks tab goes beyond the bottom of my screen, and there is no scrolling, so I have to reduce the size of the next action and pending areas with the dragging thingy to view it all.
4. Fascinating effect in the sliders tab with the list results bordered. I wonder if you could do the same with tabs, so that the @s don't get forced below the results, especially when the results start getting long.
Hi
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/PcGZjDE4QZ0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
HiHad a look in Firefox - the scrollbars look better with the Vanilla palette, and not too bad with the Blue and Blanca palettes. I notice the colour doesn't change across the palette's -- I guess this might be tricky, especially to get things looking good on all browsers, and for all palettes. Perhaps, I can work out a way for the user to set this for their environment.The scrollbars are terrible in Opera :-(
Hi Matabele--
Everything looks fine to me. You have worked hard on this and it shows.
I think it is ready for the regular use test.
Really the only thing I could find is cosmetic. In your beautiful green theme, scrollbars turning lightblue ;-)
Birthe
On Thursday, May 8, 2014 8:25:35 AM UTC+2, Matabele wrote:HiI have uploaded a revised version: http://wills.tiddlyspot.com/I have applied fixes for the tag pills in the 'GTD' tab, and the tag pills in the Tickler folders -- also attended to several styling problems.This clears most of the outstanding issues -- I think the system is now usable (until something breaks!) I have tested this only in my environment -- please advise if there is anything that needs attending to in your environment.regards
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/PcGZjDE4QZ0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+unsubscribe@googlegroups.com.
I have uploaded a revised version: http://wills.tiddlyspot.com/
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/PcGZjDE4QZ0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
Hi
<<tabs "[!has[draft.of]tag[$:/tags/leftmenu]sort[title]]" "$:/_leftmenu 1" "$:/state/tab1">>c. Part "b" took care of sorting on the leftmenu, but I still wanted day/month tags to be displayed chronologically in tiddlers and transclusions. For that, I took advantage of your color definition. In $:/_display-panel I deleted this line
<$list filter="[is[current]tags[]sort[title]]"><$link>{{!!title||$:/_showtag}}</$link></$list><$list filter="[all[current]tags[]sort[title]]-[field:color[#89C6AF]]"><$link>{{!!title||$:/_showtag}}</$link></$list><$list filter="[all[current]tags[]has[gtid-order]field:color[#89C6AF]sort[gtid-order]]"> <$link>{{!!title||$:/_showtag}}</$link></$list>d. To really control sorting order, it's also possible to change $:/core/ui/ViewTemplate/tags, replacing the shadow contents with:
<div class="tw-tags-wrapper"><$list filter="[all[current]tags[]sort[title]]-[field:color[#89C6AF]]" template="$:/core/ui/TagTemplate" storyview="pop"/><$list filter="[all[current]tags[]field:color[#89C6AF]sort[gtid-order]]" template="$:/core/ui/TagTemplate" storyview="pop"/></div>
1. (This is a really minor point). At the bottom of the tiddler $:/_leftmenu, in this line:<<tabs "[!has[draft.of]tag[$:/tags/leftmenu]sort[title]]" "$:/_leftmenu 1" "$:/state/tab1">>
2. My minor idea: I'm always tweaking tiddlers, which meant that using "modified" as the basis for sorting contexts, days, and months wasn't working very well for me.
a. In each context, day, and month tiddler, I added a field (I called it "gtid-order") and inserted the appropriate values for chronological sorting (01 for Jan, 02 for Feb, etc.).
b. In the following places, I change the sorting filter to [sort[gtid-order]]:
- $:/_tagbar-context
- macro definition \define tagPill(tag) ($:/_leftmenu)
- macro definition \define editTags(type) ($:/_edit-tags)
c. Part "b" took care of sorting on the leftmenu, but I still wanted day/month tags to be displayed chronologically in tiddlers and transclusions. For that, I took advantage of your color definition. In $:/_display-panel I deleted this line
and replaced it with:<$list filter="[is[current]tags[]sort[title]]"><$link>{{!!title||$:/_showtag}}</$link></$list><$list filter="[all[current]tags[]sort[title]]-[field:color[#89C6AF]]"><$link>{{!!title||$:/_showtag}}</$link></$list><$list filter="[all[current]tags[]has[gtid-order]field:color[#89C6AF]sort[gtid-order]]"> <$link>{{!!title||$:/_showtag}}</$link></$list>