This is a *fantastic* theme - thanks JD for putting together. 

There are only a couple tweaks I'd like to make for myself that I can't 
seem to figure out (CSS newbie). I think I need to adjust the following 
section from $:/themes/jd/Material/Stylesheet

   - I like the tiddler title big like it is normally in vanilla
   - I like the tiddler title vertically aligned with the buttons (this 
   seems to have the title slightly *below* the icons, causing needless 
   whitespace)
   - Don't need the floating "New Tiddler" button - though see that I can 
   make it 0px big, so I'm good there. 
   
When I try to adjust for #1 in the "font-size" line, it affects the size of 
the title and the icons - trying to change the title only. I added instead 
a line on the View side which fixes it when in view mode at least. I can't 
figure out how to not have the title fall below the icons/buttons 
vertically though.

I'm assuming this is very easy - but I've been monkeying with it for over 
an hour, so thought I'd see if an expert had an easy fix. Thanks all!

/* VIEW & EDIT FRAME */

.tc-tiddler-edit-frame .tc-tiddler-title, 
.tc-tiddler-view-frame .tc-titlebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: {{$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize}}; 
    line-height: 0;
}


/* VIEW FRAME */

.tc-tiddler-view-frame .tc-title {
    font-weight: bold;
}

.tc-tiddler-view-frame .tc-tiddler-title-icon svg {
    height: {{$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize}}; 
}


-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/095d2dd1-93a4-4a27-a053-ca371d7f6a50%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to