Reply to thread

The clickable area of these dropdown arrows in the sub navigation can be increased without affecting the overall layout too much. After this change, they have a width of 17.5 instead of 12.8 pixels according to the Chrome developer tools. I changed this in our forums because 12.8 pixels is a really small width.


[CODE=diff]

diff --git a/src/addons/XF/_data/templates.xml b/src/addons/XF/_data/templates.xml

index 2785d474e..bd338d90b 100644

--- a/src/addons/XF/_data/templates.xml

+++ b/src/addons/XF/_data/templates.xml

@@ -26116,7 +26116,7 @@ pre.code

 

         &.p-navEl-link--splitMenu

         {

-            padding-right: ((@padding) / 4);

+            padding-right: 0;

         }

 

         &.p-navEl-link--menuTrigger

@@ -26132,7 +26132,7 @@ pre.code

 

     .p-navEl-splitTrigger

     {

-        padding: 0 ((@padding) / 3);

+        padding: 0 5px;

     }

 }

[/CODE]


Back
Top Bottom