[tw] Re: Can I reduce the spacing between paragraphs?

2011-06-06 Thread Grant
Yup, Thanks!
However I had to reduce the line spacing to 0em... I guess NoteStorm
has somehow implemented a large spacing as standard between lines.  Is
there a place or way I can reduce that too?

On Jun 5, 11:57 am, PMario pmari...@gmail.com wrote:
 @Grant
 did it work?
 -m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Can I reduce the spacing between paragraphs?

2011-06-06 Thread Grant
Hi Axes,
In NoteStorm it does work I see now.  In part I did not understand how
your plugin worked, and in part the already large standard line
spacing of NoteStorm made it hard to recognize the results with lower
valuens entered.  Regarding the other Tiddlywiki, I think we should
not worry about it - its one I have been hacking for years and so it
probably just a one-off case.
Thanks again!
Grant

On Jun 6, 5:31 am, axs alexst...@gmail.com wrote:
 Grant, I don't quite get this: are you saying ti works in some of your TW's
 but not in others? Do you have an example tiddlywiki online that we can look
 at to help troubleshoot?

 Regards,
 axs



 Neat, what in one tiddlywiki I have the buttons do not open the box
 where I can edit the values, and in NoteStorm I can edit the
 parameters, but they dont do anything really, unless I add extra
 spaces in a list and then it looks the same as always... so I am
 clueless I guess to see how this helps.. might be my tiddlywikies...

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Can I reduce the spacing between paragraphs?

2011-06-06 Thread PMario
you can compare the shadow tiddlers

[1] http://notestormproject.tiddlyspot.com/#StyleSheetColors
[2] http://notestormproject.tiddlyspot.com/#StyleSheetLayout

with your user StyleSheet
[3] http://notestormproject.tiddlyspot.com/#StyleSheet

[1] and [2] contain the TW defaults

-m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Tabs CSS to differentiate tiddlylinkexisting and tiddlylinknonexisting?

2011-06-06 Thread Dave Gifford - http://www.giffmex.org/
Hi all

No replies posted to my other tab CSS questions, but I am not giving
up on you yet.

Is there a way to add to the StyleSheet so that when there is no
tiddler linked to from a tab, the text in the tab is one color, but if
there is a tiddler linked from the tab, the font is another color?
When I say the tab, I mean the tab itself, not the tab contents that
show the tiddler.

My reason for wanting this is a large project using tabs, and wanting
to see easily what tabs I haven't gotten to yet.

Thanks and blessings,

Dave

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Indent pre?

2011-06-06 Thread Sub
How to indent a pre box without using html?

* List item 1
* List item 2 - Code:
:{{{
Foo bar
}}}
* List item 3

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



Re: [tw] Indent pre?

2011-06-06 Thread Alex Hough
Firebug helps show how pre is formatted;

.viewer pre {
background: none repeat scroll 0 0 #CC;
border: 1px solid #FFEE88;
}
tiddlywiki.com #3 (line 116)
.viewer pre {
font-size: 1.2em;
line-height: 1.4em;
margin-left: 0.5em;
overflow: auto;
padding: 0.5em;
}


We need to change the left margin
from
margin-left: 0.5em;
to
margin-left: 2.5em;

That will shift the text left by two em - the width of 2 characters.
Add it to your StyleSheet and Bob's a Gudgeon.

ALex

On 6 June 2011 16:01, Sub subfa...@googlemail.com wrote:
 How to indent a pre box without using html?

 * List item 1
 * List item 2 - Code:
 :{{{
 Foo bar
 }}}
 * List item 3

 --
 You received this message because you are subscribed to the Google Groups 
 TiddlyWiki group.
 To post to this group, send email to tiddlywiki@googlegroups.com.
 To unsubscribe from this group, send email to 
 tiddlywiki+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/tiddlywiki?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Screwy Tab CSS

2011-06-06 Thread axs
Hi Dave, 

If I open the MainMenu tiddler in the story displayArea, everything looks 
fine. The reflow that you described happens only in the menu on the side. 
This is because you have set a fixed width of 26.5em on your #mainMenu in 
the styleSheet. This causes block elements like the tabSet to reflow if they 
don't fit.
To fix, you'll have to change the width on #mainMenu. 

Also, I noticed that if I remove the overflow:auto on your #mainMenu, then 
it fixes the problem for the current tabSet. If you plan to add more items 
to JudeTOC, then you'll run into the problem again, so it's best to increase 
the width of mainMenu. Or you could have the main menu contain links to each 
sub-TOC tiddler, instead of being a vertical tabset. This would make more 
sense to me, but it's not my call to make. 

Hope this helps. Blessings, brother!

Regards,
axs

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/S1BCUU1QbzJiODBK.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tabs CSS to differentiate tiddlylinkexisting and tiddlylinknonexisting?

2011-06-06 Thread axs
This would not be a CSS solution, but a javascript one. You will need a 
plugin that runs code right after the tabset is displayed to search each tab 
and change the style of the tabs with links in them.

I've created a preliminary plugin that does this: 
http://axs.tiddlyspot.com/#StyleTabWithLinksPlugin

To see an example:
http://axs.tiddlyspot.com/#testTiddler4

Regards,
axs

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/bkJla2wxeHpxcTBK.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Displaying selected tiddler in Sidebar

2011-06-06 Thread skye riquelme
Hi Mans

Sorry to delay in responding.you can see a copy of what I came up
with here - http://dl.dropbox.com/u/284644/Translating/Translating.html
- note that the portuguesplugin is still active...but if you click on
english (in the header) and then click on an englisg item you will be
the basic idea.

Thanks
Skye

On May 31, 4:46 pm, Måns humam...@gmail.com wrote:
 Hi Skye

 ...and a simple addition to the viewtemplate..sets a
  config.option to the tiddler title value.which the sidebar uses to
  display the same tiddler. The display also has a simple button in the
  toolbar that uses newHere to open a new tiddler, tagged with the
  english tiddler name and the tag portugueswhere the user writes
  the translation.

  If the user opens an english tiddler that already is partially
  translated...the viewtemplate shows the name of the portugues pair
  tiddler (thanks to a simple use of matchTagsPlugin).

  So, its basically running as I wantedmaybe a bit
  cumbersome.but basically functional.

 I've been thinking about your usercase - and Dave Giffords widescreen
 TW came to mind.
 He uses the MainMenu as a very wide container, and I saw a possible
 route to take...
 Your own solution appears to be somewhat more sophisticated - and
 interesting indeed.

 Would you consider to share a copy of your work in progress?
 (tiddlyspot, dropbox, tiddlyspace or ...) - I'd love so see it in
 action!

 Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.