From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1148531-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 11975138350 for <garchives@archives.gentoo.org>; Wed, 26 Feb 2020 18:53:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B68BE09A1; Wed, 26 Feb 2020 18:53:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FDB0E09A1 for <gentoo-commits@lists.gentoo.org>; Wed, 26 Feb 2020 18:53:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF27834F222 for <gentoo-commits@lists.gentoo.org>; Wed, 26 Feb 2020 18:53:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C22814F for <gentoo-commits@lists.gentoo.org>; Wed, 26 Feb 2020 18:53:47 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1582666072.2e289d44e5d3d0cb925166190b6f3ed71ebc6330.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: / X-VCS-Repository: proj/devmanual X-VCS-Files: devbook.xsl X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2e289d44e5d3d0cb925166190b6f3ed71ebc6330 X-VCS-Branch: master Date: Wed, 26 Feb 2020 18:53:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 56642b34-0237-48b3-9b88-b930e27cbdfc X-Archives-Hash: 18273d18d573a46580f3588f3dc18277 commit: 2e289d44e5d3d0cb925166190b6f3ed71ebc6330 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Tue Feb 25 20:10:27 2020 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Tue Feb 25 21:27:52 2020 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=2e289d44 devbook.xsl: Remove collapse from search bar. In order not to hide it on small devices. Patch from Brian Evans <grknight <AT> gentoo.org> in bug 615938. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> devbook.xsl | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/devbook.xsl b/devbook.xsl index 8dc9976..025cb70 100644 --- a/devbook.xsl +++ b/devbook.xsl @@ -547,20 +547,10 @@ <nav class="navbar navbar-grey navbar-stick" id="devmanual-actions" role="navigation"> <div class="container"> <div class="row"> - <div class="navbar-header"> - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#gw-toolbar"> - <span class="sr-only">Toggle navigation</span> - <span class="icon-bar"></span> - <span class="icon-bar"></span> - <span class="icon-bar"></span> - </button> - </div> - <div class="collapse navbar-collapse" id="gw-toolbar"> - <div class="input-group"> - <input type="search" name="search" placeholder="Search" title="Search Gentoo Developer Manual [f]" accesskey="f" id="searchInput" class="form-control" onclick="fetchDocuments()"/> - <div class="input-group-btn"> - <input type="submit" name="fulltext" value="Search" title="Search the pages for this text" id="mw-searchButton" class="searchButton btn btn-default" onclick="search()"/> - </div> + <div class="input-group"> + <input type="search" name="search" placeholder="Search" title="Search Gentoo Developer Manual [f]" accesskey="f" id="searchInput" class="form-control" onclick="fetchDocuments()"/> + <div class="input-group-btn"> + <input type="submit" name="fulltext" value="Search" title="Search the pages for this text" id="mw-searchButton" class="searchButton btn btn-default" onclick="search()"/> </div> </div> </div>