Browse Source

Fix unnecessary classes in examples

pull/2308/merge
jlukic 9 years ago
parent
commit
212d9da67e
3 changed files with 3 additions and 3 deletions
  1. 2
      RELEASE-NOTES.md
  2. 2
      examples/fixed-menu.html
  3. 2
      examples/sticky-menu.html

2
RELEASE-NOTES.md

@ -9,7 +9,7 @@
- **Grid** - `page grid` has been deprecated. `page grids` used percentage gutters which made it unnecessarily difficult to style responsive page content. Moving forward we recommend using `ui container` a fixed width responsinve container for holding page contents. - **Grid** - `page grid` has been deprecated. `page grids` used percentage gutters which made it unnecessarily difficult to style responsive page content. Moving forward we recommend using `ui container` a fixed width responsinve container for holding page contents.
- **Form Validation** - Form validation now passes settings through a `fields` object. This is to make form initialization match other components. The previous syntax will continue to work but produce deprecation notices in console - **Form Validation** - Form validation now passes settings through a `fields` object. This is to make form initialization match other components. The previous syntax will continue to work but produce deprecation notices in console
- **Dropdown** - Dropdown item `description` now float right in default theme and should be included before other content - **Dropdown** - Dropdown item `description` now float right in default theme and should be included before other content
- **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`
- **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 uses `1em` size for `medium` popups.
- **Colors** - Default colors have been slightly adjusted, and new colors have been added, which may cause slight changes in your design. - **Colors** - Default colors have been slightly adjusted, and new colors have been added, which may cause slight changes in your design.
**New UI** **New UI**

2
examples/fixed-menu.html

@ -89,7 +89,7 @@
<div class="ui inverted vertical footer segment"> <div class="ui inverted vertical footer segment">
<div class="ui center aligned container"> <div class="ui center aligned container">
<div class="ui stackable inverted divided equal height grid">
<div class="ui stackable inverted divided grid">
<div class="three wide column"> <div class="three wide column">
<h4 class="ui inverted header">Group 1</h4> <h4 class="ui inverted header">Group 1</h4>
<div class="ui inverted link list"> <div class="ui inverted link list">

2
examples/sticky-menu.html

@ -182,7 +182,7 @@
<div class="ui inverted vertical footer segment"> <div class="ui inverted vertical footer segment">
<div class="ui center aligned container"> <div class="ui center aligned container">
<div class="ui stackable inverted divided equal height grid">
<div class="ui stackable inverted divided grid">
<div class="three wide column"> <div class="three wide column">
<h4 class="ui inverted header">Group 1</h4> <h4 class="ui inverted header">Group 1</h4>
<div class="ui inverted link list"> <div class="ui inverted link list">

Loading…
Cancel
Save