[tw] Re: QuickOpenTag dropdown button trouble on TiddlySpace

2010-12-21 Thread G.J.Robert


On Monday, December 20, 2010 6:40:02 PM UTC+8, PMario wrote:

  If so, I guess it's high time to tweak the default theme directly on 
  my side, or maybe I should adopt more suitable themes like yours am I 
  right ;) 
  
  I asked because I was just wondering if any workarounds can be made 
  without changing the default theme... 

 You only need to change QuickOpenTagStyles tiddler. Most of the Styles 
 are used to work with MPTW (Monkey Pirate TW) plugins. 

 I made a short test with a default theme, and found out that 

 #sidebarTabs .tabContents li a {} 

 is responsible to format the list there. If you change this, it will 
 affect the whole sidebar a definition. 
 But it has to be done anyway, if you want to use the plugin. 

 You should add you tweaks to QuickOpenTagStyles tiddler. 

 -mario 

Thanks for your suggestions. Actually, I had tried to disable the 
display:block for #sidebarTabs .tabContents li a in Firebug, but this 
would affect the line height of the link list. Yeah... so now I know that 
you can't gain ideal results without a bit of efforts by yourself... And 
fortunately, to get the similar effect to default TiddlySpace theme back is 
not as hard as I had imagined. Below is a snippet of my QuickOpenTagStyles 
tweaks:

#sidebarTabs .tabContents a.button {display:inline;}
#sidebarTabs .tabContents li a {display:inline; padding: 0 1em;} 
#sidebarTabs .tabContents li {padding: 0.3em 0;}

That is, I have made both the dropdown button and the links to be displayed 
inline instead of mutually repelling blocks. However since the li a would 
lose its padding effect, so I have to move the padding setting to the parent 
li element. Now feel free to educate me if you can't stand this novice 
practice (lol)

Then I see the padding of the dropdown a.button is getting to wide... so 
time to keep on tweaking styles... so much fun and thanks for guiding me in 
;)

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: QuickOpenTag dropdown button trouble on TiddlySpace

2010-12-20 Thread PMario
On Dec 20, 12:01 am, G.J.Robert robertus0...@gmail.com wrote:
..snip..
 correct me if I am too naive), so may I guess that the more important
 change is in your neui-em theme itself?
You are right. My neui-em theme CSS is quite different to the default
one.
I use the same IDs and classes as the default theme, but my layout
(framework) is different.
Sometimes I forget this. sry :)

 If so, I guess it's high time to tweak the default theme directly on
 my side, or maybe I should adopt more suitable themes like yours am I
 right ;)

 I asked because I was just wondering if any workarounds can be made
 without changing the default theme...

You only need to change QuickOpenTagStyles tiddler. Most of the Styles
are used to work with MPTW (Monkey Pirate TW) plugins.

I made a short test with a default theme, and found out that

#sidebarTabs .tabContents li a {}

is responsible to format the list there. If you change this, it will
affect the whole sidebar a definition.
But it has to be done anyway, if you want to use the plugin.

You should add you tweaks to QuickOpenTagStyles tiddler.

-mario

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: QuickOpenTag dropdown button trouble on TiddlySpace

2010-12-19 Thread PMario
With TiddlySpace, you can make a diff, if you select and compare 2
revision. There you can see, what I changed.
-m

On Dec 19, 1:05 pm, MilchFlasche robertus0...@gmail.com wrote:
 Hi Mario,

 Thanks for your insight. I had tried
 #sidebarTabs .tabContents a.button { display:inline;}
 but got no improvements. May I should try again!

 G.J.Robert

 On 12月18日, 下午11時58分, PMario pmari...@gmail.com wrote:

  Hi,
  I had the same problem. Have a look at my QuickOpenTagStyles [1]. If I
  remember right, some display:inline's are needed.

 http://pmario.tiddlyspace.com/#QuickOpenTagStyles

  -m

  On Dec 18, 4:27 pm, MilchFlasche robertus0...@gmail.com wrote:

   Sorry, screenshot 
   URL:http://picasaweb.google.com/lh/photo/1JrkwAMx1tNZ6_7sKzTm7g?feat=dire...

   On 12月18日, 下午11時26分, MilchFlasche robertus0...@gmail.com wrote:

Hi Folks,

I'm back on actively using TiddlyWiki server-side solutions, because
TiddlySpace is so fascinating.

I'm trying TagglyTagging functions on it, and found that the dropdown
buttons in Tags sidebar tab which are generated by
QuickOpenTagPlugin, have been displayed on the next line of its tag,
because TiddlySpace default theme has made the anchors in the
SideBarTabs to be displayed as blocks. (see my screenshot)

I've searched for CSS pseudo-element selector for adjacent sibling, to
see if this can be worked around to make those tag anchors and the
dropdown buttons to be displayed as inline elements. Unfortunately the
adjacent sibling selector + only support for elements ''after'' the
first mentioned element.

Any suggestions or ideas? Much appreciated, thanks!

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: QuickOpenTag dropdown button trouble on TiddlySpace

2010-12-19 Thread G.J.Robert
Hi Mario,

