[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-14 Thread Mike Andyl
Cool! Thank you! To avoid conflict with MenuBar (z 850), it is better to set slightly smaller. среда, 14 июля 2021 г. в 18:34:58 UTC+3, Brian Radspinner: > Put the following code in your stylesheet: > > *.tc-tiddler-edit-frame { z-index: 1000 !important; }* > > When a tiddler goes in draft

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-14 Thread Charlie Veniot
G'day Mike, I was in a coding mood this morning. Just in case it is useful to you, check out (I started a different thread in case their are questions/ideas/comments) Code Patterns: A Tag Selector Gadget . If that's of any interest of

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-14 Thread Charlie Veniot
G'day Mike, I was in a coding mood this morning. So for fun: In case of any use to you, check this out and see what you think: Code Patterns: A Tag Selector Gadget Cheers ! On Friday, July 9, 2021 at 6:10:15 PM UTC-3 miket...@gmail.com

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-14 Thread Brian Radspinner
Put the following code in your stylesheet: *.tc-tiddler-edit-frame { z-index: 1000 !important; }* When a tiddler goes in draft mode, it will have this class automatically included. Putting the edit-frame to a z-index of 1000 should keep it above any other tiddlers in view mode with z-indexes

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-14 Thread Mike Andyl
and how can I do it? среда, 14 июля 2021 г. в 03:32:14 UTC+3, Brian Radspinner: > Try bumping up the z-index of the tiddler being edited: > > .tc-tiddler-edit-frame { z-index: 1000 !important; } > > The tiddler being edited will have a higher much higher z-index than all > the other tiddlers

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread Brian Radspinner
Try bumping up the z-index of the tiddler being edited: .tc-tiddler-edit-frame { z-index: 1000 !important; } The tiddler being edited will have a higher much higher z-index than all the other tiddlers still in view mode with z-index around 200. On Tuesday, July 13, 2021 at 3:14:44 PM UTC-7

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread Mike Andyl
"I believe z index of 1000" No, there is already 1000 in the parent element. -- Let's take a look at the other side. /* TAG SELECTOR */ .tc-block-tags-dropdown{ white-space: normal; min-width: 620px !important; } .tc-block-tags-dropdown a { display: inline-block !important;

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread TW Tones
I believe z index of 1000 or 1500 should stop this. Tones On Wednesday, 14 July 2021 at 03:07:30 UTC+10 Brian Radspinner wrote: > I don't think that simple CSS can solve this, since each tiddler frame is > given a higher z-index as you go up the story river; so no matter what you > set,

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread Brian Radspinner
I don't think that simple CSS can solve this, since each tiddler frame is given a higher z-index as you go up the story river; so no matter what you set, each child will overlap all the tiddler elements farther down the river. You may have to just size the menu to not overlap with the story

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-13 Thread Mike Andyl
https://i.imgur.com/Q1wXDdQ.jpg Turn on Sticky titles - yes /* TAG SELECTOR */ .tc-block-tags-dropdown{ white-space: normal; min-width: 620px !important; } .tc-block-tags-dropdown a {

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-12 Thread Brian Radspinner
That's interesting. Testing at TW.com and in my own TW, the menu floats above other tiddlers. Do you have any other CSS positioning for .tc-tiddler-frame, .tc-tiddler-view-frame, or .tc-tiddler-edit-frame? On Monday, July 12, 2021 at 4:43:01 PM UTC-7 miket...@gmail.com wrote: > Everything

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-12 Thread Mike Andyl
Everything would be fine, but I discovered a new problem. This tags window is covered by other entries. It can be fixed? I've experimented with z-index but to no avail. https://i.imgur.com/CZOVn6A.jpg воскресенье, 11 июля 2021 г. в 16:48:00 UTC+3, Mike Andyl: > or even overflow-y: auto; > >

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-11 Thread Mike Andyl
or even overflow-y: auto; воскресенье, 11 июля 2021 г. в 14:37:08 UTC+3, Mike Andyl: > and may be add *overflow: scroll;* :)) > воскресенье, 11 июля 2021 г. в 14:30:31 UTC+3, Mike Andyl: > >> I don't know why your post was deleted. Possibly a spam error! I also had >> this a couple of days

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-11 Thread Mike Andyl
and may be add *overflow: scroll;* :)) воскресенье, 11 июля 2021 г. в 14:30:31 UTC+3, Mike Andyl: > I don't know why your post was deleted. Possibly a spam error! I also had > this a couple of days ago :( > You wrote about CSS > > .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown { >

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-11 Thread Mike Andyl
I don't know why your post was deleted. Possibly a spam error! I also had this a couple of days ago :( You wrote about CSS .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown { position: fixed; top: 0; right: 0; bottom: 0; width: 30em; } I changed and now I really like it!

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Brian Radspinner
If you don't want the drop-down menu to move, you can use CSS to stick the menu anywhere on screen. As an example, the following code with put the menu on the right side of the screen, stretched from top to bottom with a decent fixed width. BACKUP before trying it. .tc-edit-tags

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Brian Radspinner
If you want some more room for the tags menu, and for it not to move, you can use CSS to pin the menu on-screen. The following code will pin the menu to the top, left, and bottom of the screen to let you see more entries at once. .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown {

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Brian Radspinner
Here's an option for a longer tags menu that doesn't move: use CSS to pin it to the sides of the screen... .tc-edit-tags .tc-block-dropdown.tc-block-tags-dropdown { position: fixed; top: 0; left: 0; bottom: 0; width: 20em; overflow: scroll; } On Saturday, July 10, 2021 at

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Mike Andyl
Okay, but the last problem remains. How to make *popup **tag-picker *not move after clicking on the tag, only in the vertical direction. It doesn't have to jump to a different place every time! This is how it works http://tw5magick.tiddlyspot.com/ This is very convenient when you do not need

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread David Gifford
Here is an easy way, just a simple stylesheet. https://giffmex.org/gifts/documenting.tw.html#Tag%20editor%20dropdown On Friday, July 9, 2021 at 4:10:15 PM UTC-5 miket...@gmail.com wrote: > Now the usual view is very inconvenient when you have a lot of tags and > need to scroll and scroll down

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Mike Andyl
And another useful custom CSS edit. More tags on the screen line by line in the block! .tc-block-tags-dropdown{ white-space: normal; min-width: 620px !important; } .tc-block-tags-dropdown a { display: inline-block !important; padding: 4px 4px 4px 4px !important; }

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-10 Thread Mike Andyl
To remove unnecessary tags from *tag-picker* that already exist, find two filters *nonSystemTagsFilter* & *systemTagsFilter *in $:/core/macros/tag-picker and add this to them at the end: *-[all[current]tags[]]* суббота, 10 июля 2021 г. в 01:49:47 UTC+3, TW Tones: > Miket, > > Good questions

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-09 Thread TW Tones
Miket, Good questions we should collect answers to, the fact is Tags are such a useful concept that we can "run away with them" and overuse them. These questions of yours indicate you seem to be in a common phase we all pass through with tiddlywiki. However it exposes something us "seasoned"

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-09 Thread PMario
Hi, This plugin will only help you with your issue no. 1) -m On Friday, July 9, 2021 at 11:59:40 PM UTC+2 PMario wrote: > Hi, > You could use my "Multi-column Dropdown" plugin. > https://wikilabs.github.io/editions/multicol-dropdown/ > > The plugin only changes some CSS styles. > > For an

[tw5] Re: How to make a more convenient method for selecting tags?

2021-07-09 Thread PMario
Hi, You could use my "Multi-column Dropdown" plugin. https://wikilabs.github.io/editions/multicol-dropdown/ The plugin only changes some CSS styles. For an easy way to import and update my plugins you can have a look at https://wikilabs.github.io/ and watch the video. have fun! mario *PS