From 6689168487bd6f5e6fa5915fb0094f2e19a72301 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Thu, 24 Mar 2016 13:01:03 -0400 Subject: [PATCH] set css font for find bar in both the pd window and the pd canvas --- pd/nw/css/c64.css | 7 +++++++ pd/nw/css/default.css | 7 +++++++ pd/nw/css/extended.css | 7 +++++++ pd/nw/css/inverted.css | 7 +++++++ pd/nw/css/strongbad.css | 7 +++++++ pd/nw/css/subdued.css | 7 +++++++ pd/nw/css/vanilla.css | 7 +++++++ pd/nw/css/vanilla_inverted.css | 7 +++++++ 8 files changed, 56 insertions(+) diff --git a/pd/nw/css/c64.css b/pd/nw/css/c64.css index 5b39afc74..763fbe981 100644 --- a/pd/nw/css/c64.css +++ b/pd/nw/css/c64.css @@ -60,6 +60,13 @@ color: #ccc; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/default.css b/pd/nw/css/default.css index 42b655a5f..3f8dcba74 100644 --- a/pd/nw/css/default.css +++ b/pd/nw/css/default.css @@ -157,6 +157,13 @@ color: red; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/extended.css b/pd/nw/css/extended.css index 161684552..39ee722f8 100644 --- a/pd/nw/css/extended.css +++ b/pd/nw/css/extended.css @@ -54,6 +54,13 @@ color: red; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/inverted.css b/pd/nw/css/inverted.css index 795f86970..bff32c25d 100644 --- a/pd/nw/css/inverted.css +++ b/pd/nw/css/inverted.css @@ -61,6 +61,13 @@ color: white; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/strongbad.css b/pd/nw/css/strongbad.css index ce953b90d..0e54235ff 100644 --- a/pd/nw/css/strongbad.css +++ b/pd/nw/css/strongbad.css @@ -60,6 +60,13 @@ color: #ccc; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/subdued.css b/pd/nw/css/subdued.css index 51a1c5d54..f6b947225 100644 --- a/pd/nw/css/subdued.css +++ b/pd/nw/css/subdued.css @@ -60,6 +60,13 @@ font-weight: 600; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/vanilla.css b/pd/nw/css/vanilla.css index b09289ca6..4669167b0 100644 --- a/pd/nw/css/vanilla.css +++ b/pd/nw/css/vanilla.css @@ -54,6 +54,13 @@ color: red; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; diff --git a/pd/nw/css/vanilla_inverted.css b/pd/nw/css/vanilla_inverted.css index 986ec462f..8ae6cbaef 100644 --- a/pd/nw/css/vanilla_inverted.css +++ b/pd/nw/css/vanilla_inverted.css @@ -60,6 +60,13 @@ color: red; } +/* Find bar */ + +#console_find label, #canvas_find label { + font-family: "DejaVu Sans", sans-serif; + font-size: 10pt; +} + /* marks for matches to console_find */ mark { background: white; -- GitLab