mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
Getting started new table layout (#6894)
* change core GettingStarted tiddler table layout * rename tc-table-no-grid to tc-table-no-border
This commit is contained in:
parent
8420f8430f
commit
d7b9e6fb02
@ -9,9 +9,10 @@ Before you start storing important information in ~TiddlyWiki it is vital to mak
|
|||||||
|
|
||||||
<div class="tc-control-panel">
|
<div class="tc-control-panel">
|
||||||
|
|
||||||
|<$link to="$:/SiteTitle"><<lingo Title/Prompt>></$link> |<$edit-text tiddler="$:/SiteTitle" default="" tag="input"/> |
|
|tc-table-no-border tc-first-col-min-width tc-first-link-nowrap|k
|
||||||
|<$link to="$:/SiteSubtitle"><<lingo Subtitle/Prompt>></$link> |<$edit-text tiddler="$:/SiteSubtitle" default="" tag="input"/> |
|
| <$link to="$:/SiteTitle"><<lingo Title/Prompt>></$link>|<$edit-text tiddler="$:/SiteTitle" default="" tag="input"/> |
|
||||||
|<$link to="$:/DefaultTiddlers"><<lingo DefaultTiddlers/Prompt>></$link> |<<lingo DefaultTiddlers/TopHint>><br> <$edit tag="textarea" tiddler="$:/DefaultTiddlers"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |
|
| <$link to="$:/SiteSubtitle"><<lingo Subtitle/Prompt>></$link>|<$edit-text tiddler="$:/SiteSubtitle" default="" tag="input"/> |
|
||||||
|
|^ <$link to="$:/DefaultTiddlers"><<lingo DefaultTiddlers/Prompt>></$link><br><<lingo DefaultTiddlers/TopHint>>|<$edit tag="textarea" tiddler="$:/DefaultTiddlers"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
See the [[control panel|$:/ControlPanel]] for more options.
|
See the [[control panel|$:/ControlPanel]] for more options.
|
||||||
|
@ -293,6 +293,10 @@ pre > code {
|
|||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Table defaults
|
||||||
|
*/
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border: 1px solid <<colour table-border>>;
|
border: 1px solid <<colour table-border>>;
|
||||||
width: auto;
|
width: auto;
|
||||||
@ -320,10 +324,40 @@ table tfoot tr td {
|
|||||||
background-color: <<colour table-footer-background>>;
|
background-color: <<colour table-footer-background>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Table utility classes
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Remove borders from table as used in eg: GettingStarted*/
|
||||||
|
.tc-table-no-border,
|
||||||
|
.tc-table-no-border th,
|
||||||
|
.tc-table-no-border td {
|
||||||
|
border: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* First column in table width will fit to text.*/
|
||||||
|
/* This rule makes most sense with tc-first-link-nowrap*/
|
||||||
|
.tc-first-col-min-width td:nth-child(1) {
|
||||||
|
width: 1%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* First link A element will not wrap */
|
||||||
|
.tc-first-link-nowrap:first-of-type a {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
CSV parser plugin
|
||||||
|
*/
|
||||||
|
|
||||||
.tc-csv-table {
|
.tc-csv-table {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Tiddler frame in story river
|
||||||
|
*/
|
||||||
|
|
||||||
.tc-tiddler-frame img,
|
.tc-tiddler-frame img,
|
||||||
.tc-tiddler-frame svg,
|
.tc-tiddler-frame svg,
|
||||||
.tc-tiddler-frame canvas,
|
.tc-tiddler-frame canvas,
|
||||||
|
Loading…
Reference in New Issue
Block a user