From 67b6e6c47c01e1ddfa08fbf0a4842e0c6695fab6 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Fri, 26 Feb 2016 23:46:58 -0500 Subject: [PATCH] make background color of modal "save before quit" the same as dialogs --- pd/nw/css/default.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pd/nw/css/default.css b/pd/nw/css/default.css index ab1608329..522113d39 100644 --- a/pd/nw/css/default.css +++ b/pd/nw/css/default.css @@ -19,7 +19,7 @@ color: black; } -/* The main Pd Window */ +/* The Pd Console Window */ #console_body { margin: 0px; @@ -337,10 +337,18 @@ text { left: 0; } +/* Dialog to ask to save the patch before quitting */ +#save_before_quit { + background-color: #f3f3f3; + border:1px solid #bbb; + padding: 12px; + margin: 12px; +} + /* Common to all dialogs */ .dialog_body { - background-color:#f3f3f3; + background-color: #f3f3f3; } .submit_buttons { -- GitLab