Browse Source

Button now uses focus shadow from site.variables

pull/2034/head
jlukic 10 years ago
parent
commit
8d48a25945
2 changed files with 3 additions and 2 deletions
  1. 2
      RELEASE-NOTES.md
  2. 3
      src/themes/default/elements/button.variables

2
RELEASE-NOTES.md

@ -45,6 +45,7 @@
**Bugs** **Bugs**
- **All Modules** - Performance logging now delays 500ms instead of 100ms for console logging to ensure all logs are captured in one group - **All Modules** - Performance logging now delays 500ms instead of 100ms for console logging to ensure all logs are captured in one group
- **All Modules/Transition** - Transitions no longer use `rotateZ(0deg)` to trigger GPU display of visible state. This causes issues with `transform` creating new stacking context that can disrupt `z-index`.
- **Card** - Fix card dimmer not appearing in minified release due to use of background shorthand property - **Card** - Fix card dimmer not appearing in minified release due to use of background shorthand property
- **Checkbox** - Fix `disabled checkbox` sometimes displaying hand cursor - **Checkbox** - Fix `disabled checkbox` sometimes displaying hand cursor
- **Checkbox** - Fixes nested `dropdown` inside `checkbox` causing issues - **Checkbox** - Fixes nested `dropdown` inside `checkbox` causing issues
@ -58,6 +59,7 @@
- **Label** - Labels inside `header` now vertical align better by accounting for line height offset - **Label** - Labels inside `header` now vertical align better by accounting for line height offset
- **Loader** - Fix position of `inline centered loader` to be centered correctly - **Loader** - Fix position of `inline centered loader` to be centered correctly
- **Message** - Message now uses `@lineHeight` from `site.variables` - **Message** - Message now uses `@lineHeight` from `site.variables`
- **Menu** - Menu now has a `min-height` that matches standard item padding
- **Modal** - `scrollable modal` now correctly adds padding below modal - **Modal** - `scrollable modal` now correctly adds padding below modal
- **Modal** - Modal with `detachable: false` inside `ui sidebar` `pusher` element will now show correctly - **Modal** - Modal with `detachable: false` inside `ui sidebar` `pusher` element will now show correctly
- **Popup** - Fixes issue with `min-width` in firefox exceeding `max-width` causing element to not wrap correctly - **Popup** - Fixes issue with `min-width` in firefox exceeding `max-width` causing element to not wrap correctly

3
src/themes/default/elements/button.variables

@ -95,8 +95,7 @@
@focusBackgroundImage: ''; @focusBackgroundImage: '';
@focusBoxShadow: @focusBoxShadow:
@borderBoxShadow, @borderBoxShadow,
0px 0px 1px rgba(81, 167, 232, 0.8) inset,
0px 0px 3px 2px rgba(81, 167, 232, 0.8)
@defaultFocusBoxShadow
; ;
@focusColor: @hoveredTextColor; @focusColor: @hoveredTextColor;
@iconFocusOpacity: 0.85; @iconFocusOpacity: 0.85;

Loading…
Cancel
Save