2013-11-27 12:38:03 +00:00
|
|
|
title: $:/themes/tiddlywiki/vanilla/base
|
2014-09-10 08:13:21 +00:00
|
|
|
tags: [[$:/tags/Stylesheet]]
|
2013-11-27 12:38:03 +00:00
|
|
|
|
|
|
|
\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline
|
|
|
|
/*
|
|
|
|
** Start with the normalize CSS reset, and then belay some of its effects
|
|
|
|
*/
|
|
|
|
|
|
|
|
{{$:/themes/tiddlywiki/vanilla/reset}}
|
|
|
|
|
|
|
|
*, input[type="search"] {
|
|
|
|
box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2014-03-12 20:05:34 +00:00
|
|
|
html button {
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
/*
|
|
|
|
** Basic element styles
|
|
|
|
*/
|
|
|
|
|
|
|
|
html {
|
2014-07-06 15:55:51 +00:00
|
|
|
font-family: {{$:/themes/tiddlywiki/vanilla/settings/fontfamily}};
|
2014-03-12 20:05:34 +00:00
|
|
|
text-rendering: optimizeLegibility; /* Enables kerning and ligatures etc. */
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 20:30:42 +00:00
|
|
|
html:-webkit-full-screen {
|
|
|
|
background-color: <<colour page-background>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:00:57 +00:00
|
|
|
body.tc-body {
|
2014-07-06 15:55:51 +00:00
|
|
|
font-size: {{$:/themes/tiddlywiki/vanilla/metrics/fontsize}};
|
|
|
|
line-height: {{$:/themes/tiddlywiki/vanilla/metrics/lineheight}};
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour foreground>>;
|
|
|
|
background-color: <<colour page-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2014-03-22 17:32:28 +00:00
|
|
|
line-height: 1.2;
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
display: block;
|
|
|
|
padding: 14px;
|
2014-03-11 08:29:11 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2013-11-27 12:38:03 +00:00
|
|
|
word-break: normal;
|
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: pre;
|
|
|
|
white-space: pre-wrap;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour pre-background>>;
|
|
|
|
border: 1px solid <<colour pre-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 0 3px 2px;
|
2014-03-18 23:38:52 +00:00
|
|
|
border-radius: 3px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour code-foreground>>;
|
|
|
|
background-color: <<colour code-background>>;
|
|
|
|
border: 1px solid <<colour code-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
white-space: pre-wrap;
|
|
|
|
padding: 0 3px 2px;
|
2014-03-18 23:38:52 +00:00
|
|
|
border-radius: 3px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2013-12-05 16:20:37 +00:00
|
|
|
blockquote {
|
2014-02-17 12:09:10 +00:00
|
|
|
border-left: 5px solid <<colour blockquote-bar>>;
|
2013-12-05 16:20:37 +00:00
|
|
|
margin-left: 25px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
2013-12-11 13:12:56 +00:00
|
|
|
dl dt {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-muted {
|
2014-07-31 08:28:46 +00:00
|
|
|
color: <<colour muted-foreground>>;
|
|
|
|
}
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
/*
|
|
|
|
Markdown likes putting code elements inside pre elements
|
|
|
|
*/
|
|
|
|
pre > code {
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour table-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
width: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
caption-side: bottom;
|
2014-03-11 08:29:11 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table th, table td {
|
|
|
|
padding: 0 7px 0 7px;
|
2014-02-17 12:09:10 +00:00
|
|
|
border-top: 1px solid <<colour table-border>>;
|
|
|
|
border-left: 1px solid <<colour table-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table thead tr td, table th {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour table-header-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tfoot tr td {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour table-footer-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-csv-table {
|
2014-03-31 11:41:02 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame img,
|
|
|
|
.tc-tiddler-frame svg,
|
|
|
|
.tc-tiddler-frame canvas,
|
|
|
|
.tc-tiddler-frame embed,
|
|
|
|
.tc-tiddler-frame iframe {
|
2013-11-27 12:38:03 +00:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-08-31 13:44:04 +00:00
|
|
|
.tc-tiddler-body > embed,
|
|
|
|
.tc-tiddler-body > iframe {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Links
|
|
|
|
*/
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink {
|
2013-11-27 12:38:03 +00:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: normal;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour tiddler-link-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
-webkit-user-select: inherit; /* Otherwise the draggable attribute makes links impossible to select */
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists a.tc-tiddlylink {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour sidebar-tiddler-link-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists a.tc-tiddlylink:hover {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour sidebar-tiddler-link-foreground-hover>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink:hover {
|
2013-11-27 12:38:03 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-resolves {
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-shadow {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-shadow.tc-tiddlylink-resolves {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-missing {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-external {
|
2013-11-27 12:38:03 +00:00
|
|
|
text-decoration: underline;
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour external-link-foreground>>;
|
|
|
|
background-color: <<colour external-link-background>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-external:visited {
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour external-link-foreground-visited>>;
|
|
|
|
background-color: <<colour external-link-background-visited>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
a.tc-tiddlylink-external:hover {
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour external-link-foreground-hover>>;
|
|
|
|
background-color: <<colour external-link-background-hover>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Drag and drop styles
|
|
|
|
*/
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-dragger {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: relative;
|
|
|
|
z-index: -10000;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-dragger-inner {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 8px 20px;
|
|
|
|
font-size: 16.9px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 20px;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour dragger-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, 1);
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: baseline;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour dragger-background>>;
|
2014-03-18 23:38:52 +00:00
|
|
|
border-radius: 20px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-dragger-cover {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: absolute;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour page-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-dropzone {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-dropzone.tc-dragover:before {
|
2013-11-27 12:38:03 +00:00
|
|
|
z-index: 10000;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2014-08-19 12:07:57 +00:00
|
|
|
position: -webkit-sticky;
|
|
|
|
position: -moz-sticky;
|
|
|
|
position: -o-sticky;
|
|
|
|
position: -ms-sticky;
|
|
|
|
position: sticky;
|
2013-11-27 12:38:03 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2014-02-17 12:09:10 +00:00
|
|
|
background: <<colour dropzone-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
text-align: center;
|
2014-08-19 12:07:57 +00:00
|
|
|
content: "<<lingo DropMessage>>";
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Buttons
|
|
|
|
*/
|
|
|
|
|
2014-07-31 17:07:37 +00:00
|
|
|
button svg, button img {
|
2014-07-29 11:06:04 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:28:32 +00:00
|
|
|
.tc-btn-invisible {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:29:23 +00:00
|
|
|
.tc-btn-icon svg {
|
2014-01-20 11:21:12 +00:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour muted-foreground>>;
|
2014-01-20 11:21:12 +00:00
|
|
|
}
|
|
|
|
|
2014-10-11 14:26:51 +00:00
|
|
|
.tc-btn-text {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:30:12 +00:00
|
|
|
.tc-btn-big-green {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 8px;
|
2013-12-05 16:20:37 +00:00
|
|
|
margin: 4px 8px 4px 8px;
|
2014-02-17 12:09:10 +00:00
|
|
|
background: <<colour download-background>>;
|
|
|
|
color: <<colour download-foreground>>;
|
|
|
|
fill: <<colour download-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
border: none;
|
|
|
|
font-size: 1.2em;
|
|
|
|
line-height: 1.4em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists input {
|
2014-03-25 21:53:18 +00:00
|
|
|
color: <<colour foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists button {
|
2014-03-12 20:05:34 +00:00
|
|
|
color: <<colour sidebar-button-foreground>>;
|
2014-08-02 11:16:14 +00:00
|
|
|
fill: <<colour sidebar-button-foreground>>;
|
2014-03-12 20:05:34 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists button.tc-btn-mini {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour sidebar-muted-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists button.tc-btn-mini:hover {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour sidebar-muted-foreground-hover>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:47:43 +00:00
|
|
|
button svg.tc-image-button, button .tc-image-button img {
|
2013-11-29 17:11:48 +00:00
|
|
|
height: 1em;
|
2014-07-28 10:29:06 +00:00
|
|
|
width: 1em;
|
2013-11-29 17:11:48 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
/*
|
|
|
|
** Tags and missing tiddlers
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tag-list-item {
|
2014-02-06 12:48:10 +00:00
|
|
|
position: relative;
|
2013-11-27 12:38:03 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tags-wrapper {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 4px 0 14px 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-missing-tiddler-label {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-style: italic;
|
|
|
|
font-weight: normal;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 11.844px;
|
|
|
|
line-height: 14px;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
button.tc-tag-label, span.tc-tag-label {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: inline-block;
|
2014-11-02 21:22:45 +00:00
|
|
|
padding: 0.16em 0.7em;
|
2013-11-27 12:38:03 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.2em;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour tag-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: baseline;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tag-background>>;
|
2014-10-31 10:02:09 +00:00
|
|
|
border-radius: 1em;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-09-27 15:56:59 +00:00
|
|
|
.tc-untagged-separator {
|
|
|
|
width: 10em;
|
|
|
|
left: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
background: <<colour tab-divider>>;
|
|
|
|
}
|
|
|
|
|
2014-10-02 13:41:40 +00:00
|
|
|
button.tc-untagged-label {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour untagged-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tag-label svg, .tc-tag-label img {
|
2013-11-27 12:38:03 +00:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour tag-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 14:07:00 +00:00
|
|
|
.tc-tag-manager-table .tc-tag-label {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2014-11-03 22:07:00 +00:00
|
|
|
.tc-tag-manager-tag {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
/*
|
|
|
|
** Page layout
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-topbar {
|
2014-03-25 21:54:06 +00:00
|
|
|
position: fixed;
|
|
|
|
z-index: 1200;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-topbar-left {
|
2014-04-19 10:32:56 +00:00
|
|
|
left: 29px;
|
|
|
|
top: 5px;
|
2014-03-25 21:54:06 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-topbar-right {
|
2014-04-19 10:32:56 +00:00
|
|
|
top: 5px;
|
|
|
|
right: 29px;
|
2014-03-25 21:54:06 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-topbar button {
|
2014-03-25 21:54:06 +00:00
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-topbar svg {
|
2014-03-25 21:54:06 +00:00
|
|
|
fill: <<colour muted-foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-topbar button:hover svg {
|
2014-03-25 21:54:06 +00:00
|
|
|
fill: <<colour foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:27:03 +00:00
|
|
|
.tc-sidebar-header {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour sidebar-foreground>>;
|
2014-06-21 10:49:42 +00:00
|
|
|
fill: <<colour sidebar-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:13:46 +00:00
|
|
|
.tc-sidebar-header .tc-title a.tc-tiddlylink-resolves {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-header .tc-sidebar-lists p {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin-top: 3px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-header .tc-missing-tiddler-label {
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour sidebar-foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-advanced-search input {
|
2014-03-10 18:16:10 +00:00
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-search a svg {
|
2014-10-07 21:11:43 +00:00
|
|
|
width: 1.2em;
|
|
|
|
height: 1.2em;
|
|
|
|
vertical-align: middle;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-search-results {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding-top: 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin-top: 14px;
|
2014-07-28 10:29:06 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls button {
|
2014-07-28 10:29:06 +00:00
|
|
|
margin-right: 0.5em;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls a.tc-tiddlylink:hover {
|
2013-11-27 12:38:03 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls img {
|
2014-07-31 17:07:37 +00:00
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
2014-11-13 17:09:21 +00:00
|
|
|
.tc-page-controls svg,
|
|
|
|
.tc-search svg {
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour sidebar-controls-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 17:09:21 +00:00
|
|
|
.tc-page-controls button:hover svg, .tc-page-controls a:hover svg,
|
|
|
|
.tc-search button:hover svg, .tc-search a:hover svg {
|
2014-02-23 23:09:58 +00:00
|
|
|
fill: <<colour sidebar-controls-foreground-hover>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-menu-list-item {
|
2013-11-27 12:38:03 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-menu-list-count {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-menu-list-subitem {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding-left: 7px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:26:21 +00:00
|
|
|
.tc-story-river {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-07-06 15:55:51 +00:00
|
|
|
@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
|
2014-03-25 14:29:16 +00:00
|
|
|
|
2014-08-28 16:27:03 +00:00
|
|
|
.tc-sidebar-header {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 14px;
|
2014-03-26 14:11:26 +00:00
|
|
|
min-height: 32px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:26:21 +00:00
|
|
|
.tc-story-river {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: relative;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-06 15:55:51 +00:00
|
|
|
@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
|
2014-03-25 14:29:16 +00:00
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-message-box {
|
2014-03-25 14:29:16 +00:00
|
|
|
margin: 21px -21px 21px -21px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-scrollable {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: fixed;
|
2014-07-06 15:55:51 +00:00
|
|
|
top: {{$:/themes/tiddlywiki/vanilla/metrics/storytop}};
|
|
|
|
left: {{$:/themes/tiddlywiki/vanilla/metrics/storyright}};
|
2013-11-27 12:38:03 +00:00
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
margin: 0 0 0 -42px;
|
2014-04-14 17:37:09 +00:00
|
|
|
padding: 71px 0 28px 42px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:26:21 +00:00
|
|
|
.tc-story-river {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: relative;
|
2014-07-06 15:55:51 +00:00
|
|
|
left: {{$:/themes/tiddlywiki/vanilla/metrics/storyleft}};
|
|
|
|
top: {{$:/themes/tiddlywiki/vanilla/metrics/storytop}};
|
|
|
|
width: {{$:/themes/tiddlywiki/vanilla/metrics/storywidth}};
|
2014-04-09 21:19:27 +00:00
|
|
|
padding: 42px 42px 42px 42px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
2014-04-12 16:14:27 +00:00
|
|
|
|
|
|
|
<<if-no-sidebar "
|
|
|
|
|
2014-08-28 16:26:21 +00:00
|
|
|
.tc-story-river {
|
2014-04-12 16:14:27 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
">>
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media print {
|
2014-07-09 14:22:53 +00:00
|
|
|
|
2014-08-28 18:00:57 +00:00
|
|
|
body.tc-body {
|
2014-07-09 14:22:53 +00:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-header, .tc-topbar {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:26:21 +00:00
|
|
|
.tc-story-river {
|
2014-07-09 16:00:41 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-story-river .tc-tiddler-frame {
|
2014-07-09 16:00:41 +00:00
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
padding: 28px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Tiddler styles
|
|
|
|
*/
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin-bottom: 28px;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tiddler-background>>;
|
2014-02-22 11:00:51 +00:00
|
|
|
border: 1px solid <<colour tiddler-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-info {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 14px 42px 14px 42px;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tiddler-info-background>>;
|
|
|
|
border-top: 1px solid <<colour tiddler-info-border>>;
|
|
|
|
border-bottom: 1px solid <<colour tiddler-info-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-info p {
|
2014-08-02 11:16:14 +00:00
|
|
|
margin-top: 3px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tiddler-info .tc-tab-buttons button.tc-tab-selected {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tiddler-info-tab-background>>;
|
|
|
|
border-bottom: 1px solid <<colour tiddler-info-tab-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-view-field-table {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-view-field-name {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 1%; /* Makes this column be as narrow as possible */
|
|
|
|
text-align: right;
|
|
|
|
font-style: italic;
|
2014-06-21 10:17:04 +00:00
|
|
|
font-weight: 200;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-view-field-value {
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 15:55:51 +00:00
|
|
|
@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 14px 14px 14px 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-info {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 0 -14px 0 -14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-06 15:55:51 +00:00
|
|
|
@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 28px 42px 42px 42px;
|
2014-07-06 15:55:51 +00:00
|
|
|
width: {{$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth}};
|
2014-11-26 11:22:04 +00:00
|
|
|
border-radius: 2px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-12 16:14:27 +00:00
|
|
|
<<if-no-sidebar "
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame {
|
2014-04-14 17:37:09 +00:00
|
|
|
width: 100%;
|
2014-04-12 16:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
">>
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-info {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 0 -42px 0 -42px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-site-title,
|
2014-08-28 16:21:40 +00:00
|
|
|
.tc-titlebar {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: 300;
|
|
|
|
font-size: 2.35em;
|
|
|
|
line-height: 1.2em;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour tiddler-title-foreground>>;
|
2014-06-15 07:37:58 +00:00
|
|
|
margin: 0;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 09:43:01 +00:00
|
|
|
.tc-tiddler-title-icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-system-title-prefix {
|
2014-03-13 17:40:53 +00:00
|
|
|
color: <<colour muted-foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-11-08 17:51:35 +00:00
|
|
|
.tc-titlebar h2 {
|
|
|
|
font-size: 1em;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:21:40 +00:00
|
|
|
.tc-titlebar img {
|
2013-11-27 12:38:03 +00:00
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-subtitle {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-size: 0.9em;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour tiddler-subtitle-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-missing .tc-title {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-style: italic;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame .tc-tiddler-controls {
|
2013-11-27 12:38:03 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls .tc-drop-down {
|
2014-07-28 10:29:06 +00:00
|
|
|
font-size: 0.6em;
|
|
|
|
}
|
|
|
|
|
2014-11-21 17:07:03 +00:00
|
|
|
.tc-tiddler-controls .tc-drop-down .tc-drop-down {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
2014-11-27 23:03:26 +00:00
|
|
|
.tc-tiddler-controls > span > button {
|
2013-11-27 12:38:03 +00:00
|
|
|
vertical-align: baseline;
|
2014-11-23 16:32:29 +00:00
|
|
|
margin-left:5px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg, .tc-tiddler-controls button img {
|
2013-11-27 12:38:03 +00:00
|
|
|
height: 0.75em;
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour tiddler-controls-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tiddler-controls button.tc-selected svg {
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour tiddler-controls-foreground-selected>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button.tc-btn-invisible:hover svg {
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour tiddler-controls-foreground-hover>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media print {
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-help { /* Help prompts within tiddler template */
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour muted-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
margin-top: 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-help a.tc-tiddlylink {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour very-muted-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame input.tc-edit-texteditor, .tc-tiddler-frame textarea.tc-edit-texteditor {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 100%;
|
|
|
|
padding: 3px 3px 3px 3px;
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour tiddler-editor-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
line-height: 1.3em;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 4px 0 4px 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-tiddler-frame .tc-binary-warning {
|
2014-05-02 08:43:39 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 5em;
|
|
|
|
text-align: center;
|
|
|
|
padding: 3em 3em 6em 3em;
|
|
|
|
background: <<colour alert-background>>;
|
|
|
|
border: 1px solid <<colour alert-border>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-frame input.tc-edit-texteditor {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tiddler-editor-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
canvas.tc-edit-bitmapeditor {
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 6px solid <<colour tiddler-editor-border-image>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
cursor: crosshair;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-bitmapeditor-width {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-bitmapeditor-height {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-09-10 20:56:43 +00:00
|
|
|
.tc-tiddler-frame .tc-tiddler-body {
|
2014-10-22 07:32:36 +00:00
|
|
|
font-size: {{$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize}};
|
|
|
|
line-height: {{$:/themes/tiddlywiki/vanilla/metrics/bodylineheight}};
|
2014-09-10 20:56:43 +00:00
|
|
|
}
|
|
|
|
|
2014-10-10 19:32:12 +00:00
|
|
|
.tc-titlebar, .tc-tiddler-edit-title {
|
2014-10-05 11:44:06 +00:00
|
|
|
overflow: hidden; /* https://github.com/Jermolene/TiddlyWiki5/issues/282 */
|
|
|
|
}
|
|
|
|
|
2014-02-23 17:54:38 +00:00
|
|
|
/*
|
|
|
|
** Toolbar buttons
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls svg.tc-image-new-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-new-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls svg.tc-image-options-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-options-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-page-controls svg.tc-image-save-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-save-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg.tc-image-info-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-info-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg.tc-image-edit-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-edit-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg.tc-image-close-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-close-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg.tc-image-delete-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-delete-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg.tc-image-cancel-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-cancel-button>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-controls button svg.tc-image-done-button {
|
2014-02-23 17:54:38 +00:00
|
|
|
fill: <<colour toolbar-done-button>>;
|
|
|
|
}
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
/*
|
|
|
|
** Tiddler edit mode
|
|
|
|
*/
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-edit-frame em.tc-edit {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour muted-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-type-dropdown a.tc-tiddlylink-missing {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-tags {
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour tiddler-editor-border>>;
|
2013-11-30 10:55:45 +00:00
|
|
|
padding: 4px 8px 4px 8px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-add-tag {
|
2013-11-30 10:55:45 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-edit-add-tag .tc-add-tag-name input {
|
2013-11-30 10:55:45 +00:00
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-edit-tags .tc-tag-label {
|
2013-11-30 10:55:45 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-tags-list {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 14px 0 14px 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-remove-tag-button {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding-left: 4px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-preview {
|
2013-11-27 12:38:03 +00:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-preview-preview {
|
2013-11-27 12:38:03 +00:00
|
|
|
float: right;
|
|
|
|
width: 48%;
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour tiddler-editor-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 4px 3px 3px 3px;
|
|
|
|
padding: 3px 3px 3px 3px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:35 +00:00
|
|
|
.tc-tiddler-preview-edit {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 48%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-fields {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-fields table, .tc-edit-fields tr, .tc-edit-fields td {
|
2013-11-27 12:38:03 +00:00
|
|
|
border: none;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-fields > tbody > .tc-edit-field:nth-child(odd) {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tiddler-editor-fields-odd>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-fields > tbody > .tc-edit-field:nth-child(even) {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tiddler-editor-fields-even>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-field-name {
|
2013-11-27 12:38:03 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-field-value input {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-field-remove {
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-field-remove svg {
|
2013-11-27 12:38:03 +00:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour muted-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-field-add-name {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: inline-block;
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
|
2014-11-06 18:24:33 +00:00
|
|
|
.tc-edit-field-add-value {
|
|
|
|
display: inline-block;
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:47:21 +00:00
|
|
|
.tc-edit-field-add-button {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: inline-block;
|
|
|
|
width: 10%;
|
|
|
|
}
|
|
|
|
|
2014-10-06 08:18:29 +00:00
|
|
|
/*
|
|
|
|
** Storyview Classes
|
|
|
|
*/
|
|
|
|
|
|
|
|
.tc-storyview-zoomin-tiddler {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
width: calc(100% - 84px);
|
|
|
|
}
|
|
|
|
|
2013-11-27 12:38:03 +00:00
|
|
|
/*
|
|
|
|
** Dropdowns
|
|
|
|
*/
|
|
|
|
|
2014-08-28 21:22:40 +00:00
|
|
|
.tc-btn-dropdown {
|
2014-07-17 17:39:54 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2014-08-28 21:22:40 +00:00
|
|
|
.tc-btn-dropdown svg, .tc-btn-dropdown img {
|
2013-11-27 12:38:03 +00:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour muted-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down-wrapper {
|
2014-08-09 12:12:23 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down {
|
2014-11-27 23:03:26 +00:00
|
|
|
min-width: 380px;
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour dropdown-border>>;
|
|
|
|
background-color: <<colour dropdown-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 7px 0 7px 0;
|
|
|
|
margin: 4px 0 0 0;
|
|
|
|
white-space: nowrap;
|
2014-07-31 17:07:37 +00:00
|
|
|
text-shadow: none;
|
|
|
|
line-height: 1.4;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 17:07:03 +00:00
|
|
|
.tc-drop-down .tc-drop-down {
|
|
|
|
margin-left: 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down button svg, .tc-drop-down a svg {
|
2014-07-28 10:29:06 +00:00
|
|
|
fill: <<colour foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down button.tc-btn-invisible:hover svg {
|
2014-07-28 10:29:06 +00:00
|
|
|
fill: <<colour foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down p {
|
2013-12-30 12:38:45 +00:00
|
|
|
padding: 0 14px 0 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down svg {
|
2014-08-02 10:58:55 +00:00
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down img {
|
2014-08-02 10:58:55 +00:00
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
2014-10-29 12:15:32 +00:00
|
|
|
.tc-drop-down-language-chooser img {
|
|
|
|
width: 2em;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down a, .tc-drop-down button {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: block;
|
|
|
|
padding: 0 14px 0 14px;
|
2014-07-28 10:29:06 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
2014-07-30 21:25:52 +00:00
|
|
|
color: <<colour foreground>>;
|
2014-07-31 17:07:37 +00:00
|
|
|
line-height: 1.4;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-drop-down .tc-file-input-wrapper {
|
2014-08-02 20:37:46 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-drop-down .tc-file-input-wrapper button {
|
2014-08-02 20:37:46 +00:00
|
|
|
color: <<colour foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-drop-down a:hover, .tc-drop-down button:hover, .tc-drop-down .tc-file-input-wrapper:hover button {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour tiddler-link-background>>;
|
|
|
|
background-color: <<colour tiddler-link-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-drop-down .tc-tab-buttons button {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour dropdown-tab-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-drop-down .tc-tab-buttons button.tc-tab-selected {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour dropdown-tab-background-selected>>;
|
|
|
|
border-bottom: 1px solid <<colour dropdown-tab-background-selected>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down-bullet {
|
2014-08-01 21:07:07 +00:00
|
|
|
display: inline-block;
|
|
|
|
width: 0.5em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-drop-down .tc-tab-contents a {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 0 0.5em 0 0.5em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-block-dropdown-wrapper {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-block-dropdown {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: absolute;
|
2014-11-27 23:03:26 +00:00
|
|
|
min-width: 220px;
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour dropdown-border>>;
|
|
|
|
background-color: <<colour dropdown-background>>;
|
2014-09-03 13:08:51 +00:00
|
|
|
padding: 7px 0;
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 4px 0 0 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-block-dropdown a {
|
2013-11-27 12:38:03 +00:00
|
|
|
display: block;
|
|
|
|
padding: 4px 14px 4px 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-drop-down .tc-dropdown-item,
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-block-dropdown .tc-dropdown-item {
|
2014-06-06 08:32:45 +00:00
|
|
|
padding: 4px 14px 4px 7px;
|
|
|
|
color: <<colour muted-foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-block-dropdown a:hover {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour tiddler-link-background>>;
|
|
|
|
background-color: <<colour tiddler-link-foreground>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Modals
|
|
|
|
*/
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-wrapper {
|
2014-05-26 21:33:42 +00:00
|
|
|
position: fixed;
|
|
|
|
overflow: auto;
|
|
|
|
overflow-y: scroll;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-backdrop {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour modal-backdrop>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal {
|
2013-11-27 12:38:03 +00:00
|
|
|
z-index: 1100;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour modal-background>>;
|
|
|
|
border: 1px solid <<colour modal-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 55em) {
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal {
|
2013-12-24 09:44:40 +00:00
|
|
|
position: fixed;
|
2013-11-27 12:38:03 +00:00
|
|
|
top: 1em;
|
|
|
|
left: 1em;
|
|
|
|
right: 1em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-body {
|
2013-11-27 12:38:03 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 400px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 55em) {
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal {
|
2014-05-26 21:33:42 +00:00
|
|
|
position: relative;
|
|
|
|
width: 50%;
|
|
|
|
margin: 30px auto;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-header {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 9px 15px;
|
2014-02-17 12:09:10 +00:00
|
|
|
border-bottom: 1px solid <<colour modal-header-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-header h3 {
|
2013-11-27 12:38:03 +00:00
|
|
|
margin: 0;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-body {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:34:02 +00:00
|
|
|
.tc-modal-footer {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 14px 15px 15px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
text-align: right;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour modal-footer-background>>;
|
|
|
|
border-top: 1px solid <<colour modal-footer-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Notifications
|
|
|
|
*/
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
.tc-notification {
|
2013-11-27 12:38:03 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 14px;
|
2014-04-07 18:01:08 +00:00
|
|
|
right: 42px;
|
2014-11-23 17:10:44 +00:00
|
|
|
z-index: 1300;
|
2013-11-27 12:38:03 +00:00
|
|
|
max-width: 280px;
|
|
|
|
padding: 0 14px 0 14px;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour notification-background>>;
|
|
|
|
border: 1px solid <<colour notification-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Tabs
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-set.tc-vertical {
|
2014-05-27 18:06:27 +00:00
|
|
|
display: -webkit-flex;
|
2014-05-12 07:41:47 +00:00
|
|
|
display: flex;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-buttons {
|
2013-11-27 12:38:03 +00:00
|
|
|
font-size: 0.85em;
|
|
|
|
padding-top: 1em;
|
2014-09-27 09:13:36 +00:00
|
|
|
margin-bottom: -2px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-buttons.tc-vertical {
|
2014-05-14 18:37:37 +00:00
|
|
|
z-index: 100;
|
2014-05-12 07:41:47 +00:00
|
|
|
display: block;
|
|
|
|
padding-top: 14px;
|
2014-05-11 17:47:14 +00:00
|
|
|
vertical-align: top;
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: inherit;
|
|
|
|
margin-right: -1px;
|
2014-05-12 07:41:47 +00:00
|
|
|
max-width: 33%;
|
2014-05-27 18:06:27 +00:00
|
|
|
-webkit-flex: 0 0 auto;
|
2014-05-12 07:41:47 +00:00
|
|
|
flex: 0 0 auto;
|
2014-05-11 17:47:14 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-buttons button.tc-tab-selected {
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour tab-foreground-selected>>;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tab-background-selected>>;
|
|
|
|
border-left: 1px solid <<colour tab-border-selected>>;
|
|
|
|
border-top: 1px solid <<colour tab-border-selected>>;
|
|
|
|
border-right: 1px solid <<colour tab-border-selected>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-buttons button {
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour tab-foreground>>;
|
2014-05-14 18:37:37 +00:00
|
|
|
padding: 3px 5px 3px 5px;
|
2014-02-23 17:19:58 +00:00
|
|
|
font-weight: 300;
|
|
|
|
border: none;
|
|
|
|
background: inherit;
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour tab-background>>;
|
|
|
|
border-left: 1px solid <<colour tab-border>>;
|
|
|
|
border-top: 1px solid <<colour tab-border>>;
|
|
|
|
border-right: 1px solid <<colour tab-border>>;
|
2014-11-26 11:22:04 +00:00
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-top-right-radius: 2px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-buttons.tc-vertical button {
|
2014-05-11 17:47:14 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 3px;
|
|
|
|
text-align: right;
|
|
|
|
background-color: <<colour tab-background>>;
|
|
|
|
border-left: 1px solid <<colour tab-border>>;
|
|
|
|
border-bottom: 1px solid <<colour tab-border>>;
|
|
|
|
border-right: none;
|
2014-11-26 11:22:04 +00:00
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
2014-05-11 17:47:14 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-buttons.tc-vertical button.tc-tab-selected {
|
2014-05-11 17:47:14 +00:00
|
|
|
background-color: <<colour tab-background-selected>>;
|
|
|
|
border-right: 1px solid <<colour tab-background-selected>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-divider {
|
2014-02-17 12:09:10 +00:00
|
|
|
border-top: 1px solid <<colour tab-divider>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-divider.tc-vertical {
|
2014-05-11 17:47:14 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-content {
|
2014-06-21 10:17:04 +00:00
|
|
|
margin-top: 14px;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-tab-content.tc-vertical {
|
2014-05-11 17:47:14 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2014-05-12 07:41:47 +00:00
|
|
|
padding-top: 0;
|
2014-05-11 17:47:14 +00:00
|
|
|
padding-left: 14px;
|
|
|
|
border-left: 1px solid <<colour tab-border>>;
|
2014-08-13 16:06:18 +00:00
|
|
|
-webkit-flex: 1 0 70%;
|
|
|
|
flex: 1 0 70%;
|
2014-04-09 21:19:27 +00:00
|
|
|
}
|
|
|
|
|
2014-11-26 15:39:10 +00:00
|
|
|
.tc-sidebar-lists .tc-tab-buttons {
|
|
|
|
margin-bottom: -1px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour sidebar-tab-background-selected>>;
|
2014-02-23 17:19:58 +00:00
|
|
|
color: <<colour sidebar-tab-foreground-selected>>;
|
|
|
|
border-left: 1px solid <<colour sidebar-tab-border-selected>>;
|
|
|
|
border-top: 1px solid <<colour sidebar-tab-border-selected>>;
|
|
|
|
border-right: 1px solid <<colour sidebar-tab-border-selected>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists .tc-tab-buttons button {
|
2014-02-23 17:19:58 +00:00
|
|
|
background-color: <<colour sidebar-tab-background>>;
|
|
|
|
color: <<colour sidebar-tab-foreground>>;
|
|
|
|
border-left: 1px solid <<colour sidebar-tab-border>>;
|
|
|
|
border-top: 1px solid <<colour sidebar-tab-border>>;
|
|
|
|
border-right: 1px solid <<colour sidebar-tab-border>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists .tc-tab-divider {
|
2014-02-23 17:19:58 +00:00
|
|
|
border-top: 1px solid <<colour sidebar-tab-divider>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-more-sidebar .tc-tab-buttons button {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour sidebar-tab-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
border-top: none;
|
|
|
|
border-left: none;
|
|
|
|
border-bottom: none;
|
|
|
|
border-right: 1px solid #ccc;
|
2014-05-11 17:47:14 +00:00
|
|
|
margin-bottom: inherit;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-more-sidebar .tc-tab-buttons button.tc-tab-selected {
|
2014-02-17 12:09:10 +00:00
|
|
|
background-color: <<colour sidebar-tab-background-selected>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Alerts
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-alerts {
|
2014-02-14 07:53:41 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2014-02-15 17:36:49 +00:00
|
|
|
max-width: 500px;
|
2014-02-14 07:53:41 +00:00
|
|
|
z-index: 20000;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-alert {
|
2014-02-14 07:53:41 +00:00
|
|
|
position: relative;
|
|
|
|
margin: 28px;
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 14px 14px 14px 14px;
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 2px solid <<colour alert-border>>;
|
|
|
|
background-color: <<colour alert-background>>;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-alert-toolbar {
|
2014-02-14 07:53:41 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 14px;
|
|
|
|
right: 14px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-alert-toolbar svg {
|
2014-02-17 12:09:10 +00:00
|
|
|
fill: <<colour alert-muted-foreground>>;
|
2014-02-15 17:36:49 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-alert-subtitle {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour alert-muted-foreground>>;
|
2014-02-14 07:53:41 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-alert-highlight {
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour alert-highlight>>;
|
2014-02-14 10:29:26 +00:00
|
|
|
}
|
2014-02-14 07:53:41 +00:00
|
|
|
|
2014-08-28 18:53:02 +00:00
|
|
|
.tc-static-alert {
|
2013-11-29 22:44:16 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:53:02 +00:00
|
|
|
.tc-static-alert-inner {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 0 2px 2px 42px;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour static-alert-foreground>>;
|
2013-11-29 22:44:16 +00:00
|
|
|
position: absolute;
|
2013-11-27 12:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Control panel
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-control-panel td {
|
2013-11-27 12:38:03 +00:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:08:31 +00:00
|
|
|
.tc-control-panel table, .tc-control-panel table input, .tc-control-panel table textarea {
|
2013-11-27 12:38:03 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2013-11-27 21:30:11 +00:00
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-plugin-info {
|
2014-08-08 16:19:48 +00:00
|
|
|
display: block;
|
2014-08-08 09:01:21 +00:00
|
|
|
border: 1px solid <<colour muted-foreground>>;
|
2014-08-09 10:54:07 +00:00
|
|
|
background-colour: <<colour background>>;
|
2014-08-08 09:01:21 +00:00
|
|
|
margin: 1em 0 1em 0;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-plugin-info-disabled {
|
2014-08-15 20:10:40 +00:00
|
|
|
background: -webkit-repeating-linear-gradient(45deg, #ff0, #ff0 10px, #eee 10px, #eee 20px);
|
|
|
|
background: repeating-linear-gradient(45deg, #ff0, #ff0 10px, #eee 10px, #eee 20px);
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-plugin-info-disabled:hover {
|
2014-08-15 20:10:40 +00:00
|
|
|
background: -webkit-repeating-linear-gradient(45deg, #aa0, #aa0 10px, #888 10px, #888 20px);
|
|
|
|
background: repeating-linear-gradient(45deg, #aa0, #aa0 10px, #888 10px, #888 20px);
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
a.tc-tiddlylink.tc-plugin-info:hover {
|
2014-08-09 10:54:07 +00:00
|
|
|
text-decoration: none;
|
|
|
|
background-color: <<colour primary>>;
|
|
|
|
color: <<colour background>>;
|
2014-11-14 09:46:24 +00:00
|
|
|
fill: <<colour foreground>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.tc-tiddlylink.tc-plugin-info:hover svg {
|
|
|
|
fill: <<colour foreground>>;
|
2014-08-09 10:54:07 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-plugin-info-chunk {
|
2014-08-08 16:19:48 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2014-11-14 09:46:24 +00:00
|
|
|
a.tc-plugin-info img, a.tc-plugin-info svg {
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
fill: <<colour muted-foreground>>;
|
2014-08-08 09:01:21 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-plugin-info-dropdown {
|
2014-08-09 10:54:07 +00:00
|
|
|
border: 1px solid <<colour muted-foreground>>;
|
2014-08-16 13:44:46 +00:00
|
|
|
padding: 1em 1em 1em 1em;
|
2014-08-09 10:54:07 +00:00
|
|
|
margin-top: -1em;
|
|
|
|
}
|
|
|
|
|
2013-11-27 21:30:11 +00:00
|
|
|
/*
|
|
|
|
** Message boxes
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:13:21 +00:00
|
|
|
.tc-message-box {
|
2014-02-17 12:09:10 +00:00
|
|
|
border: 1px solid <<colour message-border>>;
|
|
|
|
background: <<colour message-background>>;
|
2013-11-27 21:30:11 +00:00
|
|
|
padding: 0px 21px 0px 21px;
|
2013-11-28 07:41:28 +00:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
2014-02-17 12:09:10 +00:00
|
|
|
color: <<colour message-foreground>>;
|
2013-11-27 21:30:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-10 20:56:43 +00:00
|
|
|
/*
|
|
|
|
** Pictures
|
|
|
|
*/
|
|
|
|
|
|
|
|
.tc-bordered-image {
|
|
|
|
border: 1px solid <<colour muted-foreground>>;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Floats
|
|
|
|
*/
|
|
|
|
|
|
|
|
.tc-float-right {
|
2013-11-27 21:30:11 +00:00
|
|
|
float: right;
|
|
|
|
}
|
2014-02-18 13:59:11 +00:00
|
|
|
|
2014-02-20 10:00:38 +00:00
|
|
|
/*
|
|
|
|
** Chooser
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-chooser {
|
2014-02-20 10:00:38 +00:00
|
|
|
border: 1px solid <<colour table-border>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-chooser-item {
|
2014-02-20 10:00:38 +00:00
|
|
|
border: 8px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-chooser-item a.tc-tiddlylink {
|
2014-02-20 10:00:38 +00:00
|
|
|
display: block;
|
2014-03-05 04:15:53 +00:00
|
|
|
text-decoration: none;
|
2014-02-20 10:00:38 +00:00
|
|
|
color: <<colour tiddler-link-foreground>>;
|
|
|
|
background-color: <<colour tiddler-link-background>>;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-chooser-item a.tc-tiddlylink:hover {
|
2014-02-20 10:00:38 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: <<colour tiddler-link-background>>;
|
|
|
|
background-color: <<colour tiddler-link-foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-02-18 13:59:11 +00:00
|
|
|
/*
|
|
|
|
** Palette swatches
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-swatches-horiz {
|
2014-02-18 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-swatches-horiz .tc-swatch {
|
2014-02-18 13:59:11 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-swatch {
|
2014-02-18 13:59:11 +00:00
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
margin: 4px;
|
|
|
|
border: 1px solid #000;
|
|
|
|
}
|
2014-03-25 14:29:16 +00:00
|
|
|
|
2014-06-21 10:17:04 +00:00
|
|
|
/*
|
|
|
|
** Table of contents
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-sidebar-lists .tc-table-of-contents {
|
2014-06-21 10:17:04 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2014-03-25 14:29:16 +00:00
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents button {
|
2014-08-02 21:49:30 +00:00
|
|
|
color: <<colour sidebar-foreground>>;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents svg {
|
2014-06-21 10:49:42 +00:00
|
|
|
width: 0.7em;
|
|
|
|
height: 0.7em;
|
|
|
|
vertical-align: middle;
|
2014-08-02 21:49:30 +00:00
|
|
|
fill: <<colour sidebar-foreground>>;
|
2014-06-21 10:49:42 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents ol {
|
2014-06-21 10:17:04 +00:00
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents ol ol {
|
2014-06-21 10:17:04 +00:00
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-size: 1.0em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li a {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li li {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-size: 0.95em;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li li a {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li li li {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-size: 0.95em;
|
|
|
|
font-weight: 200;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li li li a {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-table-of-contents li li li li {
|
2014-06-21 10:17:04 +00:00
|
|
|
font-size: 0.95em;
|
|
|
|
font-weight: 200;
|
|
|
|
}
|
2014-07-30 15:46:13 +00:00
|
|
|
|
2014-11-13 21:39:28 +00:00
|
|
|
.tc-tabbed-table-of-contents {
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents {
|
|
|
|
z-index: 100;
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 1em;
|
|
|
|
max-width: 50%;
|
|
|
|
-webkit-flex: 0 0 auto;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
background: <<colour tab-background>>;
|
|
|
|
border-left: 1px solid <<colour tab-border>>;
|
|
|
|
border-top: 1px solid <<colour tab-border>>;
|
|
|
|
border-bottom: 1px solid <<colour tab-border>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a,
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a {
|
|
|
|
display: block;
|
|
|
|
padding: 0.12em 1em 0.12em 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a {
|
|
|
|
border-top: 1px solid <<colour tab-background>>;
|
|
|
|
border-left: 1px solid <<colour tab-background>>;
|
|
|
|
border-bottom: 1px solid <<colour tab-background>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
border-top: 1px solid <<colour tab-border>>;
|
|
|
|
border-left: 1px solid <<colour tab-border>>;
|
|
|
|
border-bottom: 1px solid <<colour tab-border>>;
|
|
|
|
background: <<colour tab-border>>;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a {
|
|
|
|
border-top: 1px solid <<colour tab-border>>;
|
|
|
|
border-left: 1px solid <<colour tab-border>>;
|
|
|
|
border-bottom: 1px solid <<colour tab-border>>;
|
|
|
|
background: <<colour background>>;
|
|
|
|
margin-right: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tc-tabbed-table-of-contents .tc-tabbed-table-of-contents-content {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
padding-left: 1.5em;
|
2014-11-13 21:49:19 +00:00
|
|
|
padding-right: 1.5em;
|
2014-11-13 21:39:28 +00:00
|
|
|
border: 1px solid <<colour tab-border>>;
|
|
|
|
-webkit-flex: 1 0 50%;
|
|
|
|
flex: 1 0 50%;
|
|
|
|
}
|
|
|
|
|
2014-07-30 15:46:13 +00:00
|
|
|
/*
|
|
|
|
** Dirty indicator
|
|
|
|
*/
|
|
|
|
|
2014-08-28 17:21:08 +00:00
|
|
|
body.tc-dirty span.tc-dirty-indicator, body.tc-dirty span.tc-dirty-indicator svg {
|
2014-07-30 15:46:13 +00:00
|
|
|
fill: <<colour dirty-indicator>>;
|
2014-07-31 07:07:31 +00:00
|
|
|
color: <<colour dirty-indicator>>;
|
2014-07-30 15:46:13 +00:00
|
|
|
}
|
2014-08-02 10:59:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
** File inputs
|
|
|
|
*/
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-file-input-wrapper {
|
2014-08-02 10:59:07 +00:00
|
|
|
position: relative;
|
2014-08-02 11:05:01 +00:00
|
|
|
overflow: hidden;
|
2014-08-02 11:16:14 +00:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2014-08-02 10:59:07 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 18:41:29 +00:00
|
|
|
.tc-file-input-wrapper input[type=file] {
|
2014-08-02 10:59:07 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
font-size: 999px;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
opacity: 0;
|
|
|
|
outline: none;
|
|
|
|
background: white;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2014-09-24 09:50:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Errors
|
|
|
|
*/
|
|
|
|
|
|
|
|
.tc-error {
|
|
|
|
background: #f00;
|
|
|
|
color: #fff;
|
|
|
|
}
|