forked from aozora/bootmetro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
90 lines (60 loc) · 3.44 KB
/
CHANGELOG
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
=================================
v1.0 pre (13/12/2012)
=================================
Merged with Twitter Bootstrap v2.2.2
=================================
v1.0 pre (10/12/2012)
=================================
Pivot plugin (bootmetro-pivot.js)
---------------------------------
Removed registration of click event using the selector '.pivot .pivot-headers > a';
implemented data-api like bootstrap plugins, which register click event with the selector '[data-pivot-index]' on the document.
This also frees you to locate the the pivot clickable elements anywhere in the document.
IcoMoon web font
---------------------------------
There is a temporary fix for the problem reported in Issue #51 'Icons not showing up in chrome', changing the bootmetro-icons css
to exchange the registration order of the font. However this fix should work only for Chrome, still remains the issue for some Firefox users
on Windows; the final fix will be available in the next commits with a regeneration of the css for IcoMoon.
All pages header markup
---------------------------------
I'm refactoring the markup for the header, that have the most problems for lower resolution devices; the work is not yet finished, the committed
markup may change in net commits.
All pages markup
---------------------------------
Fixed the case for the DOCTYPE directive to be standard compliant.
=================================
v1.0 pre (07/12/2012)
=================================
Pivot plugin (bootmetro-pivot.js)
---------------------------------
The markup for the pivot-headers anchors has changed: the attribute data-to has been renamed to data-pivot-index, so now it's name is more semantic, since his value is the index of the item to display.
Note that the pivot plugin, due to the fact that in reality is the bootstrap-carousel with something less, has a serious issue (see https://github.com/aozora/bootmetro/issues/45 ) that probably will lead me to rewrite this plugin from zero; I hope in that case to not break anything.
Panorama
---------------------------------
The markup has changed from:
<div id="hub" class="metro panorama span12">
<div class="panorama-sections">
...
</div>
</div>
<a id="panorama-scroll-prev" href="#"></a>
<a id="panorama-scroll-next" href="#"></a>
to this:
<div id="hub" class="metro span12">
<div class="panorama">
<div class="panorama-sections">
...
</div>
</div>
<a id="panorama-scroll-prev" href="#"></a>
<a id="panorama-scroll-next" href="#"></a>
</div>
All pages markup:
---------------------------------
In all the demo pages I replaced the fluid css classes with the non fluid ones, so "container-fluid" is now, "container", and "row-fluid" is "row".
On the header element <header id="nav-bar"> I have removed the -fluid suffix from his inner div's; the elements <div id="header-container"> and <div id="top-info"> are now contained in the same div with class="span12"; before that row was split within 2 span.
This change was necessary to improve the responsive design for the header for lower resolutions ( < 798px width).
Theme Css Files
---------------------------------
the theme css files, metro-ui-light and metro-ui-dark are no longer used. metro-ui-light is renamed bootmetro-ui-light, and it is built with less.
The dark theme will be rebuilt with less in the next minor release.