Browse Source

Fix issues with attached tabular with changes to segment

flex-list
jlukic 9 years ago
parent
commit
cdcb13d423
2 changed files with 10 additions and 5 deletions
  1. 13
      src/definitions/collections/menu.less
  2. 2
      src/themes/default/collections/menu.variables

13
src/definitions/collections/menu.less

@ -642,7 +642,7 @@ Floated Menu / Item
font-weight: @tabularActiveWeight; font-weight: @tabularActiveWeight;
margin-bottom: -@tabularBorderWidth; margin-bottom: -@tabularBorderWidth;
box-shadow: @tabularActiveBoxShadow; box-shadow: @tabularActiveBoxShadow;
border-radius: @tabularBorderRadius @tabularBorderRadius 0px 0px;
border-radius: @tabularBorderRadius @tabularBorderRadius 0px 0px !important;
} }
/* Coupling with segment for attachment */ /* Coupling with segment for attachment */
@ -650,6 +650,7 @@ Floated Menu / Item
.ui.tabular.menu ~ .bottom.attached.segment + .bottom.attached.segment { .ui.tabular.menu ~ .bottom.attached.segment + .bottom.attached.segment {
border-top: none; border-top: none;
margin: 0px; margin: 0px;
width: 100%;
} }
/* Vertical Tabular */ /* Vertical Tabular */
@ -806,9 +807,13 @@ Floated Menu / Item
color: @secondaryInvertedActiveColor !important; color: @secondaryInvertedActiveColor !important;
} }
/* Disable variations */
.ui.secondary.item.menu .item {
margin: 0em;
/* Fix item margins */
.ui.secondary.item.menu {
margin-left: 0em;
margin-right: 0em;
}
.ui.secondary.item.menu .item:last-child {
margin-right: 0em;
} }
.ui.secondary.attached.menu { .ui.secondary.attached.menu {
box-shadow: none; box-shadow: none;

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

@ -322,7 +322,7 @@
@tabularMenuActiveColor: @selectedTextColor; @tabularMenuActiveColor: @selectedTextColor;
@tabularActiveWeight: bold; @tabularActiveWeight: bold;
@tabularBorderRadius: 5px;
@tabularBorderRadius: 0.35714rem;
/* Pagination */ /* Pagination */

Loading…
Cancel
Save