-
Notifications
You must be signed in to change notification settings - Fork 2
/
changelog.txt
46 lines (37 loc) · 2.39 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
- V1.0, 15.03.2016 Original Release
- V1.0.1, 21 June 2016 - Bugfixing
- fixed sidebar in documentation
- fixed checkboxes and radios on Firefox
- fixed Dropdown in Navbars for mobile
- fixed broken link in documentation
IMPORTANT! Before upgrading from V1.0/V1.0.1 to V1.1.0, please read all the change long and then follow the instructions for the upgrade.
- V1.1.0, 11 July 2016 - Minor Updates and Bug Fixes
- Added colored shadows under the Buttons, Pagination & Nav Pills
- Removed ".btn-raised" class and made the raised button default (too many persons are using the .btn-raised as the default state so let's keep it simple and with less classes). Find more details in on the Upgrading Info below.
- Added ".btn-simple" class instead of the default link like buttons. Find more details in on the Upgrading Info below.
- Added a new color for buttons: White, you can use it with ".btn-white"
- Change the structure of _buttons.scss and made it more easy to be customized
- Added subtile animation on Tooltips
- Removed Glyphicons from bootstrap.min.css
- Update Bootstrap to v3.3.6
- Change structure of the "Feature with Icon and Title" to "Info Area with Icon and Title" to keep classes consistency with the PRO version. Find more details in on the Upgrading Info below.
- Update Font Awesome to the latest Version
- Added animations and transitions vendor prefixes for old browsers on Checkboxes and Radios
UPGRADING V1.0/V1.0.1 to V1.1.0
1. Buttons:
Please remove all the "btn-raised" classes from all the buttons. Now all the buttons have the "Raised" style on the default state. If you want to use the buttons without that style, like the old "Default" state from the V1.0 please add the class "btn-simple" to those buttons.
2. Features Area:
Please change the all structure:
<div class="feature feature-primary">
<i class="material-icons">chat</i>
<h4 class="title">First Feature</h4>
<p class="description">Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>
with the new one:
<div class="info">
<div class="icon icon-primary">
<i class="material-icons">chat</i>
</div>
<h4 class="info-title">First Feature</h4>
<p>Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough.</p>
</div>