diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e0a8a6809..fbc44172b 100755 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -10,6 +10,8 @@ **Bugs** - **Dropdown** - Fixed issue where using `down` key to re-open dropdown when using `search selection dropdown` would start at the top element instead of jumping to selected element +- **Dropdown** - Fix dropdown arrow being slightly off center due to em calculation being incorrect due to differences in relative em +- **Dropdown** - Fix `loading dropdown` icon position being slightly offset - **Sidebar** - Removed use of `ios` browser detection, and use of `-webkit-overflow-scrolling: touch;`. iOS no longer has sizing issues when displaying sidebar content in latest iOS. - **Search** - Fixed issue where `searchDelay` could cause results to appear after search had lost focus. - **Sticky** - Fix issue where sticky would cause page to shift when `context` height was determined by sticky's height in `position: static;` #3430 diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index 28dc67d24..51f29e51f 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -769,7 +769,9 @@ select.ui.dropdown { .ui.loading.dropdown > i.icon { height: @relative14px !important; - padding: @relative16px @relative15px !important; +} +.ui.loading.selection.dropdown > i.icon { + padding: @relative21px @relative18px !important; } .ui.loading.dropdown > i.icon:before { position: absolute; diff --git a/src/themes/default/modules/dropdown.variables b/src/themes/default/modules/dropdown.variables old mode 100644 new mode 100755 index f7c4f51b5..4000f0710 --- a/src/themes/default/modules/dropdown.variables +++ b/src/themes/default/modules/dropdown.variables @@ -159,7 +159,7 @@ @selectionIconZIndex: 3; @selectionIconHitbox: @selectionVerticalPadding; @selectionIconMargin: -@selectionIconHitbox; -@selectionIconPadding: @selectionIconHitbox; +@selectionIconPadding: @selectionIconHitbox / @dropdownIconSize; @selectionIconTransition: opacity @defaultDuration @defaultEasing; @selectionMenuBorderRadius: 0em 0em @borderRadius @borderRadius;