You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/05/14 18:12:31 UTC

[maven-fluido-skin] branch MSKINS-173-2 updated (934fa58 -> 6ab7917)

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MSKINS-173-2
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git


 discard 934fa58  [MSKINS-173] Google site search box too wide in sidebar
     new 6ab7917  [MSKINS-173] Google site search box too wide in sidebar

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (934fa58)
            \
             N -- N -- N   refs/heads/MSKINS-173-2 (6ab7917)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[maven-fluido-skin] 01/01: [MSKINS-173] Google site search box too wide in sidebar

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MSKINS-173-2
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git

commit 6ab79179292bf0d23bcb6efab0354ed181287b85
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Sat May 14 11:41:00 2022 +0200

    [MSKINS-173] Google site search box too wide in sidebar
    
    Second try, make it dynamic in the sidebar only.
    
    This closes #30
---
 src/main/resources/css/maven-theme.css | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/resources/css/maven-theme.css b/src/main/resources/css/maven-theme.css
index 8538489..1ce0c98 100644
--- a/src/main/resources/css/maven-theme.css
+++ b/src/main/resources/css/maven-theme.css
@@ -66,7 +66,11 @@ li.none {
   background-image: url(https://cse.google.com/cse/images/google_custom_search_watermark.gif);
   background-attachment: initial; background-origin: initial; background-clip: initial;
   background-color: rgb(255, 255, 255); background-position: 0% 50%; background-repeat: no-repeat no-repeat;
-  width:95%
+  width:95%;
+}
+
+.sidebar-nav .search-query {
+  width: calc(100% - 30px);
 }
 
 body.topBarEnabled {
@@ -140,10 +144,6 @@ li.pull-right {
   margin-bottom: 10px;
 }
 
-input.search-query {
-  padding-right: 0px;
-}
-
 a.dropdown-toggle {
   cursor: pointer;
 }