From 40e8538243ce708b725b085faa9d93ddf8520954 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Sat, 30 Jan 2016 19:58:49 -0500 Subject: [PATCH] fix text entry box styles --- pd/nw/css/default.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pd/nw/css/default.css b/pd/nw/css/default.css index 80a4e3bc8..0e5ef3c42 100644 --- a/pd/nw/css/default.css +++ b/pd/nw/css/default.css @@ -112,7 +112,7 @@ mark.console_find_highlighted { /* selected connection between objects */ .cord.signal.selected_line, .cord.control.selected_line { - stroke: blue; + stroke: #e87216; } #cord_inspector_rect { @@ -162,7 +162,7 @@ mark.console_find_highlighted { } #new_object_textentry.obj { - outline: 1px solid blue; + outline: 1px solid #e87216; } /* We're dynamically creating the svg background data in javascript @@ -172,7 +172,7 @@ mark.console_find_highlighted { in the style sheet and retrieve it in javascript when we build the svg background. */ #new_object_textentry.msg { - outline: 0px solid blue; + outline: 0px solid #e87216; /* background-image: url(../msg-box.svg); */ } -- GitLab