From 23f7b0bfcf6d9aa55bfd72b75d16abb82349c98a Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Fri, 4 Mar 2016 19:19:30 -0500 Subject: [PATCH] make prefs tab borders match the other dialogs --- pd/nw/css/default.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pd/nw/css/default.css b/pd/nw/css/default.css index 5444c43cc..fe1ffd857 100644 --- a/pd/nw/css/default.css +++ b/pd/nw/css/default.css @@ -521,7 +521,7 @@ div.y2 { /* inline-block such that the label can be given dimensions */ display: inline-block; /* A nice curved border around the tab */ - border: 1px solid black; + border: 1px solid #ddd; /* the bottom border is handled by the tab content div */ border-bottom: 0; /* Padding around tab text */ @@ -531,13 +531,13 @@ div.y2 { margin-top: 0px; margin-bottom: 0px; /* Set the background color to default gray (non-selected tab) */ - background-color:#ddd; + background-color:#e9e9e9; height: 5vh; } /* Focused tabs */ .prefs_tab:focus + label { - border: 1px dashed black; + border: 1px dashed #ddd; } /* Checked tabs must be white with the bottom border removed */ @@ -551,7 +551,7 @@ div.y2 { /* The tab content must fill the widgets size and have a nice border */ .prefs_tab_group > div { display: none; - border-top: 1px solid black; + border-top: 1px solid #ddd; padding: 0px; margin: 0px; height: 100%; -- GitLab