From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 0BA54911CA for ; Fri, 10 Mar 2023 14:09:17 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id E999420EC3 for ; Fri, 10 Mar 2023 14:09:16 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Fri, 10 Mar 2023 14:09:16 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id CEF6D46238 for ; Fri, 10 Mar 2023 14:09:15 +0100 (CET) From: Stefan Sterz To: pve-devel@lists.proxmox.com Date: Fri, 10 Mar 2023 14:08:35 +0100 Message-Id: <20230310130837.1188003-5-s.sterz@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230310130837.1188003-1-s.sterz@proxmox.com> References: <20230310130837.1188003-1-s.sterz@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.071 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH widget-toolkit 4/6] dark-theme: remove thicker borders around content X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Mar 2023 13:09:17 -0000 previously the dark theme used thicker borders in certain places to space out the content a bit more. this removes them again to make the appearance more consistent with "crisp". Signed-off-by: Stefan Sterz --- src/proxmox-dark/scss/abstracts/_mixins.scss | 7 ------- src/proxmox-dark/scss/extjs/_toolbar.scss | 2 +- src/proxmox-dark/scss/proxmox/_general.scss | 13 ------------- 3 files changed, 1 insertion(+), 21 deletions(-) diff --git a/src/proxmox-dark/scss/abstracts/_mixins.scss b/src/proxmox-dark/scss/abstracts/_mixins.scss index 570a783..4f226f2 100644 --- a/src/proxmox-dark/scss/abstracts/_mixins.scss +++ b/src/proxmox-dark/scss/abstracts/_mixins.scss @@ -1,10 +1,3 @@ -// A border to the left and on top of the content panels for the -// selected resource -@mixin content-border { - border-top: solid 3px $background-darkest; - border-left: solid 3px $background-darkest; -} - // selected items in dropdown etc @mixin selection { background-color: $selection-background-color; diff --git a/src/proxmox-dark/scss/extjs/_toolbar.scss b/src/proxmox-dark/scss/extjs/_toolbar.scss index 2ea8527..aa6ffc5 100644 --- a/src/proxmox-dark/scss/extjs/_toolbar.scss +++ b/src/proxmox-dark/scss/extjs/_toolbar.scss @@ -4,7 +4,7 @@ .x-toolbar-default { background-color: $background-darker; - border: solid 3px $background-darkest; + border-color: $border-color-alt; &.x-docked-top { border-width: 1px; diff --git a/src/proxmox-dark/scss/proxmox/_general.scss b/src/proxmox-dark/scss/proxmox/_general.scss index 805a187..c319f6d 100644 --- a/src/proxmox-dark/scss/proxmox/_general.scss +++ b/src/proxmox-dark/scss/proxmox/_general.scss @@ -9,19 +9,6 @@ div[id^="versioninfo-"] + div[id^="panel-"] > div[id^="panel-"][id$="-bodyWrap"] border-color: transparent; } -// border around the main datacenter view -div[id^="PVE-dc-Config-"][id$="-body"], -// border around the main pool view -div[id^="pvePoolConfig-"][id$="-body"], -// Container content config views -div[id^="pveLXCConfig-"][id$="-body"], -// VM content config views -div[id^="PVE-qemu-Config-"][id$="-body"], -div[id^="PVE-storage-Browser-"][id$="-body"], -div[id^="PVE-node-Config-"][id$="-body"] { - @include content-border; -} - // Section header in the "My Settings" page .x-fieldset-header-default > .x-fieldset-header-text { color: $text-color; -- 2.30.2