Version 2.0.0 - June 30, 2015
Authors Notes
So this thing is finally done. These "notes" are about 10 printed pages long, so I apologize for that in advance. I've tried to move all the most essential changes to the top of the release notes to help in scanning below.
Thanks everyone who helped make this happen.
Migration Guide
Migration shouldn't be too difficult, just take heed of the breaking changes listed below:
- Modal - If you are using a modal with image content, you will need to use
image contenton the parent element. This is becauseflexrules require parent styling that the previoustable-rowrules did not. - Modal - Modal will now only close on buttons matching
denyorapproveselector. Any button that should hide modal on click should either match one of these selectors, or call$('.ui.modal').modal('hide')onclick. - Grid -
page gridhas been deprecated.page gridsused percentage gutters which made it unnecessarily difficult to style responsive page content. Moving forward we recommend usingui containera fixed width responsive container for holding page contents. - Dropdown - Dropdowns will now change opening directions automatically based on available screen space. If you need to force a dropdown direction use
dropdown({ direction: 'upward'}) - Form Validation - Form validation now passes settings through a
fieldsobject. This is to make form initialization match other components. The previous syntax will continue to work but will produce deprecation notices in console - Checkbox - Checkbox
fireOnInitnow defaults to false. Checkboxes now also do not require javascript to function. - Dropdown - Dropdown item
descriptionnow are floated in default theme and should be included before otheritemcontent - Form -
grouped inline fieldno longer display horizontally. Useinline fieldinstead for horizontal inline field groups. - Input -
pointer-eventshave been removed fromiconinicon inputunless alink iconis used. This is to make sure the hitbox for focusing an input includes the icon. - Popup - Popups are no longer exclusive by default. Opening a popup will not necessarily close other visible popups. You can change this behavior by using the setting
exclusive: true. Additionally the default theme now uses1remsize for standard popups. - Colors - Default colors have been adjusted, which may cause slight changes in your design. New colors have also been added to fill in missing gaps in color naming.
- Segment - Segment no longer includes a clearfix by default. You will need to specify a
clearing segmentto clear floated content. - Rail - Rail now uses
border-boxinstead ofcontent-box. This means manually specified rail widths will now need to account for padding. This was added to fix issues where railheight: 100%would incorrectly match content when a rail had padding. - Menu -
tiered menuhas been removed in2.0. This may be rewritten in the future, but was not up to the standards of the rest of the library and has been removed. - Tab -
onTabInitandonTabLoadhave been renamed toonFirstLoadandonLoadrespectively. This is to conform to the naming conventions of other modules (no self reference). Previous callbacks will continue to work but will produce deprecation notices in console. Two new callbacksonVisibleandonRequesthave been added as well. - Button -
widevariations using numbers2 wide,3 widehave been removed due to incompatibilities with some build tools. Please usetwo wide, orthree wideinstead. - Video - The undocumented
videomodule has been renamed toembed. Behaviors remain the same, but users need to adjust their javascript init to$('.ui.embed').embed(); - API - API
onFailurewill now be called in all failure conditions, when a request is errored (504, 404 etc), aborted (page change or CORS), or JSON does not passsuccessTestfunction.onErrorandonAbortwill also fire for each specific failure condition.
New UI
- Container - Containers are fixed width containers meant for holding page contents, and are a simpler alternative to
ui page grid, view more examples in docs - Multiselect - New
multipledropdown types have been added. Many new dropdown improvements have been added including tagging/tokenizing features and loading data through API requests. - Embed - New embed component allows for responsive iframe embeds that maintain their aspect ratio. Embed can be used with YouTube or Vimeo videos, along with placeholder content to avoid loading third party libraries until a user chooses to interact with the video.
Major Enhancements (Please Read)
- Site - Added new colors
olive,violet,brownandgrey. These are available in all elements with color variations. Thanks @lemartialou - API - API can now be used with mocked responses, and custom AJAX requests.
mockResponsehas been added to resolve request with a prespecified JSON object, or a synchronous function callback. - API
mockResponseAsynchas been added for custom asynchronous requests. This allows you to specify a custom async callback to resolve an API request, helping with integration with libraries like Ember or Angular that may wrap AJAX requests. - API - API callbacks now have an
onResponsecallback that can adjust a servers response before it is parsed by other callbacks for success or failure conditions. Thanks @mnquintana - API - API now provides a local caching setting to avoid server roundtrips for identical urls by using
cache: 'local'. This is not enabled by default. Local caching is useful for results that should return the same values across a single session, for example when querying an autocomplete. - Card - Cards now support multiple custom
contentblocks. Content blocks and images can now appear in any order. - Checkbox - Checkbox no longer require javascript to function.
- Checkbox - Added support for
indeterminatecheckboxes, along with new stylings. - Checkbox - Now includes separate behaviors for triggering state changes without invoking callbacks
set checkedvschecked - Dropdown - Added remote API integration with dropdown, to allow
search selectionto query against a remote dataset. - Dimmer - Dimmers now have a
blurringvariation which apply a glass-like effect when dimmed - Dropdown - Dropdowns now automatically observe changes in
menuand will update selector cache with new additions - Dropdowns - Added ability to add custom choices to all search selection dropdowns (multi/single) using
allowAdditions: truesetting. Search now displays error messages on no results in all cases. - Dropdown - Keyboard shortcuts have been added for selecting dropdown choices, for example "N" will scroll to "New York" in a state selection list, similar to native
<select>behavior. - Dropdown - Added new dropdown variation
scrolling dropdownandscrolling menu, this can be used to include a scrollable section inside a dropdown menu. - Dropdown - Dropdown will automatically animate upward if there is not enough space to appear below.
- Dropdown - Using
page upandpage downkeys will now scroll menus by a page at a time - Form - Forms now use
flexboxfor creating field groups. Inline fields now support(x) widesizing usingflex - Grid - Grids now use
flexbox, columns are now all equal height by default. New flexbox alignment types likestretchhave been added for easier vertical alignment. - Multiple UI - Many components now use flexbox, which means previous confusing fixes like
font-size: 0;to remove white-space from inline block is no longer necessary. Removing this hack, now means any element can be a direct child ofgridormenu. - Modal - Added new settings
blurringandinvertedwhich automatically set a modal's dimmer to either inverted or blurring. - Menu - Menu now uses flexbox. This allows menu items to match each others heights regardless of each items content size.
right menucontent should now follow other menu content instead of preceding it (no longer uses float). - Grid - Grids are now
flexboxandequal heightby default, theequal heightvariation can safely be removed - Popup - Popup has been rewritten to drastically improve performance, especially when testing multiple positions.
- Transition - Fallback javascript animations have been removed from UI components like dropdown and popup to increase performance. This removes need for expensive pseudo selectors like
:visible,:animatedand:hiddenand reduces filesize. - Form Validation - Form validation now uses a single
settingsobject like other modules. Using(fields, settings)will continue to work but will produce a deprecation notifications inconsole - Form Validation - Form validation now supports many new validation rules, including some specifically for use with multiple select values.
- Item - Items now uses
flexboxfor layout. - Message -
icon messagenow usesflexboxfor layout - Menu -
vertical tabular menu, a vertical tab menu, has been added - Input - All
inputtypes useflexboxfor layout - Segment - Segments now support complex nesting, many new rules for how segment groups should appear inside groups
- Segment - New
horizontal segmentgroups make laying out auto resizing text columns much easier. - Sidebar - iOS will now correctly report
scrollTopvalues fordocumentorbodywhen using a sidebar. Chrome on iOS no longer has issues with fixed content not sticking immediately when using a sidebar. - Shapes - Shapes now correctly adjusts for margin on
sides - Steps - Steps now use
flexbox, fluid steps now center content inside each step - Steps - Steps no longer need
item countand will automatically divide evenly - Transition - Transition code has been optimized to increase performance. 100% improvement on first animation, and 40% improvement on subsequent animations.
- Visibility - Using
.visibility({ type: 'fixed'})will now automatically add a placeholder element which will swap places with an element when it is attached to the viewport. This should make fixed content drastically simpler. - Visibility - Visibility and sticky now use a more performant pub/sub pattern that will only attach a single event to context
scroll. - Visibility - Added two new visibility callbacks
onOnScreenandonOffScreen, which occur, most obviously when an element first appears in or out of a browser's viewport.
Enhancements
- Site - Added many new site variables, including the ability to control input size across all UI
inputPadding, along with more border colors, accents, and colors. - Accordion - adds
onOpeningandonClosingcallback (before animation) to go withonOpen,onClose(after animation) Thanks @cluppric - Accordion - Added
onsetting for specifying accordion trigger event. - Activity Feed - Activity feed has been rewritten to use
flexbox - API - API now has new settings
throttleFirstRequestandinterruptRequests. Interrupt requests will abort a previous request on an element when making a new request.throttleFirstRequest, sets whether the first request or only subsequent requests should be throttled when athrottleduration is specified. - Build Tools - Build tools will now display pre-specified errors when a theme file is missing or an element specifies an unavailable theme.
- Build Tools - Adjusting
site.variableswill now rebuild all UI, instead of justsite.less - Button - Added
:focusstyles for all button types, all button examples in docs now are keyboard focusable using either<button>ortabindexwhere appropriate. - Card - Card now includes a
centeredvariation - Checkbox - Checkbox will now gracefully correct behaviors invoked on the child input element instead of the
ui checkbox. - Checkbox - Reduced kb size of icon font
- Divider -
vertical dividerinsideui gridnow accounts for column padding - Dropdown - Nested
scrollingmenus now support keyboard selection, e.g. pressing "A" for apple, and keyboard scrolling. - Dropdown - Dropdowns now have
matchsetting to specify whether to match ontext,valueorboth - Dropdown - Multi select dropdowns now have new settings for specifying maximum selection count
- Dropdown - Dropdown has new
placeholdersetting for setting placeholder text in javascript - Dropdown - Added
showOnFocusoption that lets you specify whether dropdown menu should show on focus - Dropdown -
fullTextSearch: truenow uses fuzzy search (same asui search) - Dropdown - Page down and page up now works with dropdown menus
- Dropdown - Dropdown initialized with
disabledprop on anoptionwill now correctly appear disabled - Dropdown - Added
disabled itemstate, disabled items will automatically be skipped with keyboard selection - Form - Added a host of new styles for form fields autocompleted by your browser, including autocompleted error, and focus states
- Form - Added placeholder color rules for IE,
ms-input-placeholder - Form - Fix
errored fielddropdown keyboard selection color - Form - Adds form
successstate - Form Validation - Added
is validbehavior, returnstrue/falseif form is valid - Form Validation - Added
different[field]rule which requires a field to be different than another field - Form Validation -
data-validatenow takes precedence over other validation matching schemes likenameorid - Form Validation - New rules for matching against custom regular expressions
- Form Validation - Form validation now has
minCount,maxCount, andexactCountfor validating multiple selections - Grid -
celled gridnow removes internal cells on mobile and tablet when used withdoublinggrid responsive variation. - Grid - Added
large screen onlyandwidescreen onlyresponsive variations for grid. - Grid -
equal widthgrids now works withoutrowwrappers - Grid - rows can now be
stretchedas well asmiddle aligned,bottom alignedandtop aligned! - Grid - Fixed margins on
internally celledgrid - Grid -
celledandinternally celledgrid now use flexbox instead ofdisplay: table; - Headers - Added new header type
sub header, useful for displaying small headers alongside text content. See examples in the header docs - Image - Images now include a
spacedvariation for adding whitespace around images when used inline with text. - Input - Added placeholder color rules for IE,
ms-input-placeholder - Input - Action input now supports multiple buttons, and dropdown
- Label - Labels now have
activeandactive hoverstates - Label - Label now sets an
imgheight even when not using animage label - List - Any content inside a
ui listcan now be vertically aligned - Menu - Add examples/documentation for
fixed menu - Menu - Added
stackablemenu variation for simple responsive menus - Menu - Added many new variables to menu
- Menu - Fixed several inheritance issues for
dropdown iteminsidemenuappearing asmenu item. - Menu - Horizontal menus now set a default image size for images / logos
- Menu - Menus items are now slightly more padded
- Menu - The hover/active state of
dropdown itemhave been adjusted to matchitem. Dropdown styles can be themed specifically insidemenu. - Menu - Vertical dropdown menus are no longer 100%
min-width - Modal - Modal now uses an adjusted
scale intransition in the default theme, that should be more subtle and work better with long modal content. - Modal - Modal
onApproveandonDenynow receive the activating element as the first parameter. Added documentation about usingreturn falseto avoid hiding element on click. - Modal - Modal content now uses flex, image content now requires
image contentclass on parent to allow for flex stylings. - Popup - Popup now defines a
transform-originso animations will be affected by the direction the element is placed - Popup -
onShowandonHidecallback can now cancel popup from showing or hiding by returning false - Popup - Added more size variations for popup
mini,tiny - Progress -
indicatinglabels now are more legible use separate css variables fromindicatingbar color - Reveal - Added new
activestate that allows you to showrevealprogramatically - Search - Cache can now be cleared using
$('.search').search('clear cache') - Segment - Added
paddedandvery paddedsegment variations - Search - Search now operates off a unique id generated by result position to retrieve results. For example category #1's first result is 'A1' . Previously result titles were used as their "id", which could cause issues with duplicate titles, or results that do not contain a title.
- Search - Search will now automatically add class
categorywhen usingtype: category. - Search - Search will now generate
resultscontainer if one is not present on init - Search - Search now uses
emfor resizes, making sure it will resize with the surrounding content - Search - Search
promptnow has focus styles defined if not usingui input - Segment - Added
clearingsegment for cases that need a clearfix. - Sidebar - Improved animation performance through performance debugging. Sidebar now caches, width, height, rtl direction on load.
- Site - Fixed mixed globals
@defaultDurationand@transitionDurationusage to use a single variable across all UI@defaultDuration, the same for@defaultEasingand@transitionEasing - Site - Added in
pageOverflowXvariable, default theme hides horizontal scrollbars onbody - Site - Added default
focuscolors for all color variations - Site - All floating/raised variations now inherit from a global
@floatedShadowmaking theming easier - Sticky - Sticky now internally caches current scroll position when
cantFit = trueto avoid getting DOM property on scroll. - Statistic - Added new evenly divided group variation, for example
three statisticsshows 3 per row - Statistic - Statitic group now use
flex. Styles have been updated. - Steps - Added
attachedsteps, which can now be attached to other UI likesegment - Tabs - Tab will now manually correct page scroll position when linking to an in-page anchor in a hidden tab
- Tabs - Added new callbacks
onTabVisibleandonRequest - Tabs - Added
parseScriptsoption, defaults toonceparsing inline scripts only first load - Table - Adds
selectable tablevariation, which shows hover effect on row when hovering - Table - Added
vertical alignmentvariations toui table - Table - Added
single linetable variation which prevents text from wrapping - Transition - Adjusting
styleorclassduring a transition, will no longer reset the change after transition completes. - Transition - Transition will no longer force visible/hidden with inline styles if
onCompletecallback sets visibility. - Visibility/Sticky - Visibility and sticky now refresh automatically after page content loading to deal with changes in position from images loading
- Visibility/Sticky - Visibility now uses pub/sub pattern to greatly improve scroll performance when attaching multiple events
- Visibility - Visiblity includes a new setting
checkOnRefreshwhich detemrines whether visibility callbacks should occur on resize or refresh - Visibility - Visibility
imagewill now wait to lazy load images that are above the current screen position, not just below.
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/Transition - Transitions no longer use
rotateZ(0deg)to trigger GPU display of visible state. This causes issues withtransformcreating new stacking context that can disruptz-index. - Accordion - Fixed bug where
exclusive: truecould sometimes cause other accordion element animations to get stuck when animating rapidly - API - API longer uses
readyState = 0as sole check for request abort, this may accidentally trigger withJSONPorCORSrequests. - API - Fixed
thiscontext ofbeforeSendto usestateContextnotelement - API - Fixed
loadingDurationnot correctly delaying requests when invoking with.api('query') - Build Tools - Fixes issue with out of date minify dependency causing rules with
background: inherit;to be removed. - Button - Fixed
attached buttons1px offset when attached to segment and menu (border vs box shadow border) - Card - IE11 now can correctly use
flexboxcards THanks @Widcket - Checkbox - Fix
disabled checkboxsometimes displaying hand cursor - Checkbox - Fixes nested
dropdowninsidecheckboxcausing issues - Checkbox - Fix
:focusstyles only applying if checkbox is unchecked - Divider - Hidden divider now correctly hides vertical dividers
- Divider - Fixes single icon alignment inside
vertical dividerorhorizontal divider - Divider - Fixed slight offset in
vertical dividerwhen it automatically adjusts tohorizontal dividerinside astackable grid - Dropdown -
focusafter changing tabs will no longer cause menu to re-open Thanks @trevorharwell - Dropdown - Fix issue with search dropdown refocusing on self the first time after "tabbing" away in Chrome
- Dropdown - Fixes issue with headers disappearing inside of
ui dropdownwhen nested inui menu - Dropdown - Fixes
onChangeto fire when input value changes, not just when menu UI changes - Dropdown - Dropdowns with
transition: nonenow work correctly. - Dropdown - Fixed issue where
sortSelectwas relying on object key enumeration order which is browser dependent and unreliable. It now uses a sort function which functions the same in all browsers - Dropdown - Fixed issue with
search selectionnot changing text when reselecting same value from list - Dropdown - Fixed
min-widthissues causing background to not appear behind unwrapped text withwhite-space: nowrap - Dropdown - Dropdown
menunow use same font size as dropdown - Dropdown - Fixed dropdown
metadataattribute caching causing issues with React integration - Dropdown - Fixed border radius on
sub menuwhen alignedleft - Dropdown - Fixed
inline dropdownicon not aligning with content - Dropdown - Fixed behaviors called on
<select>after initialization not being correctly applied toui dropdown - Dropdown - Fixed issue with matching boolean values, and using
set selectedwithtrueorfalse - Dropdown - Fixed
search dropdownsubmitting parent form when enter shortcut pressed - Dropdown - Fixed dropdown menu items should not center inside of a center aligned container.
- Dropdown - Fixed some cases where onChange would not occur for values matching equality against '', for example
0 - Form - Form will no longer set a height for
textareausing therowsproperty - Form -
inline fieldsare now1emand do not match label's reduced size - Form -
fieldinsidefieldsno longer produce double sized margins. - Form - Form sizes and input sizes now inherit from
site.variables - Form Validation - Fixed bug causing
matchrule not to work as expected. - Form Validation - Fixed
clearandresetcausing validation error to appear on checkbox if empty rule was set on checkbox. - Form Validation - Form validation now validates correctly on
<select>change - Form - Fixed autocompleted
ui selection dropdownhaving dropdown icon z-index issues - Form/Input -
ui labeled inputinsideformwill no longer escape column width.ui fluid inputwill now use input widths shorter than browser default. - Grid - Fixed responsive styling for grid types, more consistent display for
divided,celled,on mobile - Grid - Fix
doubling rownot working correctly inside a differentdoubling grid(css spec issue) - Grid - Fix
doubling gridincorrectly applying width to(x) column row - Grid - First column on
stackable gridno longer receives top margin - Grid -
x column wideinsideequal width/heightnow cannot grow beyond column size - Grid - Fixes colored grid columns not appearing when not nested in rows
- Icon - Fixes
ascendinganddescendingicon being swapped - Icon - Fixes phone icon only appearing as alias
call - Image -
rounded imageandcircular imagenow apply border radius to all child elements, fixing dimmers, and other content rounding - Input - Fixed improper left padding on
transparent left icon inputThanks @zxfwinder - Input - Fixed
placeholdercolor not changing correctly on focus Thanks @zxfwinder - Input - Fixed right padding on
labeled inputthat were notcorner labeled - Label - Labels inside
headernow vertical align better by accounting for line height offset - List -
horizontal listare now alignedmiddleby default, while vertical lists are alignedtop. - List - Fixes numbers not appearing when using
inverted ordered listThanks @pcj - List -
aelements inside aui listwill no longer apply styles onuielements likebuttonThanks @ahtinurme - List - Fixed
divided bulleted listchild lists getting wrong indent - List - Bullets and numbers are no longer selectable in
bulleted listandordered list - List - Fixed
inverted bulleted listbullet color - List - Fix first element touches border on
ui horizontal celled list - List - Added many new variables for link stylings inside list, added separate variables and defaults for child-list spacing
- Loader - Fix position of
inline centered loaderto be centered correctly - Message - Message now uses
@lineHeightfromsite.variables - Menu - Fixed menus like
left fixedright fixedare all now class order dependent. - Menu - Fixed 1px border on last element of inline menus like
pagination menuorcompact menu - Modal - Modal no longer hides page scroll bar causing dimmed page content to jump positions.
- Modal - Fixed bug where clicking an element detached from dom would cause modal to hide prematurely
- Modal - Clicking on other modals will no longer close open modal when
allowMultiple: true - Modal - Fixed
scrollingclass not being removed after opening a normal modal after ascrollingmodal. - Message - Updated all message colors for legibility
- Message - Close icon position adjusted to align with headers
- Menu - Fixes divider appears on last element of
(x) item menu - Menu - Fixed
top attached menunot having margin-top, andbottom attached menunot havingmargin-bottom - Menu - Menu now has a
min-heightthat matches standard item padding - Menu -
dropdown menuin asecondary pointing menuortabular menunow receive distinct active styling from otheractive item - Menu - Fixed arrow position in
pointing menuto be more consistent, round to exact pixels and account for arrow border width - Menu - Fix issue with
pointingarrow having too high az-indexand appearing aboveui dropdown menu - Modal -
scrollable modalnow correctly adds padding below modal - Modal - Modal with
detachable: falseinsideui sidebarpusherelement will now show correctly - Popup - Popup now correctly adjusts if
dataattributes change - Popup - Fixes issue with
min-widthin firefox exceedingmax-widthcausing element to not wrap correctly - Popup - Popup will now produce an error message and not mistakenly appear in the top left corner of page, if called with a
popuportargetthat does not exist. - Popup - Popup will no longer appear incorrectly if the targeted element is not visible on page
- Popup - Fixed bug which could cause pre-existing inline popup to be removed from DOM after hiding
- Popup - Fixes popup offstage position calculations with pages including horizontal scrollbars
- Popup - Added
addTouchEventsto specify whether touch events should be added to trigger popup on mobile - Progress - Fixed bug where percentage complete values between 0-1% would display incorrectly (0.5% would show as 50%)
- Rail - Rail 100% height now uses
border-boxto ensure exact height match to container - Rating - Rating now correctly adjusts if
dataattributes change - Reveal - Removed
maskedreveal, all reveals are masked by default - RTL - Fixed
rtl: 'both'insemantic.jsonnot building both versions of source correctly. - Search - Search will no longer incorrectly produce an error when API settings are passed through metadata
- Sidebar - Top/Bottom sidebar will now show scroll bars correctly when taller than 100% page height
- Sidebar - Fixed bug where having a
style[title]in page causing page not to be pushed correctly - Sidebar - Last menu item now has a border when sidebar and menu are used together
- Segment - Segment groups can now be
raisedorpiledorstacked - Search - Fixed
category searchnot applying active styles correctly to category names - Search - Fixed
onSelectnot returning the correct value when usingtype: category - Search - Fixed
onSelectreturning the first term that matches the beginining of the selected value not the exact value. - Search - Fix
loading searchwith anicon buttoncausing double loaders. - Search -
searchFieldssetting now correctly replaces default fields instead of adding the user fields to defaults - Search - Calls to
set valueorquerynow obeyminCharacterLength - Search - Search API calls now use the same level debug settings as search
- Steps - Fixes bug where
ordered stepshad smaller numbers inIE10 - Steps - Fixed bug where
stackable stepswere not working correctly - Sticky - Fix issue with sticky content scroll css transition causing element to scroll too slowly when cannot fit on screen.
- Sticky - Fix issues when
pushing: truewith sticky content having incorrect bottom spacing, when container has bottom padding - Sticky - Fixed issue with sticky content animating width on display in some cases.
- Tab - multiple tab groups initialized together with
context: 'parent'will now each use their own parent - Tab - Tabs now use the standard component design pattern internally
- Table - Fixes
sortedcolumn are not correctly centered withcenter aligneddue to margin on sort icon - Table - Fixes
ascendinganddescendingicons were reversed in table - Table -
very basic tablenow works together withpadded table - Table - Fix inheritance of text alignment and vertical alignment
- Transition - Fixed bug where transition out would cause unwanted focus event in IE if element has focus
- Transition - Calling an
outanimation during aninanimation withqueue: falsenow correctly calls thecompleteevent of the original animation - Transition - Fixed bug where transition could sometimes not occur when an element was determined to always be hidden
Changes
- All Modules - All modules now default to
verbose: false - Accordion - Accordion no longer sets a
font-sizeto better couple with other components defaults - Button - Button focus color now uses hoverColor background instead of blue box shadow
- Button -
basic colored buttonnow grow their border size to 2px in default theme on hover - Breadcrumb - Fixed breadcrumb
emrounding, adjusted distance in default theme - Card - Card styles have been adjusted,
link cardnow raise to show selection. Colored variations now have shadows. - Checkbox - Toggle now uses
@primaryColor - Dropdown - Dropdown padding values now resolve to exact pixel values from em
- Dropdown -
itemdescriptionis now floated by default - Feed - Removed
extra textpointer border - Form -
set valueno longer automatically callsvalidate form - Grid - Small computer
page gridgutters have been adjusted from 8% to 3% to allow for roomier layouts on small screens. - Grid - Vertically divided grids now double row spacing to account for dividers
- Grid -
center alignedno longer centers rows, just text. Usecentered gridto center a grid column on the page. - Header/Table/Divider - These components now pull border color defaults from
site.variablesinstead of using their own values - Image -
avatar imagesize has been slightly decreased - Image -
mini imagedefault width has been increased to35px - Item - item
descriptionnow longer sets amax-width - Icon -
disabled iconnow havepointer-eventsagain. - Label - Label size now varies by type.
pointing labelare now1emby default. - Label - Padding on
corner labelhas been increased - Input - Input now use
eminstead ofremso they will inherit the size of the elements they are nested inside - Progress - Update contrast on
indicating, update default styles. Fixed some examples - Menu - Menu now uses
borderfor borders instead ofbox-shadow - Menu -
secondary pointing menuhas had some slight design tweaks, thinner lines, more padding - Menu - Active sub-menu items are now
bold - Menu - Menus no longer have additional borders on
active itemin the default theme - Menu -
tiered menuhas been removed - Menu - Increased contrast on
invertedmenu selection for legibility - Modal - Modals now used fixed widths and not percentage widths. Widths might be slightly different.
- Modal - Modal no longer observes DOM changes by default, added setting to enable
- Message - Slightly increases
box-shadow - Popup - Popups now default to
exclusive: falseand will not hide other popups when opening - Popup - Popup no longer produces a console error when a position cannot be found on the page.
- Rating - Rating styles have been adjusted to use subtle transitions and tweaked color values.
- Segment - Clearfix has been removed from
ui segment - Sidebar - Sidebar
legacyanimations have been removed. 3D transforms are now available in all supported browsers. - Search - Slightly adjusted search result theme for clarity
- Segment - Segment now uses
borderfor border instead of a secondbox-shadow, this may adjust position by 1pixel - Statistic - Statistic label styles have been updated
- Site - Additional font variables have been added to site to help clarify variable purpose.
- Site - Increase contrast on default hovered/down colors for colored variations
- Site - Page background is now
#FFFFFFby default instead of an offwhite#F7F7F7 - Site - Adjusted global line height to the closest even pixel value
- Table - Table header colors and padding defaults have been slightly adjusted
- Table - Horizontal cell padding has been slightly reduced, and cell borders are slightly lighter.
- Transition - Transition no longer checks for vendor prefixed
animation-namecss property. This was introduced in jQuery1.8 - Transition - Some transition have been modified so that the
inanimation is more telegraphed than theoutanimation, which may now recede more gently. - Visibility - In returned
calculationsobject,visibleandhiddenare renamed toonScreenandoffScreen, since this describes more accurately what the value represents.