Add <select> color setting to the palette (#3360)

* Add <select> color setting to the palette

* Signing the CLA
This commit is contained in:
Talha Mansoor 2018-07-19 21:25:35 +05:00 committed by Jeremy Ruston
parent d7001c6f6b
commit e0be9a3d09
4 changed files with 12 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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>>;
}