From 5897058fc0e2816294ced714afc21d526be0093f Mon Sep 17 00:00:00 2001 From: "Michael P. Pfeiffer" Date: Mon, 27 Jul 2015 22:34:35 +0200 Subject: [PATCH 1/3] Add missing background-color variable for tabular menu The variable @tabularBackgroundColor was referenced in menu.variables but not actually used in menu.less --- src/definitions/collections/menu.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index 455073d13..d6d881b26 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -600,7 +600,7 @@ Floated Menu / Item ---------------*/ .ui.tabular.menu { - background-color: transparent; + background-color: @tabularBackgroundColor; border-radius: 0em; box-shadow: none !important; border: none; @@ -1850,4 +1850,4 @@ Floated Menu / Item width: @hugeWidth; } -.loadUIOverrides(); \ No newline at end of file +.loadUIOverrides(); From 54acbe7bd45ed9a01c1cec28e69cfc82acf67a64 Mon Sep 17 00:00:00 2001 From: "Michael P. Pfeiffer" Date: Mon, 27 Jul 2015 22:58:16 +0200 Subject: [PATCH 2/3] Add missing background-color variable for vertical tabular menu @tabularBackgroundColor was missing for vertical tabular menu, too --- src/definitions/collections/menu.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index d6d881b26..46dbc5883 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -653,7 +653,7 @@ Floated Menu / Item /* Vertical Tabular */ .ui.vertical.tabular.menu { - background-color: transparent; + background-color: @tabularBackgroundColor; border-radius: 0em; box-shadow: none !important; border-bottom: none; From e53401f57e69940bac1a9e77d37782f8064ce59e Mon Sep 17 00:00:00 2001 From: "Michael P. Pfeiffer" Date: Tue, 28 Jul 2015 08:43:07 +0200 Subject: [PATCH 3/3] set @tabularBackgroundColor value to transparent --- src/themes/default/collections/menu.variables | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index 1e01b7dd5..22cdbbe37 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -300,7 +300,7 @@ /* Tabular */ @tabularBorderColor: @solidBorderColor; -@tabularBackgroundColor: #FFFFFF; +@tabularBackgroundColor: transparent; @tabularBorderWidth: 1px; @tabularOppositeBorderWidth: @tabularBorderWidth + 1px; @tabularHorizontalPadding: @relativeHuge; @@ -427,4 +427,4 @@ @smallWidth: 13rem; @mediumWidth: 15rem; @largeWidth: 18rem; -@hugeWidth: 20rem; \ No newline at end of file +@hugeWidth: 20rem;