Browse Source

Adjust arrow variables to automatically resize

pull/2755/head
jlukic 9 years ago
parent
commit
c6e78ae909
2 changed files with 3 additions and 2 deletions
  1. 1
      RELEASE-NOTES.md
  2. 4
      src/themes/default/modules/dropdown.variables

1
RELEASE-NOTES.md

@ -7,6 +7,7 @@
- **Breadcrumb** - Breadcrumb no longer receives vertical spacing by default. This may often cause vertical alignment issues when displayed next to other `inline-block` content.
- **Menu** - Appearance of `labeled icon menu` has been modified. Horizontal menus now have icons above text, and icons are slightly larger than before.
- **Menu** - Added new `tabular` menu types, `right tabular`, `bottom tabular`, added many new `tabular` menu variables for customizing
- **Dropdown** - Dropdown `@arrowSize` will now automatically reposition itself if size is changed with variable
- **Menu** - `text menu` now uses padding for hitboxes to make target area for links larger
- **List** - Lists can now be `right floated` or `left floated`

4
src/themes/default/modules/dropdown.variables

@ -352,13 +352,13 @@
@floatingMenuBorderRadius: @borderRadius;
/* Pointing */
@pointingArrowOffset: -0.25em;
@pointingArrowOffset: -(@pointingArrowSize / 2);
@pointingArrowDistanceFromEdge: 1em;
@pointingArrowBackground: @white;
@pointingArrowZIndex: 2;
@pointingArrowBoxShadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.1);
@pointingArrowSize: 0.5em;
@pointingArrowSize: @relative7px;
@pointingMenuDistance: @mini;
@pointingMenuBorderRadius: @borderRadius;
Loading…
Cancel
Save