Using Firebug, I see that in addition to the inline display mode of
the dropdown button (#sidebarTabs .tabContents a.button), your
TagglyTagging linking tags before them
(#sidebarTabs .tiddlyLinkNonExisting or
#sidebarTabs .tiddlyLinkExisting) have also dropped the display:
block setting from default TiddlySpace theme. From my best CSS
knowledge, both the links and the dropdown button should be displayed
inline, so that they can be displayed side by side together (please
correct me if I am too naive), so may I guess that the more important
change is in your neui-em theme itself?

If so, I guess it's high time to tweak the default theme directly on
my side, or maybe I should adopt more suitable themes like yours am I
right ;)

I asked because I was just wondering if any workarounds can be made
without changing the default theme...

On 12月19日, 下午9時19分, PMario pmari...@gmail.com wrote:
 With TiddlySpace, you can make a diff, if you select and compare 2
 revision. There you can see, what I changed.
 -m

 On Dec 19, 1:05 pm, MilchFlasche robertus0...@gmail.com wrote:

  Hi Mario,

  Thanks for your insight. I had tried
  #sidebarTabs .tabContents a.button { display:inline;}
  but got no improvements. May I should try again!

  G.J.Robert

  On 12月18日, 下午11時58分, PMario pmari...@gmail.com wrote:

   Hi,
   I had the same problem. Have a look at my QuickOpenTagStyles [1]. If I
   remember right, some display:inline's are needed.

  http://pmario.tiddlyspace.com/#QuickOpenTagStyles

   -m

   On Dec 18, 4:27 pm, MilchFlasche robertus0...@gmail.com wrote:

Sorry, screenshot 
URL:http://picasaweb.google.com/lh/photo/1JrkwAMx1tNZ6_7sKzTm7g?feat=dire...

On 12月18日, 下午11時26分, MilchFlasche robertus0...@gmail.com wrote:

 Hi Folks,

 I'm back on actively using TiddlyWiki server-side solutions, because
 TiddlySpace is so fascinating.

 I'm trying TagglyTagging functions on it, and found that the dropdown
 buttons in Tags sidebar tab which are generated by
 QuickOpenTagPlugin, have been displayed on the next line of its tag,
 because TiddlySpace default theme has made the anchors in the
 SideBarTabs to be displayed as blocks. (see my screenshot)

 I've searched for CSS pseudo-element selector for adjacent sibling, to
 see if this can be worked around to make those tag anchors and the
 dropdown buttons to be displayed as inline elements. Unfortunately the
 adjacent sibling selector + only support for elements ''after'' the
 first mentioned element.

 Any suggestions or ideas? Much appreciated, thanks!

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: QuickOpenTag dropdown button trouble on TiddlySpace

2010-12-18 Thread MilchFlasche
Sorry, screenshot URL: 
http://picasaweb.google.com/lh/photo/1JrkwAMx1tNZ6_7sKzTm7g?feat=directlink

On 12月18日, 下午11時26分, MilchFlasche robertus0...@gmail.com wrote:
 Hi Folks,

 I'm back on actively using TiddlyWiki server-side solutions, because
 TiddlySpace is so fascinating.

 I'm trying TagglyTagging functions on it, and found that the dropdown
 buttons in Tags sidebar tab which are generated by
 QuickOpenTagPlugin, have been displayed on the next line of its tag,
 because TiddlySpace default theme has made the anchors in the
 SideBarTabs to be displayed as blocks. (see my screenshot)

 I've searched for CSS pseudo-element selector for adjacent sibling, to
 see if this can be worked around to make those tag anchors and the
 dropdown buttons to be displayed as inline elements. Unfortunately the
 adjacent sibling selector + only support for elements ''after'' the
 first mentioned element.

 Any suggestions or ideas? Much appreciated, thanks!

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: QuickOpenTag dropdown button trouble on TiddlySpace

2010-12-18 Thread PMario
Hi,
I had the same problem. Have a look at my QuickOpenTagStyles [1]. If I
remember right, some display:inline's are needed.

http://pmario.tiddlyspace.com/#QuickOpenTagStyles

-m

On Dec 18, 4:27 pm, MilchFlasche robertus0...@gmail.com wrote:
 Sorry, screenshot 
 URL:http://picasaweb.google.com/lh/photo/1JrkwAMx1tNZ6_7sKzTm7g?feat=dire...

 On 12月18日, 下午11時26分, MilchFlasche robertus0...@gmail.com wrote:

  Hi Folks,

  I'm back on actively using TiddlyWiki server-side solutions, because
  TiddlySpace is so fascinating.

  I'm trying TagglyTagging functions on it, and found that the dropdown
  buttons in Tags sidebar tab which are generated by
  QuickOpenTagPlugin, have been displayed on the next line of its tag,
  because TiddlySpace default theme has made the anchors in the
  SideBarTabs to be displayed as blocks. (see my screenshot)

  I've searched for CSS pseudo-element selector for adjacent sibling, to
  see if this can be worked around to make those tag anchors and the
  dropdown buttons to be displayed as inline elements. Unfortunately the
  adjacent sibling selector + only support for elements ''after'' the
  first mentioned element.

  Any suggestions or ideas? Much appreciated, thanks!

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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.