mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
Add <select> color setting to the palette (#3360)
* Add <select> color setting to the palette * Signing the CLA
This commit is contained in:
parent
d7001c6f6b
commit
e0be9a3d09
@ -45,6 +45,8 @@ page-background: Page background
|
||||
pre-background: Preformatted code background
|
||||
pre-border: Preformatted code border
|
||||
primary: General primary
|
||||
select-tag-background: `<select>` element background
|
||||
select-tag-foreground: `<select>` element text
|
||||
sidebar-button-foreground: Sidebar button foreground
|
||||
sidebar-controls-foreground-hover: Sidebar controls foreground hover
|
||||
sidebar-controls-foreground: Sidebar controls foreground
|
||||
|
@ -57,6 +57,8 @@ page-background: #f4f4f4
|
||||
pre-background: #f5f5f5
|
||||
pre-border: #cccccc
|
||||
primary: #5778d8
|
||||
select-tag-background: #fff
|
||||
select-tag-foreground: #000
|
||||
sidebar-button-foreground: <<colour foreground>>
|
||||
sidebar-controls-foreground-hover: #000000
|
||||
sidebar-controls-foreground: #aaaaaa
|
||||
|
@ -327,3 +327,5 @@ Sebastian Silva, @icarito, 2018/04/03
|
||||
Luca Dorigo, @ldorigo, 2018/05/05
|
||||
|
||||
Anthony Muscio, @AnthonyMuscio, 2018/05/21
|
||||
|
||||
Muhammad Talha Mansoor, @talha131, 2018/07/16
|
||||
|
@ -2526,3 +2526,9 @@ body.tc-dirty span.tc-dirty-indicator, body.tc-dirty span.tc-dirty-indicator svg
|
||||
.tc-tree li span {
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
select {
|
||||
color: <<colour select-tag-foreground>>;
|
||||
background: <<colour select-tag-background>>;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user