Browse Source

Merge pull request #2734 from frontdevde/patch-3

Add missing background-color variable for tabular menu
pull/2743/head
Jack Lukic 9 years ago
parent
commit
d4b8d0712d
2 changed files with 5 additions and 5 deletions
  1. 6
      src/definitions/collections/menu.less
  2. 4
      src/themes/default/collections/menu.variables

6
src/definitions/collections/menu.less

@ -600,7 +600,7 @@ Floated Menu / Item
---------------*/ ---------------*/
.ui.tabular.menu { .ui.tabular.menu {
background-color: transparent;
background-color: @tabularBackgroundColor;
border-radius: 0em; border-radius: 0em;
box-shadow: none !important; box-shadow: none !important;
border: none; border: none;
@ -653,7 +653,7 @@ Floated Menu / Item
/* Vertical Tabular */ /* Vertical Tabular */
.ui.vertical.tabular.menu { .ui.vertical.tabular.menu {
background-color: transparent;
background-color: @tabularBackgroundColor;
border-radius: 0em; border-radius: 0em;
box-shadow: none !important; box-shadow: none !important;
border-bottom: none; border-bottom: none;
@ -1850,4 +1850,4 @@ Floated Menu / Item
width: @hugeWidth; width: @hugeWidth;
} }
.loadUIOverrides();
.loadUIOverrides();

4
src/themes/default/collections/menu.variables

@ -300,7 +300,7 @@
/* Tabular */ /* Tabular */
@tabularBorderColor: @solidBorderColor; @tabularBorderColor: @solidBorderColor;
@tabularBackgroundColor: #FFFFFF;
@tabularBackgroundColor: transparent;
@tabularBorderWidth: 1px; @tabularBorderWidth: 1px;
@tabularOppositeBorderWidth: @tabularBorderWidth + 1px; @tabularOppositeBorderWidth: @tabularBorderWidth + 1px;
@tabularHorizontalPadding: @relativeHuge; @tabularHorizontalPadding: @relativeHuge;
@ -427,4 +427,4 @@
@smallWidth: 13rem; @smallWidth: 13rem;
@mediumWidth: 15rem; @mediumWidth: 15rem;
@largeWidth: 18rem; @largeWidth: 18rem;
@hugeWidth: 20rem;
@hugeWidth: 20rem;
Loading…
Cancel
Save