mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
19085a1277
* change 3 set-widgets to 1 var-widget call. Add data-tags and userClass. * add new documentation and change the existing one accordingly.
36 lines
825 B
Plaintext
36 lines
825 B
Plaintext
created: 201804111739
|
|
modified: 201804111739
|
|
tags: data-tags-styles [[How to apply custom styles]] $:/tags/Stylesheet
|
|
title: Custom data-styles
|
|
type: text/vnd.tiddlywiki
|
|
|
|
[data-tiddler-title="Custom styles by title"] {
|
|
border: 1px solid blue;
|
|
}
|
|
|
|
[data-tags*="example-test"] {
|
|
border: 2px solid pink;
|
|
}
|
|
|
|
[data-tags*="example-hardlinebreaks"] .tc-tiddler-body {
|
|
word-break: normal;
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
[data-tags*="data-tags-styles"] .tc-tiddler-body {
|
|
display: block;
|
|
padding: 14px;
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
word-break: normal;
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
background-color: #f5f5f5;
|
|
border: 1px solid #cccccc;
|
|
padding: 0 3px 2px;
|
|
border-radius: 3px;
|
|
font-family: Monaco, Consolas, "Lucida Console", "DejaVu Sans Mono", monospace;
|
|
}
|
|
|