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 483A3929EC for ; Mon, 8 Apr 2024 12:57:11 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 27E5885E9 for ; Mon, 8 Apr 2024 12:57:11 +0200 (CEST) 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 ; Mon, 8 Apr 2024 12:57:09 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 5E1F5445D3 for ; Mon, 8 Apr 2024 12:57:09 +0200 (CEST) Message-ID: <18a6ca88-56a4-48f8-9097-02ec08e9da3f@proxmox.com> Date: Mon, 8 Apr 2024 12:57:08 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: Proxmox Backup Server development discussion , =?UTF-8?Q?Fabian_Gr=C3=BCnbichler?= References: <20240405130543.259220-1-h.duerr@proxmox.com> <20240405130543.259220-3-h.duerr@proxmox.com> <1712568202.uecwkgtrfn.astroid@yuna.none> Content-Language: en-US From: =?UTF-8?Q?Hannes_D=C3=BCrr?= In-Reply-To: <1712568202.uecwkgtrfn.astroid@yuna.none> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.380 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_ASCII_DIVIDERS 0.8 Email that uses ascii formatting dividers and possible spam tricks 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 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [proxmox.com] Subject: Re: [pbs-devel] [PATCH proxmox-backup v2 2/3] docs: add custom class for svgs X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Apr 2024 10:57:11 -0000 On 4/8/24 11:23, Fabian Grünbichler wrote: > On April 5, 2024 3:05 pm, Hannes Duerr wrote: >> Unfortunately, the width attribute for svgs is ignored in sphinx version >> 5.3.0. Therefore we create a class which applies a width of 100% as we >> want svgs >> >> Signed-off-by: Hannes Duerr >> --- >> docs/_static/custom.css | 5 +++++ >> 1 file changed, 5 insertions(+) >> >> diff --git a/docs/_static/custom.css b/docs/_static/custom.css >> index 7022b532..8c3c3e19 100644 >> --- a/docs/_static/custom.css >> +++ b/docs/_static/custom.css > wrong path ;) this is the copy in the generated part of the docs, the > source is ./docs/custom.css In Version two i added that the patch series builds on top of another series, where the source of the file was changed. >> @@ -10,6 +10,11 @@ h1.logo-name { >> div.body img { >> width: 250px; >> } >> + >> +div.body img.proxmox-svg { >> + width: 100%; >> +} >> + >> pre { >> padding: 5px 10px; >> } >> -- >> 2.39.2 >> >> >> >> _______________________________________________ >> pbs-devel mailing list >> pbs-devel@lists.proxmox.com >> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel >> >> >> > > _______________________________________________ > pbs-devel mailing list > pbs-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel > >