tiddly-gittly / itonnote-theme

A notion like white theme, build for TiddlyGit default light experience, good for eyes in light environment.
https://tiddly-gittly.github.io/itonnote-theme/
MIT License
4 stars 1 forks source link

是否考虑把【Stylesheet-让标题与按钮分隔开来】放到主题里面? #7

Closed Zacharia2 closed 1 year ago

Zacharia2 commented 1 year ago
.tc-titlebar h2 {
    font-size: 1em;
    display: table-header-group;
    word-wrap:break-word;
    word-break:break-all;
}
.tc-tiddler-frame .tc-tiddler-controls {
    display: table-header-group;
    float: right;
    padding: 0px;
}

感觉这个效果还不错。

创建一个单独的条目存放。取名为Separate title and button

linonetwo commented 1 year ago

感觉可以,搞个开关吧

linonetwo commented 1 year ago

参考 https://github.com/tiddly-gittly/itonnote-theme/pull/6#issuecomment-1588478616

Zacharia2 commented 1 year ago
.tc-titlebar h2 {
    display: table-header-group;
    word-wrap:break-word;
    word-break:break-all;
}

发现仅有这段css代码是有用的。

Zacharia2 commented 1 year ago

done