Merge lp:~daker/ubuntu-html5-theme/fix.1253444 into lp:~ubuntu-html5-theme-devs/ubuntu-html5-theme/ambiance

Proposed by Adnane Belmadiaf
Status: Merged
Approved by: Alexandre Abreu
Approved revision: 95
Merged at revision: 94
Proposed branch: lp:~daker/ubuntu-html5-theme/fix.1253444
Merge into: lp:~ubuntu-html5-theme-devs/ubuntu-html5-theme/ambiance
Diff against target: 109 lines (+24/-20)
2 files modified
0.1/ambiance/css/toolbars.css (+18/-14)
0.1/examples/widgets/Toolbar.html (+6/-6)
To merge this branch: bzr merge lp:~daker/ubuntu-html5-theme/fix.1253444
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Alexandre Abreu Approve
Review via email: mp+196392@code.launchpad.net

Commit message

Fixed the toolbar to match the sdk

To post a comment you must log in.
95. By Adnane Belmadiaf

Another CSS adjustement

Revision history for this message
Alexandre Abreu (abreu-alexandre) :
review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file '0.1/ambiance/css/toolbars.css'
--- 0.1/ambiance/css/toolbars.css 2013-07-17 15:27:43 +0000
+++ 0.1/ambiance/css/toolbars.css 2013-11-22 21:52:09 +0000
@@ -5,18 +5,18 @@
5 * This file is part of ubuntu-html5-theme.5 * This file is part of ubuntu-html5-theme.
6 *6 *
7 * This package is free software; you can redistribute it and/or modify7 * This package is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as 8 * it under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation; either version 3 of the 9 * published by the Free Software Foundation; either version 3 of the
10 * License, or10 * License, or
11 * (at your option) any later version.11 * (at your option) any later version.
12 12
13 * This package is distributed in the hope that it will be useful,13 * This package is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.16 * GNU General Public License for more details.
17 17
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this program. If not, see 19 * License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.20 * <http://www.gnu.org/licenses/>.
21 */21 */
2222
@@ -26,26 +26,26 @@
2626
27[data-role="footer"] {27[data-role="footer"] {
28 background: transparent url('../img/toolbar_dropshadow@20.png') repeat-x top left;28 background: transparent url('../img/toolbar_dropshadow@20.png') repeat-x top left;
29 height: 70px;29 height: 85px;
30 width: 100%;30 width: 100%;
31 position: fixed;31 position: fixed;
32 z-index: 100;32 z-index: 100;
33 left: 0;33 left: 0;
34 bottom: -50px;34 bottom: -65px;
35 -webkit-transition: -webkit-transform 0.1s ease-in-out;35 -webkit-transition: -webkit-transform 0.1s ease-in-out;
36 transition: transform 0.1s ease-in-out;36 transition: transform 0.1s ease-in-out;
37}37}
3838
39[data-role="footer"].revealed {39[data-role="footer"].revealed {
40 -webkit-transform: translate3d(0, -50px, 0);40 -webkit-transform: translate3d(0, -65px, 0);
41 transform: translate3d(0, -50px, 0);41 transform: translate3d(0, -65px, 0);
42}42}
4343
44[data-role="footer"] nav {44[data-role="footer"] nav {
45 background: #fdfdfd;45 background: #fdfdfd;
46 margin-top: 20px;46 margin-top: 20px;
47 display: block;47 display: block;
48 height: 40px;48 height: 55px;
49 padding-top: 10px;49 padding-top: 10px;
50}50}
5151
@@ -56,13 +56,17 @@
56[data-role="footer"] nav ul li,56[data-role="footer"] nav ul li,
57[data-role="footer"] nav ul li a {57[data-role="footer"] nav ul li a {
58 color: #7d767b;58 color: #7d767b;
59 font-size: 0.7rem;59 font-size: 0.6rem;
60 text-align: center;60 text-align: center;
61 width: 55px;61 width: 60px;
62 float: right;62 float: left;
63 text-decoration: none;63 text-decoration: none;
64}64}
6565
66[data-role="footer"] nav ul li {
67 padding-top: 4px;
68}
69
66[data-role="footer"] nav ul li img {70[data-role="footer"] nav ul li img {
67 width: 16px;71 width: 16px;
68 height: 16px;72 height: 16px;
6973
=== modified file '0.1/examples/widgets/Toolbar.html'
--- 0.1/examples/widgets/Toolbar.html 2013-07-17 15:27:43 +0000
+++ 0.1/examples/widgets/Toolbar.html 2013-11-22 21:52:09 +0000
@@ -5,18 +5,18 @@
5 This file is part of ubuntu-html5-theme.5 This file is part of ubuntu-html5-theme.
66
7 This package is free software; you can redistribute it and/or modify7 This package is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as 8 it under the terms of the GNU Lesser General Public License as
9 published by the Free Software Foundation; either version 3 of the 9 published by the Free Software Foundation; either version 3 of the
10 License, or10 License, or
11 (at your option) any later version.11 (at your option) any later version.
12 12
13 This package is distributed in the hope that it will be useful,13 This package is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.16 GNU General Public License for more details.
17 17
18 You should have received a copy of the GNU Lesser General Public 18 You should have received a copy of the GNU Lesser General Public
19 License along with this program. If not, see 19 License along with this program. If not, see
20 <http://www.gnu.org/licenses/>.20 <http://www.gnu.org/licenses/>.
21-->21-->
2222

Subscribers

People subscribed via source and target branches