Add button palette colours

We leave them blank by default so that we get the browser default
button colours
print-window-tiddler
Jermolene 2015-04-27 21:46:07 +01:00
rodzic df84e93283
commit 16301532bf
7 zmienionych plików z 26 dodań i 2 usunięć

Wyświetl plik

@ -10,6 +10,9 @@ alert-highlight: #881122
alert-muted-foreground: #b99e2f
background: #ffffff
blockquote-bar: <<colour muted-foreground>>
button-background:
button-foreground:
button-border:
code-background: #f7f7f9
code-border: #e1e1e8
code-foreground: #dd1144

Wyświetl plik

@ -10,6 +10,9 @@ alert-highlight: #881122
alert-muted-foreground: #b99e2f
background: #fff
blockquote-bar: <<colour muted-foreground>>
button-background:
button-foreground:
button-border:
code-background: #f7f7f9
code-border: #e1e1e8
code-foreground: #dd1144

Wyświetl plik

@ -10,6 +10,9 @@ alert-highlight: #881122
alert-muted-foreground: #b99e2f
background: #ffffff
blockquote-bar: <<colour muted-foreground>>
button-background:
button-foreground:
button-border:
code-background: #f7f7f9
code-border: #e1e1e8
code-foreground: #dd1144

Wyświetl plik

@ -13,6 +13,9 @@ alert-highlight: #881122
alert-muted-foreground: #b99e2f
background: #ffffff
blockquote-bar: <<colour muted-foreground>>
button-background:
button-foreground:
button-border:
code-background: #f7f7f9
code-border: #e1e1e8
code-foreground: #dd1144

Wyświetl plik

@ -10,6 +10,9 @@ alert-highlight: #881122
alert-muted-foreground: #b99e2f
background: #ffffff
blockquote-bar: <<colour muted-foreground>>
button-background:
button-foreground:
button-border:
code-background: #f7f7f9
code-border: #e1e1e8
code-foreground: #dd1144

Wyświetl plik

@ -10,6 +10,9 @@ alert-highlight: #881122
alert-muted-foreground: #b99e2f
background: #ffffff
blockquote-bar: <<colour muted-foreground>>
button-background:
button-foreground:
button-border:
code-background: #f7f7f9
code-border: #e1e1e8
code-foreground: #dd1144

Wyświetl plik

@ -37,6 +37,9 @@ background-size:` {{$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize}}`
html button {
line-height: 1.2;
color: <<colour button-foreground>>;
background: <<colour button-background>>;
border-color: <<colour button-border>>;
}
/*
@ -105,9 +108,12 @@ dl dt {
margin-top: 6px;
}
textarea, input[type=text] {
textarea,
input[type=text],
input[type=""],
input:not([type]) {
color: <<colour foreground>>;
background-color: <<colour background>>;
background: <<colour background>>;
}
.tc-muted {