Merge lp:~ubuntu-html5-theme-devs/ubuntu-html5-theme/new-header into lp:ubuntu-html5-theme

Proposed by Adnane Belmadiaf
Status: Merged
Approved by: Alexandre Abreu
Approved revision: 195
Merged at revision: 195
Proposed branch: lp:~ubuntu-html5-theme-devs/ubuntu-html5-theme/new-header
Merge into: lp:ubuntu-html5-theme
Diff against target: 20816 lines (+1681/-9339)
71 files modified
0.1/ambiance/css/appTemplate.css (+430/-94)
0.1/ambiance/css/sass/constants.scss (+2/-1)
0.1/ambiance/css/sass/default.scss (+12/-5)
0.1/ambiance/css/sass/functions.scss (+30/-0)
0.1/ambiance/css/sass/icons.scss (+16/-16)
0.1/ambiance/css/sass/listitems.scss (+1/-1)
0.1/ambiance/css/sass/mixins.scss (+4/-4)
0.1/ambiance/css/sass/popover.scss (+99/-28)
0.1/ambiance/css/sass/tabs.scss (+275/-45)
0.1/ambiance/css/sass/toolbars.scss (+1/-0)
0.1/ambiance/img/actions/add-to-playlist.svg (+0/-190)
0.1/ambiance/img/actions/add.svg (+0/-158)
0.1/ambiance/img/actions/calendar-today.svg (+0/-170)
0.1/ambiance/img/actions/call-start.svg (+0/-145)
0.1/ambiance/img/actions/camera-flip.svg (+0/-164)
0.1/ambiance/img/actions/clear-search.svg (+0/-170)
0.1/ambiance/img/actions/close.svg (+0/-156)
0.1/ambiance/img/actions/contact-new.svg (+0/-172)
0.1/ambiance/img/actions/contact.svg (+0/-161)
0.1/ambiance/img/actions/dialer.svg (+0/-208)
0.1/ambiance/img/actions/edit-clear.svg (+0/-161)
0.1/ambiance/img/actions/edit-copy.svg (+0/-177)
0.1/ambiance/img/actions/edit-cut.svg (+0/-154)
0.1/ambiance/img/actions/edit-delete.svg (+0/-190)
0.1/ambiance/img/actions/edit-paste.svg (+0/-200)
0.1/ambiance/img/actions/erase.svg (+0/-155)
0.1/ambiance/img/actions/event-new.svg (+0/-181)
0.1/ambiance/img/actions/flash-auto.svg (+0/-160)
0.1/ambiance/img/actions/go-down.svg (+0/-181)
0.1/ambiance/img/actions/go-next.svg (+0/-176)
0.1/ambiance/img/actions/home.svg (+0/-167)
0.1/ambiance/img/actions/info.svg (+0/-158)
0.1/ambiance/img/actions/insert-image.svg (+0/-164)
0.1/ambiance/img/actions/language-chooser.svg (+0/-166)
0.1/ambiance/img/actions/lock.svg (+0/-154)
0.1/ambiance/img/actions/media-eject.svg (+0/-159)
0.1/ambiance/img/actions/media-playback-pause.svg (+0/-157)
0.1/ambiance/img/actions/media-playback-start-rtl.svg (+0/-154)
0.1/ambiance/img/actions/media-playlist-shuffle.svg (+0/-185)
0.1/ambiance/img/actions/media-playlist.svg (+0/-173)
0.1/ambiance/img/actions/media-seek-backward.svg (+0/-167)
0.1/ambiance/img/actions/message-new.svg (+0/-173)
0.1/ambiance/img/actions/microphone-mute.svg (+0/-163)
0.1/ambiance/img/actions/note-new.svg (+0/-182)
0.1/ambiance/img/actions/notebook-new.svg (+0/-185)
0.1/ambiance/img/actions/notebook.svg (+0/-163)
0.1/ambiance/img/actions/outgoing-call.svg (+0/-166)
0.1/ambiance/img/actions/private-browsing.svg (+0/-149)
0.1/ambiance/img/actions/private-tab-new.svg (+0/-159)
0.1/ambiance/img/actions/redo.svg (+0/-170)
0.1/ambiance/img/actions/reminder-new.svg (+0/-194)
0.1/ambiance/img/actions/reminder.svg (+0/-191)
0.1/ambiance/img/actions/remove-from-call.svg (+0/-163)
0.1/ambiance/img/actions/share.svg (+0/-146)
0.1/ambiance/img/actions/starred.svg (+0/-146)
0.1/ambiance/img/actions/system-log-out.svg (+0/-174)
0.1/ambiance/img/actions/tab-new.svg (+0/-165)
0.1/ambiance/img/actions/unlike.svg (+0/-142)
0.1/ambiance/img/actions/view-fullscreen.svg (+0/-183)
0.1/ambiance/img/actions/voicemail.svg (+0/-163)
0.1/ambiance/img/icons/icon-call.svg (+0/-88)
0.1/ambiance/js/actionsbar.js (+151/-0)
0.1/ambiance/js/core.js (+89/-148)
0.1/ambiance/js/header.js (+6/-6)
0.1/ambiance/js/page.js (+24/-40)
0.1/ambiance/js/tab.js (+25/-28)
0.1/ambiance/js/tabs.js (+140/-301)
examples/html5-theme/apps/rss-reader/app.js (+22/-18)
examples/html5-theme/apps/rss-reader/index.html (+7/-5)
examples/html5-theme/widgets/Pagestack.html (+110/-101)
examples/html5-theme/widgets/Tabs.html (+237/-0)
To merge this branch: bzr merge lp:~ubuntu-html5-theme-devs/ubuntu-html5-theme/new-header
Reviewer Review Type Date Requested Status
Alexandre Abreu Approve
Review via email: mp+246618@code.launchpad.net

Commit message

New Ubuntu HTML5 header

To post a comment you must log in.
Revision history for this message
Adnane Belmadiaf (daker) wrote :

Can i have a first review/feedback on the API ?

194. By Adnane Belmadiaf

Fixed MR again

Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

When trying the branch on the rss reader a weird default icon appears at the top left,

review: Needs Fixing
195. By Adnane Belmadiaf

Fixed icon style

Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

question: why did you choose to have separate "action-wrapper"s and "tabs" ?

review: Needs Information
Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

could it be possible to add an "actions" api? ... something like:

Action {
readonly property string id
property bool enabled
property string icon
void triggered(Function callback)
}

Actions {
ActionList getActionsForTab(string tabId)
}

it would be nice to also add a:

Tabs {
void tabChanged(Tab oldTab, Tab newTab);
}

so that e.g. people could work on the associated actions when a switch happens

Revision history for this message
Alexandre Abreu (abreu-alexandre) wrote :

Approve, we will land the API in a second step

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '0.1/ambiance/css/appTemplate.css'
2--- 0.1/ambiance/css/appTemplate.css 2015-01-21 16:53:40 +0000
3+++ 0.1/ambiance/css/appTemplate.css 2015-01-30 23:39:52 +0000
4@@ -1,4 +1,3 @@
5-@charset "UTF-8";
6 /*
7 * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
8 * License granted by Canonical Limited
9@@ -78,6 +77,27 @@
10 * This file is part of ubuntu-html5-ui-toolkit.
11 *
12 * This package is free software; you can redistribute it and/or modify
13+ * it under the terms of the GNU Lesser General Public License as
14+ * published by the Free Software Foundation; either version 3 of the
15+ * License, or
16+ * (at your option) any later version.
17+
18+ * This package is distributed in the hope that it will be useful,
19+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
20+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21+ * GNU General Public License for more details.
22+
23+ * You should have received a copy of the GNU Lesser General Public
24+ * License along with this program. If not, see
25+ * <http://www.gnu.org/licenses/>
26+ */
27+/*
28+ * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
29+ * License granted by Canonical Limited
30+ *
31+ * This file is part of ubuntu-html5-ui-toolkit.
32+ *
33+ * This package is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU Lesser General Public License as
35 * published by the Free Software Foundation; either version 3 of the
36 * License, or
37@@ -208,61 +228,152 @@
38 /* ----------------------------------
39 * Tabs
40 * ---------------------------------- */
41+/* Workarround to load the Ubuntu Light font pad.lv/1186372 */
42+@font-face {
43+ font-family: 'Ubuntu';
44+ font-style: normal;
45+ font-weight: 300;
46+ src: local("Ubuntu Light"), local("Ubuntu-Light"), url(ubuntu-light.woff) format("woff");
47+}
48+@font-face {
49+ font-family: 'Ubuntu';
50+ font-style: normal;
51+ font-weight: 300;
52+ src: local("Ubuntu Light"), local("Ubuntu-Light"), url(ubuntu-light.woff) format("woff");
53+}
54 [data-role="header"] {
55- background: #ededf0 url("../img/background_paper@30.png") repeat-x top left;
56- height: 74px;
57+ background: #ededed;
58+ height: 60px;
59 width: 100%;
60- overflow: hidden;
61- position: relative;
62+ position: fixed;
63+ z-index: 10;
64 }
65 [data-role="header"]:after {
66- background: #C2C2C2;
67+ background: #c2c2c2;
68 content: "";
69 border-top: 1px solid #afafaf;
70- height: 14px;
71+ height: 15px;
72 width: 100%;
73 display: block;
74-}
75-[data-role="header"] .active {
76- color: #888888;
77- padding-left: 15px;
78- -webkit-opacity: 1;
79- opacity: 1;
80-}
81-[data-role="header"] .active:after {
82- content: "›";
83- padding-left: 10px;
84- -webkit-opacity: 0.5;
85- opacity: 0.5;
86-}
87-[data-role="header"] .inactive {
88- color: #a0a0a0;
89- -webkit-opacity: 0.5;
90- opacity: 0.5;
91+ position: absolute;
92+ top: 60px;
93 }
94
95 [data-role="tabs"] {
96- width: 100%;
97- white-space: nowrap;
98+ background: #ededed;
99+ -webkit-box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
100+ box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
101+ width: 160px;
102+ max-height: 250px;
103+ overflow: auto;
104+ -webkit-overflow-scrolling: touch;
105+ position: absolute;
106+ left: 0;
107+ top: 61px;
108+ z-index: 9;
109+ visibility: hidden;
110+ opacity: 0;
111+ transition: all 0.2s;
112+}
113+[data-role="tabs"].opened {
114+ visibility: visible;
115+ opacity: 1;
116 }
117
118 [data-role="tabitem"] {
119- display: inline-block;
120- font: 33px "Ubuntu";
121- font-weight: 100;
122- line-height: 60px;
123- padding-right: 35px;
124+ position: relative;
125+ padding: 16px 16px;
126+ border-bottom: 1px solid #d9d9d9;
127+ text-align: left;
128+ font-size: 0.9rem;
129+ cursor: pointer;
130+}
131+[data-role="tabitem"]:only-child {
132+ border-bottom: 0;
133+}
134+[data-role="tabitem"].active {
135+ display: none;
136+}
137+[data-role="tabitem"].inactive {
138+ display: block;
139+}
140+[data-role="tabitem"]:active {
141+ background: rgba(0, 0, 0, 0.05);
142+}
143+
144+[data-role="back-btn"] {
145+ background: #ededed;
146+ width: 40px;
147+ height: 60px;
148+ line-height: 60px;
149+ float: left;
150+ cursor: pointer;
151+ border: none;
152+ position: relative;
153+}
154+[data-role="back-btn"]:after {
155+ content: "";
156+ display: block;
157+ width: 20px;
158+ height: 20px;
159+ background: transparent url("/usr/share/icons/suru/actions/scalable/back.svg") no-repeat center center;
160+ background-size: 100%;
161+ margin: 0 auto;
162+}
163+[data-role="back-btn"]:disabled {
164+ background: transparent;
165+ width: 0;
166+}
167+[data-role="back-btn"]:active {
168+ background: rgba(0, 0, 0, 0.05);
169+}
170+
171+[data-role="tabs-btn"] {
172+ background: #ededed;
173+ width: 40px;
174+ height: 60px;
175+ line-height: 60px;
176+ float: left;
177+ cursor: pointer;
178+ border: none;
179+ position: relative;
180+ z-index: 10;
181+}
182+[data-role="tabs-btn"]:after {
183+ content: "";
184+ display: block;
185+ width: 20px;
186+ height: 20px;
187+ background: transparent url("/usr/share/icons/suru/actions/scalable/navigation-menu.svg") no-repeat center center;
188+ background-size: 100%;
189+ margin: 0 auto;
190+}
191+[data-role="tabs-btn"]:active {
192+ background: rgba(0, 0, 0, 0.05);
193+}
194+
195+[data-role="back-btn"]:disabled + [data-role="tabtitle"],
196+[data-role="back-btn"] + [data-role="tabtitle"],
197+[data-role="tabs-btn"] + [data-role="tabtitle"],
198+[data-role="tabs"] + [data-role="tabtitle"] {
199+ width: calc(100% - 140px);
200+}
201+
202+[data-role="tabtitle"] {
203+ font-family: "Ubuntu";
204+ font-size: x-large;
205+ font-weight: 300;
206 text-decoration: none;
207- color: #a0a0a0;
208- -webkit-opacity: 0;
209- opacity: 0;
210- -webkit-transition: opacity .25s ease-in-out;
211- transition: opacity .25s ease-in-out;
212- cursor: pointer;
213-}
214-[data-role="tabitem"]:only-child:after {
215- content: "";
216- padding-left: 10px;
217+ background: #ededed;
218+ color: #5d5d5d;
219+ float: left;
220+ height: 60px;
221+ line-height: 60px;
222+ white-space: nowrap;
223+ overflow: hidden;
224+ text-overflow: ellipsis;
225+ position: relative;
226+ z-index: 10;
227 }
228
229 [data-role="tab"] {
230@@ -278,8 +389,124 @@
231 display: block;
232 }
233
234+[data-role="actions"] {
235+ float: right;
236+ height: 60px;
237+ display: inline-block;
238+ padding-right: 8px;
239+ background: #ededed;
240+ position: relative;
241+ z-index: 10;
242+}
243+[data-role="actions"] button {
244+ border: 0;
245+ padding: 0;
246+ width: 40px;
247+ height: 60px;
248+ line-height: 60px;
249+ cursor: pointer;
250+ float: left;
251+ background: transparent;
252+}
253+[data-role="actions"] button img {
254+ position: relative;
255+ top: 5px;
256+}
257+[data-role="actions"] button:disabled {
258+ opacity: 0.3;
259+}
260+[data-role="actions"] button:after {
261+ content: "";
262+ display: block;
263+ width: 20px;
264+ height: 20px;
265+ background: transparent;
266+ background-size: 100%;
267+ margin: 0 auto;
268+}
269+[data-role="actions"] button:active {
270+ background: rgba(0, 0, 0, 0.05);
271+}
272+[data-role="actions"] [data-role="actions-wrapper"] {
273+ display: none;
274+}
275+[data-role="actions"] [data-role="actions-wrapper"]:first-child {
276+ display: block;
277+}
278+
279+[data-role="actions-overflow-icon"] {
280+ background: transparent;
281+}
282+[data-role="actions-overflow-icon"]:after {
283+ content: "";
284+ display: block;
285+ width: 20px;
286+ height: 20px;
287+ background: transparent url("/usr/share/icons/suru/actions/scalable/contextual-menu.svg") no-repeat center center !important;
288+ background-size: 100% !important;
289+ margin: 0 auto;
290+}
291+[data-role="actions-overflow-icon"]:active {
292+ background: rgba(0, 0, 0, 0.05);
293+}
294+
295+[data-role="actions-overflow-list"] {
296+ background: #ededed;
297+ -webkit-box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
298+ box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
299+ width: 160px;
300+ max-height: 250px;
301+ overflow: auto;
302+ -webkit-overflow-scrolling: touch;
303+ position: absolute;
304+ right: 0;
305+ top: 61px;
306+ z-index: 9;
307+ visibility: hidden;
308+ opacity: 0;
309+ transition: all 0.2s;
310+}
311+[data-role="actions-overflow-list"].opened {
312+ visibility: visible;
313+ opacity: 1;
314+}
315+[data-role="actions-overflow-list"] li {
316+ position: relative;
317+ padding: 16px 16px;
318+ border-bottom: 1px solid #d9d9d9;
319+ text-align: left;
320+ font-size: 0.8rem;
321+ cursor: pointer;
322+ text-align: left;
323+ padding-left: 45px;
324+ cursor: pointer;
325+ background: transparent no-repeat center left;
326+ background-size: 20px;
327+ background-position-x: 10px;
328+}
329+[data-role="actions-overflow-list"] li:only-child {
330+ border-bottom: 0;
331+}
332+[data-role="actions-overflow-list"] li:active {
333+ background-color: rgba(0, 0, 0, 0.05);
334+}
335+
336+[data-role="overlay"] {
337+ position: fixed;
338+ top: 75px;
339+ right: 0;
340+ bottom: 0;
341+ left: 0;
342+ z-index: 9;
343+ background: transparent;
344+ display: none;
345+}
346+[data-role="overlay"].active {
347+ display: block;
348+}
349+
350 /*
351- * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
352+ * Copyright (C) 2013, 2014 Adnane Belmadiaf <daker@ubuntu.com>
353 * License granted by Canonical Limited
354 *
355 * This file is part of ubuntu-html5-ui-toolkit.
356@@ -302,17 +529,17 @@
357 /* ----------------------------------
358 * Icons
359 * ---------------------------------- */
360-.icon {
361+[data-role="icon"] {
362 width: 26px;
363 height: 26px;
364 display: inline-block;
365 vertical-align: middle;
366 }
367-.icon.icon-call {
368- background: url(../img/icons/icon-call.svg) no-repeat scroll center center transparent;
369+[data-role="icon"][data-icon="call"] {
370+ background: url("/usr/share/icons/suru/actions/scalable/icon-call.svg") no-repeat scroll center center transparent;
371 background-size: 26px;
372 }
373-.icon.icon-caret {
374+[data-role="icon"][data-icon="caret"] {
375 background: url(../img/chevron_down@30.png) no-repeat scroll center center transparent;
376 background-size: 26px;
377 }
378@@ -445,7 +672,7 @@
379 }
380
381 .textfield.clear:focus {
382- background: url(artwork/icon_clear@20.png) no-repeat 97% center #fff;
383+ background: url(artwork/icon_clear@20.png) no-repeat 97% center white;
384 background-size: 12%;
385 }
386
387@@ -558,6 +785,7 @@
388 from {
389 -webkit-transform: rotate(1deg);
390 }
391+
392 to {
393 -webkit-transform: rotate(360deg);
394 }
395@@ -566,9 +794,11 @@
396 0% {
397 opacity: 0;
398 }
399+
400 50% {
401 opacity: 1;
402 }
403+
404 100% {
405 opacity: 0;
406 }
407@@ -698,33 +928,43 @@
408 0% {
409 -webkit-transform: translate3d(0, 0, 0);
410 }
411+
412 10% {
413 -webkit-transform: translate3d(-20px, 0, 0);
414 }
415+
416 20% {
417 -webkit-transform: translate3d(20px, 0, 0);
418 }
419+
420 30% {
421 -webkit-transform: translate3d(-20px, 0, 0);
422 }
423+
424 40% {
425 -webkit-transform: translate3d(20px, 0, 0);
426 }
427+
428 50% {
429 -webkit-transform: translate3d(-20px, 0, 0);
430 }
431+
432 60% {
433 -webkit-transform: translate3d(20px, 0, 0);
434 }
435+
436 70% {
437 -webkit-transform: translate3d(-20px, 0, 0);
438 }
439+
440 80% {
441 -webkit-transform: translate3d(20px, 0, 0);
442 }
443+
444 90% {
445 -webkit-transform: translate3d(-20px, 0, 0);
446 }
447+
448 100% {
449 -webkit-transform: translate3d(0, 0, 0);
450 }
451@@ -733,33 +973,43 @@
452 0% {
453 -webkit-transform: translate3d(0, 0, 0);
454 }
455+
456 10% {
457 -webkit-transform: translate3d(-20px, 0, 0);
458 }
459+
460 20% {
461 -webkit-transform: translate3d(20px, 0, 0);
462 }
463+
464 30% {
465 -webkit-transform: translate3d(-20px, 0, 0);
466 }
467+
468 40% {
469 -webkit-transform: translate3d(20px, 0, 0);
470 }
471+
472 50% {
473 -webkit-transform: translate3d(-20px, 0, 0);
474 }
475+
476 60% {
477 -webkit-transform: translate3d(20px, 0, 0);
478 }
479+
480 70% {
481 -webkit-transform: translate3d(-20px, 0, 0);
482 }
483+
484 80% {
485 -webkit-transform: translate3d(20px, 0, 0);
486 }
487+
488 90% {
489 -webkit-transform: translate3d(-20px, 0, 0);
490 }
491+
492 100% {
493 -webkit-transform: translate3d(0, 0, 0);
494 }
495@@ -806,7 +1056,7 @@
496 background: #dd4814;
497 border: 2px solid #dd4814;
498 border-radius: 6px;
499- color: #ffffff;
500+ color: white;
501 font-family: "Ubuntu";
502 font-size: 1rem;
503 padding: 9px 25px;
504@@ -816,22 +1066,22 @@
505 }
506 [data-role="button"].positive {
507 background: #38b44a;
508- color: #ffffff;
509+ color: white;
510 border-color: #38b44a;
511 }
512 [data-role="button"].information {
513 background: #2ab7ec;
514- color: #ffffff;
515+ color: white;
516 border-color: #2ab7ec;
517 }
518 [data-role="button"].secondary {
519- background: #ffffff;
520+ background: white;
521 color: #888888;
522 }
523 [data-role="button"].negative {
524- background: #b2b2b2;
525- color: #ffffff;
526- border-color: #b2b2b2;
527+ background: #929292;
528+ color: white;
529+ border-color: #929292;
530 }
531
532 /*
533@@ -1089,54 +1339,105 @@
534 * License along with this program. If not, see
535 * <http://www.gnu.org/licenses/>.
536 */
537-.popover {
538- -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
539- box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
540+.has_actions {
541+ top: 65px !important;
542+ left: 10px !important;
543+ right: 10px;
544+}
545+.has_actions li {
546+ text-align: left !important;
547+ padding-left: 45px !important;
548+ cursor: pointer;
549+ background: transparent no-repeat center left;
550+ background-size: 25px;
551+ background-position-x: 10px;
552+}
553+.has_actions:before {
554+ right: 5px;
555+ left: auto !important;
556+}
557+
558+.popover,
559+[data-role="popover"] {
560+ -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
561+ box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
562 position: absolute;
563 background: rgba(255, 255, 255, 0.98);
564- -webkit-border-radius: 15px;
565- border-radius: 15px;
566- -webkit-background-clip: padding-box;
567+ -webkit-border-radius: 8px;
568+ border-radius: 8px;
569 z-index: 110;
570- width: 320px;
571 left: 0;
572 top: 0;
573 color: #787878;
574 font-size: 1rem;
575- display: none;
576-}
577-.popover.active {
578- display: block;
579-}
580-.popover .list {
581- -webkit-border-radius: 15px;
582- border-radius: 15px;
583+ visibility: hidden;
584+ opacity: 0;
585+ -webkit-transform: scaleY(0);
586+ transform: scaleY(0);
587+ -webkit-transition: -webkit-transform 0.1s;
588+ transition: transform 0.1s;
589+}
590+.popover.active,
591+[data-role="popover"].active {
592+ visibility: visible;
593+ opacity: 1;
594+ -webkit-transform: scaleY(1);
595+ transform: scaleY(1);
596+}
597+.popover .list,
598+.popover ul,
599+[data-role="popover"] .list,
600+[data-role="popover"] ul {
601+ -webkit-border-radius: 8px;
602+ border-radius: 8px;
603 width: auto;
604 max-height: 250px;
605 overflow: auto;
606 -webkit-overflow-scrolling: touch;
607 }
608-.popover .list li {
609+.popover .list li,
610+.popover ul li,
611+[data-role="popover"] .list li,
612+[data-role="popover"] ul li {
613 position: relative;
614+ padding: 16px 20px;
615+ border-bottom: 1px solid #d9d9d9;
616 text-align: center;
617- font-size: 1rem;
618+ font-size: 0.9rem;
619 }
620-.popover .list li a {
621+.popover .list li a,
622+.popover ul li a,
623+[data-role="popover"] .list li a,
624+[data-role="popover"] ul li a {
625 color: #787878;
626 text-decoration: none;
627- display: block;
628- padding: 20px 10px;
629- border-bottom: 1px solid #d9d9d9;
630 }
631-.popover .list li a.active {
632+.popover .list li.active,
633+.popover ul li.active,
634+[data-role="popover"] .list li.active,
635+[data-role="popover"] ul li.active {
636 background: #ebebeb;
637 border-top: 1px solid #fcfcfc;
638+}
639+.popover .list li.active a,
640+.popover ul li.active a,
641+[data-role="popover"] .list li.active a,
642+[data-role="popover"] ul li.active a {
643 color: #dd4814;
644+ text-decoration: none;
645+}
646+.popover .list li:only-child,
647+.popover ul li:only-child,
648+[data-role="popover"] .list li:only-child,
649+[data-role="popover"] ul li:only-child {
650+ border-bottom: 0;
651 }
652
653 /* Caret */
654 .popover[data-gravity]:before,
655-.popover[data-gravity]:after {
656+.popover[data-gravity]:after,
657+[data-role="popover"][data-gravity]:before,
658+[data-role="popover"][data-gravity]:after {
659 position: absolute;
660 left: 50%;
661 width: 0;
662@@ -1144,16 +1445,18 @@
663 content: '';
664 }
665
666-.popover[data-gravity="n"]:before {
667- top: -17px;
668+.popover[data-gravity="n"]:before,
669+[data-role="popover"][data-gravity="n"]:before {
670+ top: -15px;
671 margin-left: -18px;
672 background: transparent url(../img/UpArrow@18.png) no-repeat 0.5rem 0.5rem;
673 background-size: 50% 50%;
674- width: 37px;
675- height: 18px;
676+ width: 28px;
677+ height: 15px;
678 }
679
680-.popover[data-gravity="w"]:before {
681+.popover[data-gravity="w"]:before,
682+[data-role="popover"][data-gravity="w"]:before {
683 top: 50%;
684 margin-left: -17px;
685 margin-top: -18px;
686@@ -1164,7 +1467,8 @@
687 left: 0;
688 }
689
690-.popover[data-gravity="s"]:after {
691+.popover[data-gravity="s"]:after,
692+[data-role="popover"][data-gravity="s"]:after {
693 bottom: -9px;
694 margin-left: -18px;
695 background: transparent url(../img/DownArrow@18.png) no-repeat 0.5rem 0.5rem;
696@@ -1173,7 +1477,8 @@
697 height: 18px;
698 }
699
700-.popover[data-gravity="e"]:before {
701+.popover[data-gravity="e"]:before,
702+[data-role="popover"][data-gravity="e"]:before {
703 top: 50%;
704 margin-right: -10px;
705 margin-top: -18px;
706@@ -1185,6 +1490,32 @@
707 left: initial;
708 }
709
710+.has_tabs {
711+ top: 65px;
712+ left: 10px;
713+ right: 10px;
714+}
715+.has_tabs li {
716+ text-align: left !important;
717+ padding-left: 20px !important;
718+ cursor: pointer;
719+}
720+.has_tabs:before {
721+ left: 30px !important;
722+}
723+
724+/* Tablet */
725+@media only screen and (min-width: 870px) {
726+ .popover,
727+ [data-role="popover"] {
728+ width: 320px;
729+ }
730+
731+ .has_actions {
732+ left: auto !important;
733+ right: 10px !important;
734+ }
735+}
736 /*
737 * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
738 * License granted by Canonical Limited
739@@ -1285,7 +1616,7 @@
740 font-size: 0.8rem;
741 }
742 [data-role="list"] ul li > label {
743- z-index: 100;
744+ z-index: 9;
745 width: 4.5rem;
746 height: 2.2rem;
747 right: 0.5rem;
748@@ -1355,6 +1686,7 @@
749 bottom: -65px;
750 -webkit-transition: -webkit-transform 0.1s ease-in-out;
751 transition: transform 0.1s ease-in-out;
752+ display: none;
753 }
754 [data-role="footer"].revealed {
755 -webkit-transform: translate3d(0, -65px, 0);
756@@ -1530,8 +1862,8 @@
757 * <http://www.gnu.org/licenses/>.
758 */
759 [data-role="option-selector"] {
760- -webkit-box-shadow: inset 0 2px 2px 0 #D5D5D5;
761- box-shadow: inset 0 2px 2px 0 #D5D5D5;
762+ -webkit-box-shadow: inset 0 2px 2px 0 #d5d5d5;
763+ box-shadow: inset 0 2px 2px 0 #d5d5d5;
764 width: 100%;
765 height: auto;
766 margin: 0 auto;
767@@ -1637,20 +1969,26 @@
768 -webkit-tap-highlight-color: transparent;
769 }
770
771+html, body,
772+[data-role="mainview"],
773+[data-role="content"] {
774+ position: relative;
775+ width: 100%;
776+ min-height: 100%;
777+}
778+
779 body {
780- background: #ededf0 url("../img/background_paper@30.png") repeat top left;
781+ background: #ededed;
782 font-family: "Ubuntu";
783 font-weight: normal;
784 color: #787878;
785 }
786
787 [data-role="content"] {
788- background: #ededf0 url("../img/background_paper@30.png") repeat top left;
789+ background: #ededed;
790 border-top: 1px solid #f0f0f0;
791- height: auto;
792- min-height: auto;
793- width: 100%;
794 font-size: 1rem "Ubuntu";
795+ min-height: calc(100% - 75px);
796 color: #787878;
797 }
798
799@@ -1723,5 +2061,3 @@
800 font-size: 8px;
801 line-height: 1.3;
802 }
803-
804-/*# sourceMappingURL=appTemplate.css.map */
805
806=== modified file '0.1/ambiance/css/sass/constants.scss'
807--- 0.1/ambiance/css/sass/constants.scss 2015-01-14 18:40:45 +0000
808+++ 0.1/ambiance/css/sass/constants.scss 2015-01-30 23:39:52 +0000
809@@ -27,7 +27,8 @@
810 $text_color: #787878;
811 $cream: #f3f3e7;
812 $warm_grey: #888888;
813-$light_grey: #b2b2b2;
814+$light_grey: #929292;
815+$dark_grey: #5d5d5d;
816 $green: #38b44a;
817 $blue: #2ab7ec;
818 $white: #ffffff;
819
820=== modified file '0.1/ambiance/css/sass/default.scss'
821--- 0.1/ambiance/css/sass/default.scss 2014-04-04 13:19:54 +0000
822+++ 0.1/ambiance/css/sass/default.scss 2015-01-30 23:39:52 +0000
823@@ -22,6 +22,7 @@
824
825 @import "constants";
826 @import "mixins";
827+@import "functions";
828 @import "reset";
829 @import "tabs";
830 @import "icons";
831@@ -44,20 +45,26 @@
832 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
833 }
834
835+html, body,
836+[data-role="mainview"],
837+[data-role="content"] {
838+ position: relative;
839+ width: 100%;
840+ min-height: 100%;
841+}
842+
843 body {
844- background: #ededf0 url("../img/background_paper@30.png") repeat top left;
845+ background: #ededed;
846 font-family: $font_family;
847 font-weight: normal;
848 color: $text_color;
849 }
850
851 [data-role="content"] {
852- background: #ededf0 url("../img/background_paper@30.png") repeat top left;
853+ background: #ededed;
854 border-top: 1px solid #f0f0f0;
855- height: auto;
856- min-height: auto;
857- width: 100%;
858 font-size: 1rem $font_family;
859+ min-height: calc(100% - 75px);
860 color: $text_color;
861 }
862
863
864=== added file '0.1/ambiance/css/sass/functions.scss'
865--- 0.1/ambiance/css/sass/functions.scss 1970-01-01 00:00:00 +0000
866+++ 0.1/ambiance/css/sass/functions.scss 2015-01-30 23:39:52 +0000
867@@ -0,0 +1,30 @@
868+/*
869+ * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
870+ * License granted by Canonical Limited
871+ *
872+ * This file is part of ubuntu-html5-ui-toolkit.
873+ *
874+ * This package is free software; you can redistribute it and/or modify
875+ * it under the terms of the GNU Lesser General Public License as
876+ * published by the Free Software Foundation; either version 3 of the
877+ * License, or
878+ * (at your option) any later version.
879+
880+ * This package is distributed in the hope that it will be useful,
881+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
882+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
883+ * GNU General Public License for more details.
884+
885+ * You should have received a copy of the GNU Lesser General Public
886+ * License along with this program. If not, see
887+ * <http://www.gnu.org/licenses/>
888+ */
889+
890+@function units_gu($value){
891+ @return $value*8px
892+}
893+
894+@function icon($icon-name){
895+ @return "/usr/share/icons/suru/actions/scalable/" + $icon-name + ".svg"
896+}
897+
898
899=== modified file '0.1/ambiance/css/sass/icons.scss'
900--- 0.1/ambiance/css/sass/icons.scss 2014-02-24 22:24:41 +0000
901+++ 0.1/ambiance/css/sass/icons.scss 2015-01-30 23:39:52 +0000
902@@ -1,5 +1,5 @@
903 /*
904- * Copyright (C) 2013 Adnane Belmadiaf <daker@ubuntu.com>
905+ * Copyright (C) 2013, 2014 Adnane Belmadiaf <daker@ubuntu.com>
906 * License granted by Canonical Limited
907 *
908 * This file is part of ubuntu-html5-ui-toolkit.
909@@ -24,19 +24,19 @@
910 * Icons
911 * ---------------------------------- */
912
913-.icon {
914- width: 26px;
915- height: 26px;
916- display: inline-block;
917- vertical-align: middle;
918-
919- &.icon-call {
920- background: url(../img/icons/icon-call.svg) no-repeat scroll center center transparent;
921- background-size: 26px;
922- }
923-
924- &.icon-caret {
925- background: url(../img/chevron_down@30.png) no-repeat scroll center center transparent;
926- background-size: 26px;
927- }
928+[data-role="icon"] {
929+ width: 26px;
930+ height: 26px;
931+ display: inline-block;
932+ vertical-align: middle;
933+
934+ &[data-icon="call"] {
935+ background: url(icon(icon-call)) no-repeat scroll center center transparent;
936+ background-size: 26px;
937+ }
938+
939+ &[data-icon="caret"] {
940+ background: url(../img/chevron_down@30.png) no-repeat scroll center center transparent;
941+ background-size: 26px;
942+ }
943 }
944\ No newline at end of file
945
946=== modified file '0.1/ambiance/css/sass/listitems.scss'
947--- 0.1/ambiance/css/sass/listitems.scss 2014-03-30 21:55:07 +0000
948+++ 0.1/ambiance/css/sass/listitems.scss 2015-01-30 23:39:52 +0000
949@@ -107,7 +107,7 @@
950 }
951
952 > label {
953- z-index: 100;
954+ z-index: 9;
955 width: 4.5rem;
956 height: 2.2rem;
957 right: 0.5rem;
958
959=== modified file '0.1/ambiance/css/sass/mixins.scss'
960--- 0.1/ambiance/css/sass/mixins.scss 2014-02-17 16:25:38 +0000
961+++ 0.1/ambiance/css/sass/mixins.scss 2015-01-30 23:39:52 +0000
962@@ -21,11 +21,11 @@
963 */
964
965 @mixin box_sizing($type: border-box) {
966- -webkit-box-sizing: $type;
967- box-sizing: $type;
968+ -webkit-box-sizing: $type;
969+ box-sizing: $type;
970 }
971
972 @mixin box_shadow($type: inset 0 1px 1px rgba(0, 0, 0, 0.1)) {
973- -webkit-box-shadow: $type;
974- box-shadow: $type;
975+ -webkit-box-shadow: $type;
976+ box-shadow: $type;
977 }
978\ No newline at end of file
979
980=== modified file '0.1/ambiance/css/sass/popover.scss' (properties changed: -x to +x)
981--- 0.1/ambiance/css/sass/popover.scss 2014-02-25 21:33:44 +0000
982+++ 0.1/ambiance/css/sass/popover.scss 2015-01-30 23:39:52 +0000
983@@ -20,28 +20,57 @@
984 * <http://www.gnu.org/licenses/>.
985 */
986
987-.popover {
988- @include box_shadow (0 0 10px rgba(0, 0, 0, 0.5));
989+
990+.has_actions {
991+ top: 65px!important;
992+ left: 10px!important;
993+ right: 10px;
994+
995+ li {
996+ text-align: left!important;
997+ padding-left: 45px!important;
998+ cursor: pointer;
999+ background: transparent no-repeat center left;
1000+ background-size: 25px;
1001+ background-position-x: 10px;
1002+ }
1003+
1004+ &:before {
1005+ right: 5px;
1006+ left: auto!important;
1007+ }
1008+}
1009+
1010+.popover,
1011+[data-role="popover"] {
1012+ @include box_shadow (0 0 2px 0 rgba(0, 0, 0, 0.3));
1013 position: absolute;
1014 background: rgba(255, 255, 255, 0.98);
1015- -webkit-border-radius: 15px;
1016- border-radius: 15px;
1017- -webkit-background-clip: padding-box;
1018+ -webkit-border-radius: 8px;
1019+ border-radius: 8px;
1020 z-index: 110;
1021- width: 320px;
1022 left: 0;
1023 top: 0;
1024 color: $text_color;
1025 font-size: 1rem;
1026- display: none;
1027+ visibility: hidden;
1028+ opacity: 0;
1029+ -webkit-transform: scaleY(0.0);
1030+ transform: scaleY(0.0);
1031+ -webkit-transition: -webkit-transform 0.1s;
1032+ transition: transform 0.1s;
1033
1034 &.active {
1035- display: block;
1036+ visibility: visible;
1037+ opacity: 1;
1038+ -webkit-transform: scaleY(1.0);
1039+ transform: scaleY(1.0);
1040 }
1041
1042- .list {
1043- -webkit-border-radius: 15px;
1044- border-radius: 15px;
1045+ .list,
1046+ ul {
1047+ -webkit-border-radius: 8px;
1048+ border-radius: 8px;
1049 width: auto;
1050 max-height: 250px;
1051 overflow: auto;
1052@@ -49,29 +78,38 @@
1053
1054 li {
1055 position: relative;
1056+ padding: 16px 20px;
1057+ border-bottom: 1px solid #d9d9d9;
1058 text-align: center;
1059- font-size: 1rem;
1060+ font-size: 0.9rem;
1061
1062 a {
1063- color: #787878;
1064+ color: $text_color;
1065 text-decoration: none;
1066- display: block;
1067- padding: 20px 10px;
1068- border-bottom: 1px solid #d9d9d9;
1069-
1070- &.active {
1071- background: #ebebeb;
1072- border-top: 1px solid #fcfcfc;
1073+ }
1074+
1075+ &.active {
1076+ background: #ebebeb;
1077+ border-top: 1px solid #fcfcfc;
1078+
1079+ a {
1080 color: $ubuntu_orange;
1081+ text-decoration: none;
1082 }
1083 }
1084+
1085+ &:only-child {
1086+ border-bottom: 0;
1087+ }
1088 }
1089 }
1090 }
1091
1092 /* Caret */
1093 .popover[data-gravity]:before,
1094-.popover[data-gravity]:after {
1095+.popover[data-gravity]:after,
1096+[data-role="popover"][data-gravity]:before,
1097+[data-role="popover"][data-gravity]:after {
1098 position: absolute;
1099 left: 50%;
1100 width: 0;
1101@@ -79,16 +117,18 @@
1102 content: '';
1103 }
1104
1105-.popover[data-gravity="n"]:before {
1106- top: -17px;
1107+.popover[data-gravity="n"]:before,
1108+[data-role="popover"][data-gravity="n"]:before {
1109+ top: -15px;
1110 margin-left: -18px;
1111 background: transparent url(../img/UpArrow@18.png) no-repeat 0.5rem 0.5rem;
1112 background-size: 50% 50%;
1113- width: 37px;
1114- height: 18px;
1115+ width: 28px;
1116+ height: 15px;
1117 }
1118
1119-.popover[data-gravity="w"]:before {
1120+.popover[data-gravity="w"]:before,
1121+[data-role="popover"][data-gravity="w"]:before {
1122 top: 50%;
1123 margin-left: -17px;
1124 margin-top: -18px;
1125@@ -99,7 +139,8 @@
1126 left: 0;
1127 }
1128
1129-.popover[data-gravity="s"]:after {
1130+.popover[data-gravity="s"]:after,
1131+[data-role="popover"][data-gravity="s"]:after {
1132 bottom: -9px;
1133 margin-left: -18px;
1134 background: transparent url(../img/DownArrow@18.png) no-repeat 0.5rem 0.5rem;
1135@@ -108,7 +149,8 @@
1136 height: 18px;
1137 }
1138
1139-.popover[data-gravity="e"]:before {
1140+.popover[data-gravity="e"]:before,
1141+[data-role="popover"][data-gravity="e"]:before {
1142 top: 50%;
1143 margin-right: -10px;
1144 margin-top: -18px;
1145@@ -118,4 +160,33 @@
1146 height: 37px;
1147 right: 0;
1148 left: initial;
1149+}
1150+
1151+.has_tabs {
1152+ top: 65px;
1153+ left: 10px;
1154+ right: 10px;
1155+
1156+ li {
1157+ text-align: left!important;
1158+ padding-left: 20px!important;
1159+ cursor: pointer;
1160+ }
1161+
1162+ &:before {
1163+ left: 30px!important;
1164+ }
1165+}
1166+
1167+/* Tablet */
1168+@media only screen and (min-width: 870px){
1169+ .popover,
1170+ [data-role="popover"] {
1171+ width: 320px;
1172+ }
1173+
1174+ .has_actions {
1175+ left: auto!important;
1176+ right: 10px!important;
1177+ }
1178 }
1179\ No newline at end of file
1180
1181=== modified file '0.1/ambiance/css/sass/tabs.scss' (properties changed: -x to +x)
1182--- 0.1/ambiance/css/sass/tabs.scss 2015-01-14 18:35:19 +0000
1183+++ 0.1/ambiance/css/sass/tabs.scss 2015-01-30 23:39:52 +0000
1184@@ -24,66 +24,166 @@
1185 * Tabs
1186 * ---------------------------------- */
1187
1188+/* Workarround to load the Ubuntu Light font pad.lv/1186372 */
1189+@font-face {
1190+ font-family: 'Ubuntu';
1191+ font-style: normal;
1192+ font-weight: 300;
1193+ src: local('Ubuntu Light'), local('Ubuntu-Light'), url(ubuntu-light.woff) format('woff');
1194+}
1195+
1196+@font-face {
1197+ font-family: 'Ubuntu';
1198+ font-style: normal;
1199+ font-weight: 300;
1200+ src: local('Ubuntu Light'), local('Ubuntu-Light'), url(ubuntu-light.woff) format('woff');
1201+}
1202+
1203 [data-role="header"] {
1204- background: #ededf0 url("../img/background_paper@30.png") repeat-x top left;
1205- height: 74px;
1206+ background: #ededed;
1207+ height: units_gu(7.5);
1208 width: 100%;
1209- overflow: hidden;
1210- position: relative;
1211+ position: fixed;
1212+ z-index: 10;
1213
1214 &:after {
1215- background: #C2C2C2;
1216+ background: #c2c2c2;
1217 content: "";
1218 border-top: 1px solid #afafaf;
1219- height: 14px;
1220+ height: 15px;
1221 width: 100%;
1222 display: block;
1223- }
1224-
1225- .active {
1226- color: #888888;
1227- padding-left: 15px;
1228- -webkit-opacity: 1;
1229- opacity: 1;
1230-
1231- &:after {
1232- content: "›";
1233- padding-left: 10px;
1234- -webkit-opacity: 0.5;
1235- opacity: 0.5;
1236- }
1237- }
1238-
1239- .inactive {
1240- color: #a0a0a0;
1241- -webkit-opacity: 0.5;
1242- opacity: 0.5;
1243+ position: absolute;
1244+ top: 60px;
1245 }
1246 }
1247
1248 [data-role="tabs"] {
1249- width: 100%;
1250- white-space: nowrap;
1251+ background: #ededed;
1252+ -webkit-box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
1253+ box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
1254+ width: units_gu(20);
1255+ max-height: 250px;
1256+ overflow: auto;
1257+ -webkit-overflow-scrolling: touch;
1258+ position: absolute;
1259+ left: 0;
1260+ top: 61px;
1261+ z-index: 9;
1262+ visibility: hidden;
1263+ opacity: 0;
1264+ transition: all 0.2s;
1265+
1266+ &.opened {
1267+ visibility: visible;
1268+ opacity: 1;
1269+ }
1270 }
1271
1272 [data-role="tabitem"] {
1273- display: inline-block;
1274- font: 33px $font_family;
1275- font-weight: 100;
1276- line-height: 60px;
1277- padding-right: 35px;
1278+ position: relative;
1279+ padding: 16px units_gu(2);
1280+ border-bottom: 1px solid #d9d9d9;
1281+ text-align: left;
1282+ font-size: 0.9rem;
1283+ cursor: pointer;
1284+
1285+ &:only-child {
1286+ border-bottom: 0;
1287+ }
1288+
1289+ &.active {
1290+ display: none;
1291+ }
1292+
1293+ &.inactive {
1294+ display: block;
1295+ }
1296+
1297+ &:active {
1298+ background: rgba(0, 0, 0, 0.05);
1299+ }
1300+}
1301+
1302+[data-role="back-btn"] {
1303+ background: #ededed;
1304+ width: units_gu(5);
1305+ height: units_gu(7.5);
1306+ line-height: units_gu(7.5);
1307+ float: left;
1308+ cursor: pointer;
1309+ border: none;
1310+ position: relative;
1311+
1312+ &:after {
1313+ content: "";
1314+ display: block;
1315+ width: units_gu(2.5);
1316+ height: units_gu(2.5);
1317+ background: transparent url(icon(back)) no-repeat center center;
1318+ background-size: 100%;
1319+ margin: 0 auto;
1320+ }
1321+
1322+ &:disabled {
1323+ background: transparent;
1324+ width: 0;
1325+ }
1326+
1327+ &:active {
1328+ background: rgba(0, 0, 0, 0.05);
1329+ }
1330+}
1331+
1332+[data-role="tabs-btn"] {
1333+ background: #ededed;
1334+ width: units_gu(5);
1335+ height: units_gu(7.5);
1336+ line-height: units_gu(7.5);
1337+ float: left;
1338+ cursor: pointer;
1339+ border: none;
1340+
1341+ position: relative;
1342+ z-index: 10;
1343+
1344+ &:after {
1345+ content: "";
1346+ display: block;
1347+ width: units_gu(2.5);
1348+ height: units_gu(2.5);
1349+ background: transparent url(icon(navigation-menu)) no-repeat center center;
1350+ background-size: 100%;
1351+ margin: 0 auto;
1352+ }
1353+
1354+ &:active {
1355+ background: rgba(0, 0, 0, 0.05);
1356+ }
1357+}
1358+
1359+[data-role="back-btn"]:disabled+[data-role="tabtitle"],
1360+[data-role="back-btn"]+[data-role="tabtitle"],
1361+[data-role="tabs-btn"]+[data-role="tabtitle"],
1362+[data-role="tabs"]+[data-role="tabtitle"] {
1363+ width: calc(100% - 140px);
1364+}
1365+
1366+[data-role="tabtitle"] {
1367+ font-family: $font_family;
1368+ font-size: x-large;
1369+ font-weight: 300;
1370 text-decoration: none;
1371- color: #a0a0a0;
1372- -webkit-opacity: 0;
1373- opacity: 0;
1374- -webkit-transition: opacity .25s ease-in-out;
1375- transition: opacity .25s ease-in-out;
1376- cursor: pointer;
1377-
1378- &:only-child:after {
1379- content: "";
1380- padding-left: 10px;
1381- }
1382+ background: #ededed;
1383+ color: $dark_grey;
1384+ float: left;
1385+ height: units_gu(7.5);
1386+ line-height: units_gu(7.5);
1387+ white-space: nowrap;
1388+ overflow: hidden;
1389+ text-overflow: ellipsis;
1390+ position: relative;
1391+ z-index: 10;
1392 }
1393
1394 [data-role="tab"] {
1395@@ -97,4 +197,134 @@
1396 &:first-child {
1397 display: block;
1398 }
1399-}
1400\ No newline at end of file
1401+}
1402+
1403+[data-role="actions"] {
1404+ float: right;
1405+ height: units_gu(7.5);
1406+ display: inline-block;
1407+ padding-right: units_gu(1);
1408+ background: #ededed;
1409+ position: relative;
1410+ z-index: 10;
1411+
1412+ button {
1413+ border: 0;
1414+ padding: 0;
1415+ width: units_gu(5);
1416+ height: units_gu(7.5);
1417+ line-height: units_gu(7.5);
1418+ cursor: pointer;
1419+ float: left;
1420+ background: transparent;
1421+
1422+ img {
1423+ position : relative;
1424+ top: 5px;
1425+ }
1426+
1427+ &:disabled {
1428+ opacity: 0.3;
1429+ }
1430+
1431+ &:after {
1432+ content: "";
1433+ display: block;
1434+ width: units_gu(2.5);
1435+ height: units_gu(2.5);
1436+ background: transparent;
1437+ background-size: 100%;
1438+ margin: 0 auto;
1439+ }
1440+
1441+ &:active {
1442+ background: rgba(0, 0, 0, 0.05);
1443+ }
1444+ }
1445+
1446+ [data-role="actions-wrapper"] {
1447+ display: none;
1448+
1449+ &:first-child {
1450+ display: block;
1451+ }
1452+ }
1453+}
1454+
1455+[data-role="actions-overflow-icon"] {
1456+ background: transparent;
1457+
1458+ &:after {
1459+ content: "";
1460+ display: block;
1461+ width: units_gu(2.5);
1462+ height: units_gu(2.5);
1463+ background: transparent url(icon(contextual-menu)) no-repeat center center!important;
1464+ background-size: 100%!important;
1465+ margin: 0 auto;
1466+ }
1467+
1468+ &:active {
1469+ background: rgba(0, 0, 0, 0.05);
1470+ }
1471+}
1472+
1473+[data-role="actions-overflow-list"] {
1474+ background: #ededed;
1475+ -webkit-box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
1476+ box-shadow: 0 0px 10px rgba(140, 140, 140, 0.3);
1477+ width: units_gu(20);
1478+ max-height: 250px;
1479+ overflow: auto;
1480+ -webkit-overflow-scrolling: touch;
1481+ position: absolute;
1482+ right: 0;
1483+ top: 61px;
1484+ z-index: 9;
1485+ visibility: hidden;
1486+ opacity: 0;
1487+ transition: all 0.2s;
1488+
1489+ &.opened {
1490+ visibility: visible;
1491+ opacity: 1;
1492+ }
1493+
1494+ li {
1495+ position: relative;
1496+ padding: 16px units_gu(2);
1497+ border-bottom: 1px solid #d9d9d9;
1498+ text-align: left;
1499+ font-size: 0.8rem;
1500+ cursor: pointer;
1501+ text-align: left;
1502+ padding-left: 45px;
1503+ cursor: pointer;
1504+ background: transparent no-repeat center left;
1505+ background-size: 20px;
1506+ background-position-x: 10px;
1507+
1508+ &:only-child {
1509+ border-bottom: 0;
1510+ }
1511+
1512+ &:active {
1513+ background-color: rgba(0, 0, 0, 0.05);
1514+ }
1515+ }
1516+}
1517+
1518+[data-role="overlay"] {
1519+ position: fixed;
1520+ top: 75px;
1521+ right: 0;
1522+ bottom: 0;
1523+ left: 0;
1524+ z-index: 9;
1525+ background: transparent;
1526+ display: none;
1527+
1528+ &.active {
1529+ display: block;
1530+ }
1531+}
1532
1533=== modified file '0.1/ambiance/css/sass/toolbars.scss'
1534--- 0.1/ambiance/css/sass/toolbars.scss 2014-04-03 22:01:12 +0000
1535+++ 0.1/ambiance/css/sass/toolbars.scss 2015-01-30 23:39:52 +0000
1536@@ -34,6 +34,7 @@
1537 bottom: -65px;
1538 -webkit-transition: -webkit-transform 0.1s ease-in-out;
1539 transition: transform 0.1s ease-in-out;
1540+ display: none;
1541
1542 &.revealed {
1543 -webkit-transform: translate3d(0, -65px, 0);
1544
1545=== added file '0.1/ambiance/css/ubuntu-light.woff'
1546Binary files 0.1/ambiance/css/ubuntu-light.woff 1970-01-01 00:00:00 +0000 and 0.1/ambiance/css/ubuntu-light.woff 2015-01-30 23:39:52 +0000 differ
1547=== removed file '0.1/ambiance/img/ListItemProgressionArrow@8.png'
1548Binary files 0.1/ambiance/img/ListItemProgressionArrow@8.png 2013-06-15 13:41:41 +0000 and 0.1/ambiance/img/ListItemProgressionArrow@8.png 1970-01-01 00:00:00 +0000 differ
1549=== added directory '0.1/ambiance/img/actions'
1550=== removed directory '0.1/ambiance/img/actions'
1551=== added file '0.1/ambiance/img/actions/add-to-playlist.svg'
1552--- 0.1/ambiance/img/actions/add-to-playlist.svg 1970-01-01 00:00:00 +0000
1553+++ 0.1/ambiance/img/actions/add-to-playlist.svg 2015-01-30 23:39:52 +0000
1554@@ -0,0 +1,190 @@
1555+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1556+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1557+
1558+<svg
1559+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1560+ xmlns:cc="http://creativecommons.org/ns#"
1561+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1562+ xmlns:svg="http://www.w3.org/2000/svg"
1563+ xmlns="http://www.w3.org/2000/svg"
1564+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1565+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1566+ width="90"
1567+ height="90"
1568+ id="svg4874"
1569+ version="1.1"
1570+ inkscape:version="0.48+devel r12833"
1571+ viewBox="0 0 90 90.000001"
1572+ sodipodi:docname="add-to-playlist.svg">
1573+ <defs
1574+ id="defs4876" />
1575+ <sodipodi:namedview
1576+ id="base"
1577+ pagecolor="#ffffff"
1578+ bordercolor="#666666"
1579+ borderopacity="1.0"
1580+ inkscape:pageopacity="0.0"
1581+ inkscape:pageshadow="2"
1582+ inkscape:zoom="6.366463"
1583+ inkscape:cx="53.687582"
1584+ inkscape:cy="66.135624"
1585+ inkscape:document-units="px"
1586+ inkscape:current-layer="g1311"
1587+ showgrid="true"
1588+ showborder="true"
1589+ fit-margin-top="0"
1590+ fit-margin-left="0"
1591+ fit-margin-right="0"
1592+ fit-margin-bottom="0"
1593+ inkscape:snap-bbox="true"
1594+ inkscape:bbox-paths="true"
1595+ inkscape:bbox-nodes="true"
1596+ inkscape:snap-bbox-edge-midpoints="true"
1597+ inkscape:snap-bbox-midpoints="true"
1598+ inkscape:object-paths="true"
1599+ inkscape:snap-intersection-paths="true"
1600+ inkscape:object-nodes="true"
1601+ inkscape:snap-smooth-nodes="true"
1602+ inkscape:snap-midpoints="true"
1603+ inkscape:snap-object-midpoints="true"
1604+ inkscape:snap-center="true"
1605+ showguides="true"
1606+ inkscape:guide-bbox="true">
1607+ <inkscape:grid
1608+ type="xygrid"
1609+ id="grid5451"
1610+ empspacing="6" />
1611+ <sodipodi:guide
1612+ orientation="1,0"
1613+ position="6,77"
1614+ id="guide4063" />
1615+ <sodipodi:guide
1616+ orientation="1,0"
1617+ position="3,78"
1618+ id="guide4065" />
1619+ <sodipodi:guide
1620+ orientation="0,1"
1621+ position="55,84"
1622+ id="guide4067" />
1623+ <sodipodi:guide
1624+ orientation="0,1"
1625+ position="53,87"
1626+ id="guide4069" />
1627+ <sodipodi:guide
1628+ orientation="0,1"
1629+ position="20,3"
1630+ id="guide4071" />
1631+ <sodipodi:guide
1632+ orientation="0,1"
1633+ position="20,6"
1634+ id="guide4073" />
1635+ <sodipodi:guide
1636+ orientation="1,0"
1637+ position="87,7"
1638+ id="guide4075" />
1639+ <sodipodi:guide
1640+ orientation="1,0"
1641+ position="84,7"
1642+ id="guide4077" />
1643+ <sodipodi:guide
1644+ orientation="0,1"
1645+ position="58,81"
1646+ id="guide4074" />
1647+ <sodipodi:guide
1648+ orientation="1,0"
1649+ position="9,74"
1650+ id="guide4076" />
1651+ <sodipodi:guide
1652+ orientation="0,1"
1653+ position="21,9"
1654+ id="guide4078" />
1655+ <sodipodi:guide
1656+ orientation="1,0"
1657+ position="81,4"
1658+ id="guide4080" />
1659+ </sodipodi:namedview>
1660+ <metadata
1661+ id="metadata4879">
1662+ <rdf:RDF>
1663+ <cc:Work
1664+ rdf:about="">
1665+ <dc:format>image/svg+xml</dc:format>
1666+ <dc:type
1667+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1668+ <dc:title></dc:title>
1669+ </cc:Work>
1670+ </rdf:RDF>
1671+ </metadata>
1672+ <g
1673+ inkscape:label="Layer 1"
1674+ inkscape:groupmode="layer"
1675+ id="layer1"
1676+ transform="translate(67.857146,-84.50504)">
1677+ <g
1678+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
1679+ id="g4845"
1680+ style="display:inline">
1681+ <g
1682+ transform="matrix(0,-1,-1,0,567.36222,615.36221)"
1683+ id="g1311"
1684+ inkscape:export-filename="envelope02.png"
1685+ inkscape:export-xdpi="90"
1686+ inkscape:export-ydpi="90">
1687+ <g
1688+ id="g1313"
1689+ transform="matrix(1.875,0,0,1.875,-366,-1657.8169)">
1690+ <rect
1691+ transform="translate(0,804.3622)"
1692+ y="152"
1693+ x="288"
1694+ height="48"
1695+ width="48"
1696+ id="rect1315"
1697+ style="opacity:0.21171169;fill:none;stroke:none" />
1698+ </g>
1699+ <path
1700+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1701+ d="m 240.00001,184.86222 6,-1.50004 0,41.99997 -6,0 z"
1702+ id="rect3470"
1703+ inkscape:connector-curvature="0"
1704+ sodipodi:nodetypes="ccccc" />
1705+ <rect
1706+ transform="matrix(0,1,-1,0,0,0)"
1707+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1708+ id="rect3472"
1709+ width="5.9999876"
1710+ height="42"
1711+ x="201.36217"
1712+ y="-264" />
1713+ <path
1714+ sodipodi:nodetypes="ccsssccc"
1715+ inkscape:transform-center-y="0.010872624"
1716+ inkscape:transform-center-x="-15.991263"
1717+ inkscape:connector-curvature="0"
1718+ id="path2194-5"
1719+ d="m 180,171.36222 c 0,0 17.07136,-7.37918 32.0008,-18.01094 0,-0.003 -7e-4,-0.006 -0.003,-0.0105 -0.002,-0.004 -0.004,-0.007 -0.008,-0.0116 -0.003,-0.004 -0.006,-0.008 -0.007,-0.0117 -0.002,-0.004 -0.004,-0.008 -0.004,-0.0111 -15.74754,-10.9708 -31.97858,-17.94429 -31.97858,-17.94429 z"
1720+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1721+ <path
1722+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1723+ d="m 180,189.36222 0,6 6,0 0,-6 z"
1724+ id="path4104"
1725+ inkscape:connector-curvature="0" />
1726+ <path
1727+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1728+ d="m 192,189.36222 0,6 36,0 0,-6 z"
1729+ id="rect4070"
1730+ inkscape:connector-curvature="0" />
1731+ <path
1732+ inkscape:connector-curvature="0"
1733+ id="path4112"
1734+ d="m 180,177.36222 0,6 6,0 0,-6 z"
1735+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1736+ <path
1737+ inkscape:connector-curvature="0"
1738+ id="path4114"
1739+ d="m 192,177.36222 0,6 36,0 0,-6 z"
1740+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1741+ </g>
1742+ </g>
1743+ </g>
1744+</svg>
1745
1746=== removed file '0.1/ambiance/img/actions/add-to-playlist.svg'
1747--- 0.1/ambiance/img/actions/add-to-playlist.svg 2014-02-21 15:52:41 +0000
1748+++ 0.1/ambiance/img/actions/add-to-playlist.svg 1970-01-01 00:00:00 +0000
1749@@ -1,190 +0,0 @@
1750-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1751-<!-- Created with Inkscape (http://www.inkscape.org/) -->
1752-
1753-<svg
1754- xmlns:dc="http://purl.org/dc/elements/1.1/"
1755- xmlns:cc="http://creativecommons.org/ns#"
1756- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1757- xmlns:svg="http://www.w3.org/2000/svg"
1758- xmlns="http://www.w3.org/2000/svg"
1759- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1760- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1761- width="90"
1762- height="90"
1763- id="svg4874"
1764- version="1.1"
1765- inkscape:version="0.48+devel r12833"
1766- viewBox="0 0 90 90.000001"
1767- sodipodi:docname="add-to-playlist.svg">
1768- <defs
1769- id="defs4876" />
1770- <sodipodi:namedview
1771- id="base"
1772- pagecolor="#ffffff"
1773- bordercolor="#666666"
1774- borderopacity="1.0"
1775- inkscape:pageopacity="0.0"
1776- inkscape:pageshadow="2"
1777- inkscape:zoom="6.366463"
1778- inkscape:cx="53.687582"
1779- inkscape:cy="66.135624"
1780- inkscape:document-units="px"
1781- inkscape:current-layer="g1311"
1782- showgrid="true"
1783- showborder="true"
1784- fit-margin-top="0"
1785- fit-margin-left="0"
1786- fit-margin-right="0"
1787- fit-margin-bottom="0"
1788- inkscape:snap-bbox="true"
1789- inkscape:bbox-paths="true"
1790- inkscape:bbox-nodes="true"
1791- inkscape:snap-bbox-edge-midpoints="true"
1792- inkscape:snap-bbox-midpoints="true"
1793- inkscape:object-paths="true"
1794- inkscape:snap-intersection-paths="true"
1795- inkscape:object-nodes="true"
1796- inkscape:snap-smooth-nodes="true"
1797- inkscape:snap-midpoints="true"
1798- inkscape:snap-object-midpoints="true"
1799- inkscape:snap-center="true"
1800- showguides="true"
1801- inkscape:guide-bbox="true">
1802- <inkscape:grid
1803- type="xygrid"
1804- id="grid5451"
1805- empspacing="6" />
1806- <sodipodi:guide
1807- orientation="1,0"
1808- position="6,77"
1809- id="guide4063" />
1810- <sodipodi:guide
1811- orientation="1,0"
1812- position="3,78"
1813- id="guide4065" />
1814- <sodipodi:guide
1815- orientation="0,1"
1816- position="55,84"
1817- id="guide4067" />
1818- <sodipodi:guide
1819- orientation="0,1"
1820- position="53,87"
1821- id="guide4069" />
1822- <sodipodi:guide
1823- orientation="0,1"
1824- position="20,3"
1825- id="guide4071" />
1826- <sodipodi:guide
1827- orientation="0,1"
1828- position="20,6"
1829- id="guide4073" />
1830- <sodipodi:guide
1831- orientation="1,0"
1832- position="87,7"
1833- id="guide4075" />
1834- <sodipodi:guide
1835- orientation="1,0"
1836- position="84,7"
1837- id="guide4077" />
1838- <sodipodi:guide
1839- orientation="0,1"
1840- position="58,81"
1841- id="guide4074" />
1842- <sodipodi:guide
1843- orientation="1,0"
1844- position="9,74"
1845- id="guide4076" />
1846- <sodipodi:guide
1847- orientation="0,1"
1848- position="21,9"
1849- id="guide4078" />
1850- <sodipodi:guide
1851- orientation="1,0"
1852- position="81,4"
1853- id="guide4080" />
1854- </sodipodi:namedview>
1855- <metadata
1856- id="metadata4879">
1857- <rdf:RDF>
1858- <cc:Work
1859- rdf:about="">
1860- <dc:format>image/svg+xml</dc:format>
1861- <dc:type
1862- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1863- <dc:title></dc:title>
1864- </cc:Work>
1865- </rdf:RDF>
1866- </metadata>
1867- <g
1868- inkscape:label="Layer 1"
1869- inkscape:groupmode="layer"
1870- id="layer1"
1871- transform="translate(67.857146,-84.50504)">
1872- <g
1873- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
1874- id="g4845"
1875- style="display:inline">
1876- <g
1877- transform="matrix(0,-1,-1,0,567.36222,615.36221)"
1878- id="g1311"
1879- inkscape:export-filename="envelope02.png"
1880- inkscape:export-xdpi="90"
1881- inkscape:export-ydpi="90">
1882- <g
1883- id="g1313"
1884- transform="matrix(1.875,0,0,1.875,-366,-1657.8169)">
1885- <rect
1886- transform="translate(0,804.3622)"
1887- y="152"
1888- x="288"
1889- height="48"
1890- width="48"
1891- id="rect1315"
1892- style="opacity:0.21171169;fill:none;stroke:none" />
1893- </g>
1894- <path
1895- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1896- d="m 240.00001,184.86222 6,-1.50004 0,41.99997 -6,0 z"
1897- id="rect3470"
1898- inkscape:connector-curvature="0"
1899- sodipodi:nodetypes="ccccc" />
1900- <rect
1901- transform="matrix(0,1,-1,0,0,0)"
1902- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1903- id="rect3472"
1904- width="5.9999876"
1905- height="42"
1906- x="201.36217"
1907- y="-264" />
1908- <path
1909- sodipodi:nodetypes="ccsssccc"
1910- inkscape:transform-center-y="0.010872624"
1911- inkscape:transform-center-x="-15.991263"
1912- inkscape:connector-curvature="0"
1913- id="path2194-5"
1914- d="m 180,171.36222 c 0,0 17.07136,-7.37918 32.0008,-18.01094 0,-0.003 -7e-4,-0.006 -0.003,-0.0105 -0.002,-0.004 -0.004,-0.007 -0.008,-0.0116 -0.003,-0.004 -0.006,-0.008 -0.007,-0.0117 -0.002,-0.004 -0.004,-0.008 -0.004,-0.0111 -15.74754,-10.9708 -31.97858,-17.94429 -31.97858,-17.94429 z"
1915- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1916- <path
1917- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1918- d="m 180,189.36222 0,6 6,0 0,-6 z"
1919- id="path4104"
1920- inkscape:connector-curvature="0" />
1921- <path
1922- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1923- d="m 192,189.36222 0,6 36,0 0,-6 z"
1924- id="rect4070"
1925- inkscape:connector-curvature="0" />
1926- <path
1927- inkscape:connector-curvature="0"
1928- id="path4112"
1929- d="m 180,177.36222 0,6 6,0 0,-6 z"
1930- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1931- <path
1932- inkscape:connector-curvature="0"
1933- id="path4114"
1934- d="m 192,177.36222 0,6 36,0 0,-6 z"
1935- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1936- </g>
1937- </g>
1938- </g>
1939-</svg>
1940
1941=== added file '0.1/ambiance/img/actions/add.svg'
1942--- 0.1/ambiance/img/actions/add.svg 1970-01-01 00:00:00 +0000
1943+++ 0.1/ambiance/img/actions/add.svg 2015-01-30 23:39:52 +0000
1944@@ -0,0 +1,158 @@
1945+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1946+<!-- Created with Inkscape (http://www.inkscape.org/) -->
1947+
1948+<svg
1949+ xmlns:dc="http://purl.org/dc/elements/1.1/"
1950+ xmlns:cc="http://creativecommons.org/ns#"
1951+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
1952+ xmlns:svg="http://www.w3.org/2000/svg"
1953+ xmlns="http://www.w3.org/2000/svg"
1954+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
1955+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
1956+ width="90"
1957+ height="90"
1958+ id="svg4874"
1959+ version="1.1"
1960+ inkscape:version="0.48+devel r12833"
1961+ viewBox="0 0 90 90.000001"
1962+ sodipodi:docname="add.svg">
1963+ <defs
1964+ id="defs4876" />
1965+ <sodipodi:namedview
1966+ id="base"
1967+ pagecolor="#ffffff"
1968+ bordercolor="#666666"
1969+ borderopacity="1.0"
1970+ inkscape:pageopacity="0.0"
1971+ inkscape:pageshadow="2"
1972+ inkscape:zoom="5.0931703"
1973+ inkscape:cx="23.943827"
1974+ inkscape:cy="27.664498"
1975+ inkscape:document-units="px"
1976+ inkscape:current-layer="g4845"
1977+ showgrid="true"
1978+ showborder="true"
1979+ fit-margin-top="0"
1980+ fit-margin-left="0"
1981+ fit-margin-right="0"
1982+ fit-margin-bottom="0"
1983+ inkscape:snap-bbox="true"
1984+ inkscape:bbox-paths="true"
1985+ inkscape:bbox-nodes="true"
1986+ inkscape:snap-bbox-edge-midpoints="true"
1987+ inkscape:snap-bbox-midpoints="true"
1988+ inkscape:object-paths="true"
1989+ inkscape:snap-intersection-paths="true"
1990+ inkscape:object-nodes="true"
1991+ inkscape:snap-smooth-nodes="true"
1992+ inkscape:snap-midpoints="true"
1993+ inkscape:snap-object-midpoints="true"
1994+ inkscape:snap-center="true"
1995+ showguides="true"
1996+ inkscape:guide-bbox="true">
1997+ <inkscape:grid
1998+ type="xygrid"
1999+ id="grid5451"
2000+ empspacing="6" />
2001+ <sodipodi:guide
2002+ orientation="1,0"
2003+ position="6,77"
2004+ id="guide4063" />
2005+ <sodipodi:guide
2006+ orientation="1,0"
2007+ position="3,78"
2008+ id="guide4065" />
2009+ <sodipodi:guide
2010+ orientation="0,1"
2011+ position="55,84"
2012+ id="guide4067" />
2013+ <sodipodi:guide
2014+ orientation="0,1"
2015+ position="53,87"
2016+ id="guide4069" />
2017+ <sodipodi:guide
2018+ orientation="0,1"
2019+ position="20,3"
2020+ id="guide4071" />
2021+ <sodipodi:guide
2022+ orientation="0,1"
2023+ position="20,6"
2024+ id="guide4073" />
2025+ <sodipodi:guide
2026+ orientation="1,0"
2027+ position="87,7"
2028+ id="guide4075" />
2029+ <sodipodi:guide
2030+ orientation="1,0"
2031+ position="84,7"
2032+ id="guide4077" />
2033+ <sodipodi:guide
2034+ orientation="0,1"
2035+ position="58,81"
2036+ id="guide4074" />
2037+ <sodipodi:guide
2038+ orientation="1,0"
2039+ position="9,74"
2040+ id="guide4076" />
2041+ <sodipodi:guide
2042+ orientation="0,1"
2043+ position="21,9"
2044+ id="guide4078" />
2045+ <sodipodi:guide
2046+ orientation="1,0"
2047+ position="81,4"
2048+ id="guide4080" />
2049+ </sodipodi:namedview>
2050+ <metadata
2051+ id="metadata4879">
2052+ <rdf:RDF>
2053+ <cc:Work
2054+ rdf:about="">
2055+ <dc:format>image/svg+xml</dc:format>
2056+ <dc:type
2057+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2058+ <dc:title></dc:title>
2059+ </cc:Work>
2060+ </rdf:RDF>
2061+ </metadata>
2062+ <g
2063+ inkscape:label="Layer 1"
2064+ inkscape:groupmode="layer"
2065+ id="layer1"
2066+ transform="translate(67.857146,-84.50504)">
2067+ <g
2068+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
2069+ id="g4845"
2070+ style="display:inline">
2071+ <g
2072+ inkscape:label="Layer 1"
2073+ id="g1708"
2074+ transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
2075+ inkscape:export-filename="add01.png"
2076+ inkscape:export-xdpi="90"
2077+ inkscape:export-ydpi="90">
2078+ <rect
2079+ style="color:#000000;fill:none;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
2080+ id="rect1710"
2081+ width="90"
2082+ height="90"
2083+ x="0"
2084+ y="962.36218" />
2085+ <path
2086+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
2087+ d="m 39,970.36212 12,-2 0,78.00018 -12,0 z"
2088+ id="rect1712"
2089+ inkscape:connector-curvature="0"
2090+ sodipodi:nodetypes="ccccc" />
2091+ <rect
2092+ transform="matrix(0,1,-1,0,0,0)"
2093+ y="-84"
2094+ x="1001.3622"
2095+ height="77.999985"
2096+ width="11.999976"
2097+ id="rect1714"
2098+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2099+ </g>
2100+ </g>
2101+ </g>
2102+</svg>
2103
2104=== removed file '0.1/ambiance/img/actions/add.svg'
2105--- 0.1/ambiance/img/actions/add.svg 2014-02-21 15:52:41 +0000
2106+++ 0.1/ambiance/img/actions/add.svg 1970-01-01 00:00:00 +0000
2107@@ -1,158 +0,0 @@
2108-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2109-<!-- Created with Inkscape (http://www.inkscape.org/) -->
2110-
2111-<svg
2112- xmlns:dc="http://purl.org/dc/elements/1.1/"
2113- xmlns:cc="http://creativecommons.org/ns#"
2114- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2115- xmlns:svg="http://www.w3.org/2000/svg"
2116- xmlns="http://www.w3.org/2000/svg"
2117- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2118- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2119- width="90"
2120- height="90"
2121- id="svg4874"
2122- version="1.1"
2123- inkscape:version="0.48+devel r12833"
2124- viewBox="0 0 90 90.000001"
2125- sodipodi:docname="add.svg">
2126- <defs
2127- id="defs4876" />
2128- <sodipodi:namedview
2129- id="base"
2130- pagecolor="#ffffff"
2131- bordercolor="#666666"
2132- borderopacity="1.0"
2133- inkscape:pageopacity="0.0"
2134- inkscape:pageshadow="2"
2135- inkscape:zoom="5.0931703"
2136- inkscape:cx="23.943827"
2137- inkscape:cy="27.664498"
2138- inkscape:document-units="px"
2139- inkscape:current-layer="g4845"
2140- showgrid="true"
2141- showborder="true"
2142- fit-margin-top="0"
2143- fit-margin-left="0"
2144- fit-margin-right="0"
2145- fit-margin-bottom="0"
2146- inkscape:snap-bbox="true"
2147- inkscape:bbox-paths="true"
2148- inkscape:bbox-nodes="true"
2149- inkscape:snap-bbox-edge-midpoints="true"
2150- inkscape:snap-bbox-midpoints="true"
2151- inkscape:object-paths="true"
2152- inkscape:snap-intersection-paths="true"
2153- inkscape:object-nodes="true"
2154- inkscape:snap-smooth-nodes="true"
2155- inkscape:snap-midpoints="true"
2156- inkscape:snap-object-midpoints="true"
2157- inkscape:snap-center="true"
2158- showguides="true"
2159- inkscape:guide-bbox="true">
2160- <inkscape:grid
2161- type="xygrid"
2162- id="grid5451"
2163- empspacing="6" />
2164- <sodipodi:guide
2165- orientation="1,0"
2166- position="6,77"
2167- id="guide4063" />
2168- <sodipodi:guide
2169- orientation="1,0"
2170- position="3,78"
2171- id="guide4065" />
2172- <sodipodi:guide
2173- orientation="0,1"
2174- position="55,84"
2175- id="guide4067" />
2176- <sodipodi:guide
2177- orientation="0,1"
2178- position="53,87"
2179- id="guide4069" />
2180- <sodipodi:guide
2181- orientation="0,1"
2182- position="20,3"
2183- id="guide4071" />
2184- <sodipodi:guide
2185- orientation="0,1"
2186- position="20,6"
2187- id="guide4073" />
2188- <sodipodi:guide
2189- orientation="1,0"
2190- position="87,7"
2191- id="guide4075" />
2192- <sodipodi:guide
2193- orientation="1,0"
2194- position="84,7"
2195- id="guide4077" />
2196- <sodipodi:guide
2197- orientation="0,1"
2198- position="58,81"
2199- id="guide4074" />
2200- <sodipodi:guide
2201- orientation="1,0"
2202- position="9,74"
2203- id="guide4076" />
2204- <sodipodi:guide
2205- orientation="0,1"
2206- position="21,9"
2207- id="guide4078" />
2208- <sodipodi:guide
2209- orientation="1,0"
2210- position="81,4"
2211- id="guide4080" />
2212- </sodipodi:namedview>
2213- <metadata
2214- id="metadata4879">
2215- <rdf:RDF>
2216- <cc:Work
2217- rdf:about="">
2218- <dc:format>image/svg+xml</dc:format>
2219- <dc:type
2220- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2221- <dc:title></dc:title>
2222- </cc:Work>
2223- </rdf:RDF>
2224- </metadata>
2225- <g
2226- inkscape:label="Layer 1"
2227- inkscape:groupmode="layer"
2228- id="layer1"
2229- transform="translate(67.857146,-84.50504)">
2230- <g
2231- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
2232- id="g4845"
2233- style="display:inline">
2234- <g
2235- inkscape:label="Layer 1"
2236- id="g1708"
2237- transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
2238- inkscape:export-filename="add01.png"
2239- inkscape:export-xdpi="90"
2240- inkscape:export-ydpi="90">
2241- <rect
2242- style="color:#000000;fill:none;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
2243- id="rect1710"
2244- width="90"
2245- height="90"
2246- x="0"
2247- y="962.36218" />
2248- <path
2249- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
2250- d="m 39,970.36212 12,-2 0,78.00018 -12,0 z"
2251- id="rect1712"
2252- inkscape:connector-curvature="0"
2253- sodipodi:nodetypes="ccccc" />
2254- <rect
2255- transform="matrix(0,1,-1,0,0,0)"
2256- y="-84"
2257- x="1001.3622"
2258- height="77.999985"
2259- width="11.999976"
2260- id="rect1714"
2261- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2262- </g>
2263- </g>
2264- </g>
2265-</svg>
2266
2267=== added file '0.1/ambiance/img/actions/calendar-today.svg'
2268--- 0.1/ambiance/img/actions/calendar-today.svg 1970-01-01 00:00:00 +0000
2269+++ 0.1/ambiance/img/actions/calendar-today.svg 2015-01-30 23:39:52 +0000
2270@@ -0,0 +1,170 @@
2271+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2272+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2273+
2274+<svg
2275+ xmlns:dc="http://purl.org/dc/elements/1.1/"
2276+ xmlns:cc="http://creativecommons.org/ns#"
2277+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2278+ xmlns:svg="http://www.w3.org/2000/svg"
2279+ xmlns="http://www.w3.org/2000/svg"
2280+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2281+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2282+ width="90"
2283+ height="90"
2284+ id="svg4874"
2285+ version="1.1"
2286+ inkscape:version="0.48+devel r12833"
2287+ viewBox="0 0 90 90.000001"
2288+ sodipodi:docname="calendar-today.svg">
2289+ <defs
2290+ id="defs4876" />
2291+ <sodipodi:namedview
2292+ id="base"
2293+ pagecolor="#ffffff"
2294+ bordercolor="#666666"
2295+ borderopacity="1.0"
2296+ inkscape:pageopacity="0.0"
2297+ inkscape:pageshadow="2"
2298+ inkscape:zoom="7.9580787"
2299+ inkscape:cx="40.506008"
2300+ inkscape:cy="43.220232"
2301+ inkscape:document-units="px"
2302+ inkscape:current-layer="g1311"
2303+ showgrid="true"
2304+ showborder="true"
2305+ fit-margin-top="0"
2306+ fit-margin-left="0"
2307+ fit-margin-right="0"
2308+ fit-margin-bottom="0"
2309+ inkscape:snap-bbox="true"
2310+ inkscape:bbox-paths="true"
2311+ inkscape:bbox-nodes="true"
2312+ inkscape:snap-bbox-edge-midpoints="true"
2313+ inkscape:snap-bbox-midpoints="true"
2314+ inkscape:object-paths="true"
2315+ inkscape:snap-intersection-paths="true"
2316+ inkscape:object-nodes="true"
2317+ inkscape:snap-smooth-nodes="true"
2318+ inkscape:snap-midpoints="true"
2319+ inkscape:snap-object-midpoints="true"
2320+ inkscape:snap-center="true"
2321+ showguides="true"
2322+ inkscape:guide-bbox="true">
2323+ <inkscape:grid
2324+ type="xygrid"
2325+ id="grid5451"
2326+ empspacing="6" />
2327+ <sodipodi:guide
2328+ orientation="1,0"
2329+ position="6,77"
2330+ id="guide4063" />
2331+ <sodipodi:guide
2332+ orientation="1,0"
2333+ position="3,78"
2334+ id="guide4065" />
2335+ <sodipodi:guide
2336+ orientation="0,1"
2337+ position="55,84"
2338+ id="guide4067" />
2339+ <sodipodi:guide
2340+ orientation="0,1"
2341+ position="53,87"
2342+ id="guide4069" />
2343+ <sodipodi:guide
2344+ orientation="0,1"
2345+ position="20,3"
2346+ id="guide4071" />
2347+ <sodipodi:guide
2348+ orientation="0,1"
2349+ position="20,6"
2350+ id="guide4073" />
2351+ <sodipodi:guide
2352+ orientation="1,0"
2353+ position="87,7"
2354+ id="guide4075" />
2355+ <sodipodi:guide
2356+ orientation="1,0"
2357+ position="84,7"
2358+ id="guide4077" />
2359+ <sodipodi:guide
2360+ orientation="0,1"
2361+ position="58,81"
2362+ id="guide4074" />
2363+ <sodipodi:guide
2364+ orientation="1,0"
2365+ position="9,74"
2366+ id="guide4076" />
2367+ <sodipodi:guide
2368+ orientation="0,1"
2369+ position="21,9"
2370+ id="guide4078" />
2371+ <sodipodi:guide
2372+ orientation="1,0"
2373+ position="81,4"
2374+ id="guide4080" />
2375+ </sodipodi:namedview>
2376+ <metadata
2377+ id="metadata4879">
2378+ <rdf:RDF>
2379+ <cc:Work
2380+ rdf:about="">
2381+ <dc:format>image/svg+xml</dc:format>
2382+ <dc:type
2383+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2384+ <dc:title></dc:title>
2385+ </cc:Work>
2386+ </rdf:RDF>
2387+ </metadata>
2388+ <g
2389+ inkscape:label="Layer 1"
2390+ inkscape:groupmode="layer"
2391+ id="layer1"
2392+ transform="translate(67.857146,-84.50504)">
2393+ <g
2394+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
2395+ id="g4845"
2396+ style="display:inline">
2397+ <g
2398+ transform="matrix(0,-1,-1,0,567.36222,615.36221)"
2399+ id="g1311"
2400+ inkscape:export-filename="envelope02.png"
2401+ inkscape:export-xdpi="90"
2402+ inkscape:export-ydpi="90">
2403+ <g
2404+ id="g1313"
2405+ transform="matrix(1.875,0,0,1.875,-366,-1657.8169)">
2406+ <rect
2407+ transform="translate(0,804.3622)"
2408+ y="152"
2409+ x="288"
2410+ height="48"
2411+ width="48"
2412+ id="rect1315"
2413+ style="opacity:0.21171169;fill:none;stroke:none" />
2414+ </g>
2415+ <path
2416+ style="font-size:15px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;display:inline;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
2417+ d="M 21 6 C 11 6 6 5.9998036 6 17.626953 L 6 72.373047 C 6 84.000207 11 84 21 84 L 69 84 C 79 84 84 84.000207 84 72.373047 L 84 17.626953 C 84 5.9998036 79 6 69 6 L 69 21 L 57 21 L 57 6 L 33 6 L 33 21 L 21 21 L 21 6 z M 22.867188 27 L 67.132812 27 C 75.065512 27 78 26.999356 78 35.191406 L 78 69.808594 C 78 78.000644 75.065512 78 67.132812 78 L 22.867188 78 C 14.934488 78 12 78.000644 12 69.808594 L 12 35.191406 C 12 26.999356 14.934488 27 22.867188 27 z "
2418+ transform="translate(174,135.36222)"
2419+ id="path4098" />
2420+ <path
2421+ style="font-size:15px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
2422+ d="m 242.00422,169.6591 -0.375,0.32812 -26.94727,23.60352 -15.79687,-13.55079 -4.77539,5.4004 20.57617,21.64843 31.30078,-32.9375 -3.98242,-4.49218 z"
2423+ id="path4041-9"
2424+ inkscape:connector-curvature="0" />
2425+ <path
2426+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
2427+ d="m 198,136.76222 6,-1.40001 0,18 -6,0 z"
2428+ id="rect4097"
2429+ inkscape:connector-curvature="0"
2430+ sodipodi:nodetypes="ccccc" />
2431+ <path
2432+ sodipodi:nodetypes="ccccc"
2433+ inkscape:connector-curvature="0"
2434+ id="path4100"
2435+ d="m 234,136.76222 6,-1.40001 0,18 -6,0 z"
2436+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2437+ </g>
2438+ </g>
2439+ </g>
2440+</svg>
2441
2442=== removed file '0.1/ambiance/img/actions/calendar-today.svg'
2443--- 0.1/ambiance/img/actions/calendar-today.svg 2014-02-21 15:52:41 +0000
2444+++ 0.1/ambiance/img/actions/calendar-today.svg 1970-01-01 00:00:00 +0000
2445@@ -1,170 +0,0 @@
2446-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2447-<!-- Created with Inkscape (http://www.inkscape.org/) -->
2448-
2449-<svg
2450- xmlns:dc="http://purl.org/dc/elements/1.1/"
2451- xmlns:cc="http://creativecommons.org/ns#"
2452- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2453- xmlns:svg="http://www.w3.org/2000/svg"
2454- xmlns="http://www.w3.org/2000/svg"
2455- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2456- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2457- width="90"
2458- height="90"
2459- id="svg4874"
2460- version="1.1"
2461- inkscape:version="0.48+devel r12833"
2462- viewBox="0 0 90 90.000001"
2463- sodipodi:docname="calendar-today.svg">
2464- <defs
2465- id="defs4876" />
2466- <sodipodi:namedview
2467- id="base"
2468- pagecolor="#ffffff"
2469- bordercolor="#666666"
2470- borderopacity="1.0"
2471- inkscape:pageopacity="0.0"
2472- inkscape:pageshadow="2"
2473- inkscape:zoom="7.9580787"
2474- inkscape:cx="40.506008"
2475- inkscape:cy="43.220232"
2476- inkscape:document-units="px"
2477- inkscape:current-layer="g1311"
2478- showgrid="true"
2479- showborder="true"
2480- fit-margin-top="0"
2481- fit-margin-left="0"
2482- fit-margin-right="0"
2483- fit-margin-bottom="0"
2484- inkscape:snap-bbox="true"
2485- inkscape:bbox-paths="true"
2486- inkscape:bbox-nodes="true"
2487- inkscape:snap-bbox-edge-midpoints="true"
2488- inkscape:snap-bbox-midpoints="true"
2489- inkscape:object-paths="true"
2490- inkscape:snap-intersection-paths="true"
2491- inkscape:object-nodes="true"
2492- inkscape:snap-smooth-nodes="true"
2493- inkscape:snap-midpoints="true"
2494- inkscape:snap-object-midpoints="true"
2495- inkscape:snap-center="true"
2496- showguides="true"
2497- inkscape:guide-bbox="true">
2498- <inkscape:grid
2499- type="xygrid"
2500- id="grid5451"
2501- empspacing="6" />
2502- <sodipodi:guide
2503- orientation="1,0"
2504- position="6,77"
2505- id="guide4063" />
2506- <sodipodi:guide
2507- orientation="1,0"
2508- position="3,78"
2509- id="guide4065" />
2510- <sodipodi:guide
2511- orientation="0,1"
2512- position="55,84"
2513- id="guide4067" />
2514- <sodipodi:guide
2515- orientation="0,1"
2516- position="53,87"
2517- id="guide4069" />
2518- <sodipodi:guide
2519- orientation="0,1"
2520- position="20,3"
2521- id="guide4071" />
2522- <sodipodi:guide
2523- orientation="0,1"
2524- position="20,6"
2525- id="guide4073" />
2526- <sodipodi:guide
2527- orientation="1,0"
2528- position="87,7"
2529- id="guide4075" />
2530- <sodipodi:guide
2531- orientation="1,0"
2532- position="84,7"
2533- id="guide4077" />
2534- <sodipodi:guide
2535- orientation="0,1"
2536- position="58,81"
2537- id="guide4074" />
2538- <sodipodi:guide
2539- orientation="1,0"
2540- position="9,74"
2541- id="guide4076" />
2542- <sodipodi:guide
2543- orientation="0,1"
2544- position="21,9"
2545- id="guide4078" />
2546- <sodipodi:guide
2547- orientation="1,0"
2548- position="81,4"
2549- id="guide4080" />
2550- </sodipodi:namedview>
2551- <metadata
2552- id="metadata4879">
2553- <rdf:RDF>
2554- <cc:Work
2555- rdf:about="">
2556- <dc:format>image/svg+xml</dc:format>
2557- <dc:type
2558- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2559- <dc:title></dc:title>
2560- </cc:Work>
2561- </rdf:RDF>
2562- </metadata>
2563- <g
2564- inkscape:label="Layer 1"
2565- inkscape:groupmode="layer"
2566- id="layer1"
2567- transform="translate(67.857146,-84.50504)">
2568- <g
2569- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
2570- id="g4845"
2571- style="display:inline">
2572- <g
2573- transform="matrix(0,-1,-1,0,567.36222,615.36221)"
2574- id="g1311"
2575- inkscape:export-filename="envelope02.png"
2576- inkscape:export-xdpi="90"
2577- inkscape:export-ydpi="90">
2578- <g
2579- id="g1313"
2580- transform="matrix(1.875,0,0,1.875,-366,-1657.8169)">
2581- <rect
2582- transform="translate(0,804.3622)"
2583- y="152"
2584- x="288"
2585- height="48"
2586- width="48"
2587- id="rect1315"
2588- style="opacity:0.21171169;fill:none;stroke:none" />
2589- </g>
2590- <path
2591- style="font-size:15px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;display:inline;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
2592- d="M 21 6 C 11 6 6 5.9998036 6 17.626953 L 6 72.373047 C 6 84.000207 11 84 21 84 L 69 84 C 79 84 84 84.000207 84 72.373047 L 84 17.626953 C 84 5.9998036 79 6 69 6 L 69 21 L 57 21 L 57 6 L 33 6 L 33 21 L 21 21 L 21 6 z M 22.867188 27 L 67.132812 27 C 75.065512 27 78 26.999356 78 35.191406 L 78 69.808594 C 78 78.000644 75.065512 78 67.132812 78 L 22.867188 78 C 14.934488 78 12 78.000644 12 69.808594 L 12 35.191406 C 12 26.999356 14.934488 27 22.867188 27 z "
2593- transform="translate(174,135.36222)"
2594- id="path4098" />
2595- <path
2596- style="font-size:15px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
2597- d="m 242.00422,169.6591 -0.375,0.32812 -26.94727,23.60352 -15.79687,-13.55079 -4.77539,5.4004 20.57617,21.64843 31.30078,-32.9375 -3.98242,-4.49218 z"
2598- id="path4041-9"
2599- inkscape:connector-curvature="0" />
2600- <path
2601- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
2602- d="m 198,136.76222 6,-1.40001 0,18 -6,0 z"
2603- id="rect4097"
2604- inkscape:connector-curvature="0"
2605- sodipodi:nodetypes="ccccc" />
2606- <path
2607- sodipodi:nodetypes="ccccc"
2608- inkscape:connector-curvature="0"
2609- id="path4100"
2610- d="m 234,136.76222 6,-1.40001 0,18 -6,0 z"
2611- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2612- </g>
2613- </g>
2614- </g>
2615-</svg>
2616
2617=== added file '0.1/ambiance/img/actions/call-start.svg'
2618--- 0.1/ambiance/img/actions/call-start.svg 1970-01-01 00:00:00 +0000
2619+++ 0.1/ambiance/img/actions/call-start.svg 2015-01-30 23:39:52 +0000
2620@@ -0,0 +1,145 @@
2621+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2622+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2623+
2624+<svg
2625+ xmlns:dc="http://purl.org/dc/elements/1.1/"
2626+ xmlns:cc="http://creativecommons.org/ns#"
2627+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2628+ xmlns:svg="http://www.w3.org/2000/svg"
2629+ xmlns="http://www.w3.org/2000/svg"
2630+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2631+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2632+ width="90"
2633+ height="90"
2634+ id="svg4874"
2635+ version="1.1"
2636+ inkscape:version="0.48+devel r"
2637+ viewBox="0 0 90 90.000001"
2638+ sodipodi:docname="call-start.svg">
2639+ <defs
2640+ id="defs4876" />
2641+ <sodipodi:namedview
2642+ id="base"
2643+ pagecolor="#ffffff"
2644+ bordercolor="#666666"
2645+ borderopacity="1.0"
2646+ inkscape:pageopacity="0.0"
2647+ inkscape:pageshadow="2"
2648+ inkscape:zoom="6.3664629"
2649+ inkscape:cx="36.260322"
2650+ inkscape:cy="42.629637"
2651+ inkscape:document-units="px"
2652+ inkscape:current-layer="g4320"
2653+ showgrid="true"
2654+ showborder="true"
2655+ fit-margin-top="0"
2656+ fit-margin-left="0"
2657+ fit-margin-right="0"
2658+ fit-margin-bottom="0"
2659+ inkscape:snap-bbox="true"
2660+ inkscape:bbox-paths="true"
2661+ inkscape:bbox-nodes="true"
2662+ inkscape:snap-bbox-edge-midpoints="true"
2663+ inkscape:snap-bbox-midpoints="true"
2664+ inkscape:object-paths="true"
2665+ inkscape:snap-intersection-paths="true"
2666+ inkscape:object-nodes="true"
2667+ inkscape:snap-smooth-nodes="true"
2668+ inkscape:snap-midpoints="true"
2669+ inkscape:snap-object-midpoints="true"
2670+ inkscape:snap-center="true"
2671+ showguides="true"
2672+ inkscape:guide-bbox="true">
2673+ <inkscape:grid
2674+ type="xygrid"
2675+ id="grid5451"
2676+ empspacing="6" />
2677+ <sodipodi:guide
2678+ orientation="1,0"
2679+ position="9,74"
2680+ id="guide4063" />
2681+ <sodipodi:guide
2682+ orientation="1,0"
2683+ position="6,71"
2684+ id="guide4065" />
2685+ <sodipodi:guide
2686+ orientation="0,1"
2687+ position="39,84"
2688+ id="guide4067" />
2689+ <sodipodi:guide
2690+ orientation="0,1"
2691+ position="39,87"
2692+ id="guide4069" />
2693+ <sodipodi:guide
2694+ orientation="0,1"
2695+ position="50,3"
2696+ id="guide4071" />
2697+ <sodipodi:guide
2698+ orientation="0,1"
2699+ position="52,6"
2700+ id="guide4073" />
2701+ <sodipodi:guide
2702+ orientation="1,0"
2703+ position="87,12"
2704+ id="guide4075" />
2705+ <sodipodi:guide
2706+ orientation="1,0"
2707+ position="84,12"
2708+ id="guide4077" />
2709+ <sodipodi:guide
2710+ orientation="0,1"
2711+ position="45,81"
2712+ id="guide4072" />
2713+ <sodipodi:guide
2714+ orientation="1,0"
2715+ position="3,68"
2716+ id="guide4074" />
2717+ <sodipodi:guide
2718+ orientation="0,1"
2719+ position="70,9"
2720+ id="guide4076" />
2721+ <sodipodi:guide
2722+ orientation="1,0"
2723+ position="81,5"
2724+ id="guide4078" />
2725+ </sodipodi:namedview>
2726+ <metadata
2727+ id="metadata4879">
2728+ <rdf:RDF>
2729+ <cc:Work
2730+ rdf:about="">
2731+ <dc:format>image/svg+xml</dc:format>
2732+ <dc:type
2733+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2734+ <dc:title></dc:title>
2735+ </cc:Work>
2736+ </rdf:RDF>
2737+ </metadata>
2738+ <g
2739+ inkscape:label="Layer 1"
2740+ inkscape:groupmode="layer"
2741+ id="layer1"
2742+ transform="translate(67.857146,-84.50504)">
2743+ <g
2744+ transform="translate(-763.85715,94.142858)"
2745+ id="g4320"
2746+ inkscape:export-filename="phone03.png"
2747+ inkscape:export-xdpi="90"
2748+ inkscape:export-ydpi="90">
2749+ <rect
2750+ y="-9.6378174"
2751+ x="696"
2752+ height="90"
2753+ width="90"
2754+ id="rect4318"
2755+ style="color:#000000;fill:none;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2756+ <path
2757+ inkscape:transform-center-y="0.26248713"
2758+ inkscape:transform-center-x="-0.25246621"
2759+ inkscape:connector-curvature="0"
2760+ id="path4185"
2761+ d="m 762.79986,-4.6378179 c 7.80431,1.7669265 21.14441,4.39491742 17.59899,16.2721959 -4.50604,15.095384 -15.20836,26.833098 -25.71756,37.346318 l 2.8e-4,2.73e-4 c -0.0104,0.01003 -0.0208,0.02085 -0.0313,0.03127 -0.0104,0.01003 -0.0208,0.02085 -0.0313,0.03127 l -2.9e-4,-2.73e-4 C 744.10559,59.552439 732.36788,70.254754 717.27249,74.760784 705.39522,78.3062 702.76724,64.966113 701.0003,57.161801 l 25.2081,-11.085013 8.87761,5.326271 c 3.65527,-2.332076 7.96707,-6.183926 11.87035,-10.084772 3.90088,-3.903213 7.75269,-8.215062 10.08476,-11.870344 l -5.32626,-8.877619 11.08501,-25.2080932 z"
2762+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2763+ </g>
2764+ </g>
2765+</svg>
2766
2767=== removed file '0.1/ambiance/img/actions/call-start.svg'
2768--- 0.1/ambiance/img/actions/call-start.svg 2014-02-21 15:52:41 +0000
2769+++ 0.1/ambiance/img/actions/call-start.svg 1970-01-01 00:00:00 +0000
2770@@ -1,145 +0,0 @@
2771-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2772-<!-- Created with Inkscape (http://www.inkscape.org/) -->
2773-
2774-<svg
2775- xmlns:dc="http://purl.org/dc/elements/1.1/"
2776- xmlns:cc="http://creativecommons.org/ns#"
2777- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2778- xmlns:svg="http://www.w3.org/2000/svg"
2779- xmlns="http://www.w3.org/2000/svg"
2780- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2781- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2782- width="90"
2783- height="90"
2784- id="svg4874"
2785- version="1.1"
2786- inkscape:version="0.48+devel r"
2787- viewBox="0 0 90 90.000001"
2788- sodipodi:docname="call-start.svg">
2789- <defs
2790- id="defs4876" />
2791- <sodipodi:namedview
2792- id="base"
2793- pagecolor="#ffffff"
2794- bordercolor="#666666"
2795- borderopacity="1.0"
2796- inkscape:pageopacity="0.0"
2797- inkscape:pageshadow="2"
2798- inkscape:zoom="6.3664629"
2799- inkscape:cx="36.260322"
2800- inkscape:cy="42.629637"
2801- inkscape:document-units="px"
2802- inkscape:current-layer="g4320"
2803- showgrid="true"
2804- showborder="true"
2805- fit-margin-top="0"
2806- fit-margin-left="0"
2807- fit-margin-right="0"
2808- fit-margin-bottom="0"
2809- inkscape:snap-bbox="true"
2810- inkscape:bbox-paths="true"
2811- inkscape:bbox-nodes="true"
2812- inkscape:snap-bbox-edge-midpoints="true"
2813- inkscape:snap-bbox-midpoints="true"
2814- inkscape:object-paths="true"
2815- inkscape:snap-intersection-paths="true"
2816- inkscape:object-nodes="true"
2817- inkscape:snap-smooth-nodes="true"
2818- inkscape:snap-midpoints="true"
2819- inkscape:snap-object-midpoints="true"
2820- inkscape:snap-center="true"
2821- showguides="true"
2822- inkscape:guide-bbox="true">
2823- <inkscape:grid
2824- type="xygrid"
2825- id="grid5451"
2826- empspacing="6" />
2827- <sodipodi:guide
2828- orientation="1,0"
2829- position="9,74"
2830- id="guide4063" />
2831- <sodipodi:guide
2832- orientation="1,0"
2833- position="6,71"
2834- id="guide4065" />
2835- <sodipodi:guide
2836- orientation="0,1"
2837- position="39,84"
2838- id="guide4067" />
2839- <sodipodi:guide
2840- orientation="0,1"
2841- position="39,87"
2842- id="guide4069" />
2843- <sodipodi:guide
2844- orientation="0,1"
2845- position="50,3"
2846- id="guide4071" />
2847- <sodipodi:guide
2848- orientation="0,1"
2849- position="52,6"
2850- id="guide4073" />
2851- <sodipodi:guide
2852- orientation="1,0"
2853- position="87,12"
2854- id="guide4075" />
2855- <sodipodi:guide
2856- orientation="1,0"
2857- position="84,12"
2858- id="guide4077" />
2859- <sodipodi:guide
2860- orientation="0,1"
2861- position="45,81"
2862- id="guide4072" />
2863- <sodipodi:guide
2864- orientation="1,0"
2865- position="3,68"
2866- id="guide4074" />
2867- <sodipodi:guide
2868- orientation="0,1"
2869- position="70,9"
2870- id="guide4076" />
2871- <sodipodi:guide
2872- orientation="1,0"
2873- position="81,5"
2874- id="guide4078" />
2875- </sodipodi:namedview>
2876- <metadata
2877- id="metadata4879">
2878- <rdf:RDF>
2879- <cc:Work
2880- rdf:about="">
2881- <dc:format>image/svg+xml</dc:format>
2882- <dc:type
2883- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
2884- <dc:title></dc:title>
2885- </cc:Work>
2886- </rdf:RDF>
2887- </metadata>
2888- <g
2889- inkscape:label="Layer 1"
2890- inkscape:groupmode="layer"
2891- id="layer1"
2892- transform="translate(67.857146,-84.50504)">
2893- <g
2894- transform="translate(-763.85715,94.142858)"
2895- id="g4320"
2896- inkscape:export-filename="phone03.png"
2897- inkscape:export-xdpi="90"
2898- inkscape:export-ydpi="90">
2899- <rect
2900- y="-9.6378174"
2901- x="696"
2902- height="90"
2903- width="90"
2904- id="rect4318"
2905- style="color:#000000;fill:none;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2906- <path
2907- inkscape:transform-center-y="0.26248713"
2908- inkscape:transform-center-x="-0.25246621"
2909- inkscape:connector-curvature="0"
2910- id="path4185"
2911- d="m 762.79986,-4.6378179 c 7.80431,1.7669265 21.14441,4.39491742 17.59899,16.2721959 -4.50604,15.095384 -15.20836,26.833098 -25.71756,37.346318 l 2.8e-4,2.73e-4 c -0.0104,0.01003 -0.0208,0.02085 -0.0313,0.03127 -0.0104,0.01003 -0.0208,0.02085 -0.0313,0.03127 l -2.9e-4,-2.73e-4 C 744.10559,59.552439 732.36788,70.254754 717.27249,74.760784 705.39522,78.3062 702.76724,64.966113 701.0003,57.161801 l 25.2081,-11.085013 8.87761,5.326271 c 3.65527,-2.332076 7.96707,-6.183926 11.87035,-10.084772 3.90088,-3.903213 7.75269,-8.215062 10.08476,-11.870344 l -5.32626,-8.877619 11.08501,-25.2080932 z"
2912- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
2913- </g>
2914- </g>
2915-</svg>
2916
2917=== added file '0.1/ambiance/img/actions/camera-flip.svg'
2918--- 0.1/ambiance/img/actions/camera-flip.svg 1970-01-01 00:00:00 +0000
2919+++ 0.1/ambiance/img/actions/camera-flip.svg 2015-01-30 23:39:52 +0000
2920@@ -0,0 +1,164 @@
2921+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2922+<!-- Created with Inkscape (http://www.inkscape.org/) -->
2923+
2924+<svg
2925+ xmlns:dc="http://purl.org/dc/elements/1.1/"
2926+ xmlns:cc="http://creativecommons.org/ns#"
2927+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
2928+ xmlns:svg="http://www.w3.org/2000/svg"
2929+ xmlns="http://www.w3.org/2000/svg"
2930+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
2931+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
2932+ width="90"
2933+ height="90"
2934+ id="svg4874"
2935+ version="1.1"
2936+ inkscape:version="0.48+devel r12833"
2937+ viewBox="0 0 90 90.000001"
2938+ sodipodi:docname="camera-flip.svg">
2939+ <defs
2940+ id="defs4876" />
2941+ <sodipodi:namedview
2942+ id="base"
2943+ pagecolor="#ffffff"
2944+ bordercolor="#666666"
2945+ borderopacity="1.0"
2946+ inkscape:pageopacity="0.0"
2947+ inkscape:pageshadow="2"
2948+ inkscape:zoom="7.9580786"
2949+ inkscape:cx="56.847892"
2950+ inkscape:cy="64.676416"
2951+ inkscape:document-units="px"
2952+ inkscape:current-layer="g1708"
2953+ showgrid="true"
2954+ showborder="true"
2955+ fit-margin-top="0"
2956+ fit-margin-left="0"
2957+ fit-margin-right="0"
2958+ fit-margin-bottom="0"
2959+ inkscape:snap-bbox="true"
2960+ inkscape:bbox-paths="true"
2961+ inkscape:bbox-nodes="true"
2962+ inkscape:snap-bbox-edge-midpoints="true"
2963+ inkscape:snap-bbox-midpoints="true"
2964+ inkscape:object-paths="true"
2965+ inkscape:snap-intersection-paths="true"
2966+ inkscape:object-nodes="true"
2967+ inkscape:snap-smooth-nodes="true"
2968+ inkscape:snap-midpoints="true"
2969+ inkscape:snap-object-midpoints="true"
2970+ inkscape:snap-center="true"
2971+ showguides="true"
2972+ inkscape:guide-bbox="true">
2973+ <inkscape:grid
2974+ type="xygrid"
2975+ id="grid5451"
2976+ empspacing="6" />
2977+ <sodipodi:guide
2978+ orientation="1,0"
2979+ position="6,77"
2980+ id="guide4063" />
2981+ <sodipodi:guide
2982+ orientation="1,0"
2983+ position="3,78"
2984+ id="guide4065" />
2985+ <sodipodi:guide
2986+ orientation="0,1"
2987+ position="55,84"
2988+ id="guide4067" />
2989+ <sodipodi:guide
2990+ orientation="0,1"
2991+ position="53,87"
2992+ id="guide4069" />
2993+ <sodipodi:guide
2994+ orientation="0,1"
2995+ position="20,3"
2996+ id="guide4071" />
2997+ <sodipodi:guide
2998+ orientation="0,1"
2999+ position="20,6"
3000+ id="guide4073" />
3001+ <sodipodi:guide
3002+ orientation="1,0"
3003+ position="87,7"
3004+ id="guide4075" />
3005+ <sodipodi:guide
3006+ orientation="1,0"
3007+ position="84,7"
3008+ id="guide4077" />
3009+ <sodipodi:guide
3010+ orientation="0,1"
3011+ position="58,81"
3012+ id="guide4074" />
3013+ <sodipodi:guide
3014+ orientation="1,0"
3015+ position="9,74"
3016+ id="guide4076" />
3017+ <sodipodi:guide
3018+ orientation="0,1"
3019+ position="21,9"
3020+ id="guide4078" />
3021+ <sodipodi:guide
3022+ orientation="1,0"
3023+ position="81,4"
3024+ id="guide4080" />
3025+ </sodipodi:namedview>
3026+ <metadata
3027+ id="metadata4879">
3028+ <rdf:RDF>
3029+ <cc:Work
3030+ rdf:about="">
3031+ <dc:format>image/svg+xml</dc:format>
3032+ <dc:type
3033+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3034+ <dc:title></dc:title>
3035+ </cc:Work>
3036+ </rdf:RDF>
3037+ </metadata>
3038+ <g
3039+ inkscape:label="Layer 1"
3040+ inkscape:groupmode="layer"
3041+ id="layer1"
3042+ transform="translate(67.857146,-84.50504)">
3043+ <g
3044+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
3045+ id="g4845"
3046+ style="display:inline">
3047+ <g
3048+ inkscape:label="Layer 1"
3049+ id="g1708"
3050+ transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
3051+ inkscape:export-filename="add01.png"
3052+ inkscape:export-xdpi="90"
3053+ inkscape:export-ydpi="90">
3054+ <rect
3055+ style="color:#000000;fill:none;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3056+ id="rect1710"
3057+ width="90"
3058+ height="90"
3059+ x="0"
3060+ y="962.36218" />
3061+ <path
3062+ inkscape:connector-curvature="0"
3063+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#808080;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;font-family:sans-serif;-inkscape-font-specification:sans-serif"
3064+ clip-path="none"
3065+ d="m 36.000004,995.51845 c -11.286111,0.51028 -21.650085,2.02322 -28.4062504,4.53125 l -0.09375,0.031 c -3.1321755,1.1691 -5.4271472,2.3173 -6.78125009,4.6562 -0.68444784,1.1822 -0.91344079,2.8389 -0.46875001,4.1875 0.4446908,1.3486 1.3265225,2.3363 2.3125,3.125 3.9439102,3.1546 10.7936195,4.8231 21.0625005,6.0938 l 0.75,-5.9688 c -9.744855,-1.2058 -16.3205152,-3.4808 -18.0000004,-4.7812 0.4598247,-0.3616 1.3576427,-1.0047 3.28125,-1.7188 5.5287244,-2.0524 15.3896184,-3.4941 26.3437504,-4.0312 l 0,-6.12505 z m 18,0.0312 0,6.06255 c 3.998726,0.179 7.924799,0.4796 11.625,0.9375 9.744855,1.2057 16.320515,3.4809 18,4.7813 -0.459824,0.3617 -1.357643,1.0045 -3.28125,1.7187 -6.747887,2.505 -20.56963,4.3125 -35.34375,4.3125 l 0,6 c 15.231326,0 29.151413,-1.6231 37.40625,-4.6875 3.185257,-1.1824 5.506105,-2.323 6.875,-4.6875 0.684448,-1.1822 0.913442,-2.8388 0.46875,-4.1875 -0.444691,-1.3487 -1.326523,-2.3364 -2.3125,-3.125 -3.943911,-3.15471 -10.793618,-4.82312 -21.0625,-6.0938 l -0.375,-0.0312 c -3.869426,-0.46892 -7.90827,-0.79655 -12,-1 z"
3066+ id="path3834" />
3067+ <path
3068+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3069+ d="m 42.000004,963.8622 0,41.7813 c 2.119688,-1.2462 4.19894,-2.4269 6,-3.3438 l 0,-39.9375 z m 0,63.2188 0,10.2812 6,0 0,-6.9375 c -1.80106,-0.9169 -3.880312,-2.0976 -6,-3.3437 z m 0,16.2812 0,9 6,0 0,-9 z"
3070+ id="rect3056"
3071+ inkscape:connector-curvature="0"
3072+ sodipodi:nodetypes="ccccccccccccccc" />
3073+ <path
3074+ sodipodi:nodetypes="ccsssccc"
3075+ inkscape:transform-center-y="0.0019070001"
3076+ inkscape:transform-center-x="10.499375"
3077+ inkscape:connector-curvature="0"
3078+ id="path2194-83"
3079+ d="m 54.994508,1028.0408 c 0,0 -11.208833,-4.7685 -21.011302,-11.6387 0,0 0,-0.01 0.0038,-0.01 0,0 0.0038,-0.01 0.0046,-0.01 0,0 0.0038,-0.01 0.0046,-0.01 0,0 0.0038,-0.01 0.0038,-0.01 10.340371,-7.0893 20.997448,-11.5955 20.997448,-11.5955 z"
3080+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
3081+ </g>
3082+ </g>
3083+ </g>
3084+</svg>
3085
3086=== removed file '0.1/ambiance/img/actions/camera-flip.svg'
3087--- 0.1/ambiance/img/actions/camera-flip.svg 2014-02-21 15:52:41 +0000
3088+++ 0.1/ambiance/img/actions/camera-flip.svg 1970-01-01 00:00:00 +0000
3089@@ -1,164 +0,0 @@
3090-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3091-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3092-
3093-<svg
3094- xmlns:dc="http://purl.org/dc/elements/1.1/"
3095- xmlns:cc="http://creativecommons.org/ns#"
3096- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3097- xmlns:svg="http://www.w3.org/2000/svg"
3098- xmlns="http://www.w3.org/2000/svg"
3099- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3100- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3101- width="90"
3102- height="90"
3103- id="svg4874"
3104- version="1.1"
3105- inkscape:version="0.48+devel r12833"
3106- viewBox="0 0 90 90.000001"
3107- sodipodi:docname="camera-flip.svg">
3108- <defs
3109- id="defs4876" />
3110- <sodipodi:namedview
3111- id="base"
3112- pagecolor="#ffffff"
3113- bordercolor="#666666"
3114- borderopacity="1.0"
3115- inkscape:pageopacity="0.0"
3116- inkscape:pageshadow="2"
3117- inkscape:zoom="7.9580786"
3118- inkscape:cx="56.847892"
3119- inkscape:cy="64.676416"
3120- inkscape:document-units="px"
3121- inkscape:current-layer="g1708"
3122- showgrid="true"
3123- showborder="true"
3124- fit-margin-top="0"
3125- fit-margin-left="0"
3126- fit-margin-right="0"
3127- fit-margin-bottom="0"
3128- inkscape:snap-bbox="true"
3129- inkscape:bbox-paths="true"
3130- inkscape:bbox-nodes="true"
3131- inkscape:snap-bbox-edge-midpoints="true"
3132- inkscape:snap-bbox-midpoints="true"
3133- inkscape:object-paths="true"
3134- inkscape:snap-intersection-paths="true"
3135- inkscape:object-nodes="true"
3136- inkscape:snap-smooth-nodes="true"
3137- inkscape:snap-midpoints="true"
3138- inkscape:snap-object-midpoints="true"
3139- inkscape:snap-center="true"
3140- showguides="true"
3141- inkscape:guide-bbox="true">
3142- <inkscape:grid
3143- type="xygrid"
3144- id="grid5451"
3145- empspacing="6" />
3146- <sodipodi:guide
3147- orientation="1,0"
3148- position="6,77"
3149- id="guide4063" />
3150- <sodipodi:guide
3151- orientation="1,0"
3152- position="3,78"
3153- id="guide4065" />
3154- <sodipodi:guide
3155- orientation="0,1"
3156- position="55,84"
3157- id="guide4067" />
3158- <sodipodi:guide
3159- orientation="0,1"
3160- position="53,87"
3161- id="guide4069" />
3162- <sodipodi:guide
3163- orientation="0,1"
3164- position="20,3"
3165- id="guide4071" />
3166- <sodipodi:guide
3167- orientation="0,1"
3168- position="20,6"
3169- id="guide4073" />
3170- <sodipodi:guide
3171- orientation="1,0"
3172- position="87,7"
3173- id="guide4075" />
3174- <sodipodi:guide
3175- orientation="1,0"
3176- position="84,7"
3177- id="guide4077" />
3178- <sodipodi:guide
3179- orientation="0,1"
3180- position="58,81"
3181- id="guide4074" />
3182- <sodipodi:guide
3183- orientation="1,0"
3184- position="9,74"
3185- id="guide4076" />
3186- <sodipodi:guide
3187- orientation="0,1"
3188- position="21,9"
3189- id="guide4078" />
3190- <sodipodi:guide
3191- orientation="1,0"
3192- position="81,4"
3193- id="guide4080" />
3194- </sodipodi:namedview>
3195- <metadata
3196- id="metadata4879">
3197- <rdf:RDF>
3198- <cc:Work
3199- rdf:about="">
3200- <dc:format>image/svg+xml</dc:format>
3201- <dc:type
3202- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3203- <dc:title></dc:title>
3204- </cc:Work>
3205- </rdf:RDF>
3206- </metadata>
3207- <g
3208- inkscape:label="Layer 1"
3209- inkscape:groupmode="layer"
3210- id="layer1"
3211- transform="translate(67.857146,-84.50504)">
3212- <g
3213- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
3214- id="g4845"
3215- style="display:inline">
3216- <g
3217- inkscape:label="Layer 1"
3218- id="g1708"
3219- transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
3220- inkscape:export-filename="add01.png"
3221- inkscape:export-xdpi="90"
3222- inkscape:export-ydpi="90">
3223- <rect
3224- style="color:#000000;fill:none;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3225- id="rect1710"
3226- width="90"
3227- height="90"
3228- x="0"
3229- y="962.36218" />
3230- <path
3231- inkscape:connector-curvature="0"
3232- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#808080;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;font-family:sans-serif;-inkscape-font-specification:sans-serif"
3233- clip-path="none"
3234- d="m 36.000004,995.51845 c -11.286111,0.51028 -21.650085,2.02322 -28.4062504,4.53125 l -0.09375,0.031 c -3.1321755,1.1691 -5.4271472,2.3173 -6.78125009,4.6562 -0.68444784,1.1822 -0.91344079,2.8389 -0.46875001,4.1875 0.4446908,1.3486 1.3265225,2.3363 2.3125,3.125 3.9439102,3.1546 10.7936195,4.8231 21.0625005,6.0938 l 0.75,-5.9688 c -9.744855,-1.2058 -16.3205152,-3.4808 -18.0000004,-4.7812 0.4598247,-0.3616 1.3576427,-1.0047 3.28125,-1.7188 5.5287244,-2.0524 15.3896184,-3.4941 26.3437504,-4.0312 l 0,-6.12505 z m 18,0.0312 0,6.06255 c 3.998726,0.179 7.924799,0.4796 11.625,0.9375 9.744855,1.2057 16.320515,3.4809 18,4.7813 -0.459824,0.3617 -1.357643,1.0045 -3.28125,1.7187 -6.747887,2.505 -20.56963,4.3125 -35.34375,4.3125 l 0,6 c 15.231326,0 29.151413,-1.6231 37.40625,-4.6875 3.185257,-1.1824 5.506105,-2.323 6.875,-4.6875 0.684448,-1.1822 0.913442,-2.8388 0.46875,-4.1875 -0.444691,-1.3487 -1.326523,-2.3364 -2.3125,-3.125 -3.943911,-3.15471 -10.793618,-4.82312 -21.0625,-6.0938 l -0.375,-0.0312 c -3.869426,-0.46892 -7.90827,-0.79655 -12,-1 z"
3235- id="path3834" />
3236- <path
3237- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3238- d="m 42.000004,963.8622 0,41.7813 c 2.119688,-1.2462 4.19894,-2.4269 6,-3.3438 l 0,-39.9375 z m 0,63.2188 0,10.2812 6,0 0,-6.9375 c -1.80106,-0.9169 -3.880312,-2.0976 -6,-3.3437 z m 0,16.2812 0,9 6,0 0,-9 z"
3239- id="rect3056"
3240- inkscape:connector-curvature="0"
3241- sodipodi:nodetypes="ccccccccccccccc" />
3242- <path
3243- sodipodi:nodetypes="ccsssccc"
3244- inkscape:transform-center-y="0.0019070001"
3245- inkscape:transform-center-x="10.499375"
3246- inkscape:connector-curvature="0"
3247- id="path2194-83"
3248- d="m 54.994508,1028.0408 c 0,0 -11.208833,-4.7685 -21.011302,-11.6387 0,0 0,-0.01 0.0038,-0.01 0,0 0.0038,-0.01 0.0046,-0.01 0,0 0.0038,-0.01 0.0046,-0.01 0,0 0.0038,-0.01 0.0038,-0.01 10.340371,-7.0893 20.997448,-11.5955 20.997448,-11.5955 z"
3249- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
3250- </g>
3251- </g>
3252- </g>
3253-</svg>
3254
3255=== added file '0.1/ambiance/img/actions/clear-search.svg'
3256--- 0.1/ambiance/img/actions/clear-search.svg 1970-01-01 00:00:00 +0000
3257+++ 0.1/ambiance/img/actions/clear-search.svg 2015-01-30 23:39:52 +0000
3258@@ -0,0 +1,170 @@
3259+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3260+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3261+
3262+<svg
3263+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3264+ xmlns:cc="http://creativecommons.org/ns#"
3265+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3266+ xmlns:svg="http://www.w3.org/2000/svg"
3267+ xmlns="http://www.w3.org/2000/svg"
3268+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3269+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3270+ width="90"
3271+ height="90"
3272+ id="svg4874"
3273+ version="1.1"
3274+ inkscape:version="0.48+devel r12833"
3275+ viewBox="0 0 90 90.000001"
3276+ sodipodi:docname="clear-search.svg">
3277+ <defs
3278+ id="defs4876" />
3279+ <sodipodi:namedview
3280+ id="base"
3281+ pagecolor="#ffffff"
3282+ bordercolor="#666666"
3283+ borderopacity="1.0"
3284+ inkscape:pageopacity="0.0"
3285+ inkscape:pageshadow="2"
3286+ inkscape:zoom="6.366463"
3287+ inkscape:cx="37.46193"
3288+ inkscape:cy="50.498998"
3289+ inkscape:document-units="px"
3290+ inkscape:current-layer="g1726"
3291+ showgrid="true"
3292+ showborder="true"
3293+ fit-margin-top="0"
3294+ fit-margin-left="0"
3295+ fit-margin-right="0"
3296+ fit-margin-bottom="0"
3297+ inkscape:snap-bbox="true"
3298+ inkscape:bbox-paths="true"
3299+ inkscape:bbox-nodes="true"
3300+ inkscape:snap-bbox-edge-midpoints="true"
3301+ inkscape:snap-bbox-midpoints="true"
3302+ inkscape:object-paths="true"
3303+ inkscape:snap-intersection-paths="true"
3304+ inkscape:object-nodes="true"
3305+ inkscape:snap-smooth-nodes="true"
3306+ inkscape:snap-midpoints="true"
3307+ inkscape:snap-object-midpoints="true"
3308+ inkscape:snap-center="true"
3309+ showguides="true"
3310+ inkscape:guide-bbox="true">
3311+ <inkscape:grid
3312+ type="xygrid"
3313+ id="grid5451"
3314+ empspacing="6" />
3315+ <sodipodi:guide
3316+ orientation="1,0"
3317+ position="6,77"
3318+ id="guide4063" />
3319+ <sodipodi:guide
3320+ orientation="1,0"
3321+ position="3,78"
3322+ id="guide4065" />
3323+ <sodipodi:guide
3324+ orientation="0,1"
3325+ position="55,84"
3326+ id="guide4067" />
3327+ <sodipodi:guide
3328+ orientation="0,1"
3329+ position="53,87"
3330+ id="guide4069" />
3331+ <sodipodi:guide
3332+ orientation="0,1"
3333+ position="20,3"
3334+ id="guide4071" />
3335+ <sodipodi:guide
3336+ orientation="0,1"
3337+ position="20,6"
3338+ id="guide4073" />
3339+ <sodipodi:guide
3340+ orientation="1,0"
3341+ position="87,7"
3342+ id="guide4075" />
3343+ <sodipodi:guide
3344+ orientation="1,0"
3345+ position="84,7"
3346+ id="guide4077" />
3347+ <sodipodi:guide
3348+ orientation="0,1"
3349+ position="58,81"
3350+ id="guide4074" />
3351+ <sodipodi:guide
3352+ orientation="1,0"
3353+ position="9,74"
3354+ id="guide4076" />
3355+ <sodipodi:guide
3356+ orientation="0,1"
3357+ position="21,9"
3358+ id="guide4078" />
3359+ <sodipodi:guide
3360+ orientation="1,0"
3361+ position="81,4"
3362+ id="guide4080" />
3363+ </sodipodi:namedview>
3364+ <metadata
3365+ id="metadata4879">
3366+ <rdf:RDF>
3367+ <cc:Work
3368+ rdf:about="">
3369+ <dc:format>image/svg+xml</dc:format>
3370+ <dc:type
3371+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3372+ <dc:title></dc:title>
3373+ </cc:Work>
3374+ </rdf:RDF>
3375+ </metadata>
3376+ <g
3377+ inkscape:label="Layer 1"
3378+ inkscape:groupmode="layer"
3379+ id="layer1"
3380+ transform="translate(67.857146,-84.50504)">
3381+ <g
3382+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
3383+ id="g4845"
3384+ style="display:inline">
3385+ <g
3386+ inkscape:label="Layer 1"
3387+ id="g1724"
3388+ transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
3389+ style="display:inline"
3390+ inkscape:export-filename="search01.png"
3391+ inkscape:export-xdpi="90"
3392+ inkscape:export-ydpi="90">
3393+ <g
3394+ transform="matrix(0.99934414,0,0,1,-106.92982,549.00002)"
3395+ id="g1726"
3396+ style="display:inline">
3397+ <rect
3398+ style="opacity:0.05;color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3399+ id="rect1728"
3400+ width="90.059067"
3401+ height="90.000015"
3402+ x="107"
3403+ y="-503.36218"
3404+ transform="scale(1,-1)" />
3405+ <ellipse
3406+ ry="28.529242"
3407+ rx="28.489321"
3408+ cy="458.39276"
3409+ cx="151.99873"
3410+ style="color:#000000;fill:none;stroke:#808080;stroke-width:9.00294495;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3411+ id="path2995" />
3412+ <path
3413+ sodipodi:nodetypes="ccccc"
3414+ inkscape:connector-curvature="0"
3415+ id="path825"
3416+ d="m 161.74637,473.36218 -24.72668,-24.71047 5.29301,-5.28953 24.72668,24.71046 z"
3417+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
3418+ <path
3419+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3420+ d="m 137.01969,468.07264 24.72668,-24.71046 5.29301,5.28954 -24.72667,24.71046 z"
3421+ id="path4002"
3422+ inkscape:connector-curvature="0"
3423+ sodipodi:nodetypes="ccccc" />
3424+ </g>
3425+ </g>
3426+ </g>
3427+ </g>
3428+</svg>
3429
3430=== removed file '0.1/ambiance/img/actions/clear-search.svg'
3431--- 0.1/ambiance/img/actions/clear-search.svg 2014-02-21 15:52:41 +0000
3432+++ 0.1/ambiance/img/actions/clear-search.svg 1970-01-01 00:00:00 +0000
3433@@ -1,170 +0,0 @@
3434-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3435-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3436-
3437-<svg
3438- xmlns:dc="http://purl.org/dc/elements/1.1/"
3439- xmlns:cc="http://creativecommons.org/ns#"
3440- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3441- xmlns:svg="http://www.w3.org/2000/svg"
3442- xmlns="http://www.w3.org/2000/svg"
3443- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3444- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3445- width="90"
3446- height="90"
3447- id="svg4874"
3448- version="1.1"
3449- inkscape:version="0.48+devel r12833"
3450- viewBox="0 0 90 90.000001"
3451- sodipodi:docname="clear-search.svg">
3452- <defs
3453- id="defs4876" />
3454- <sodipodi:namedview
3455- id="base"
3456- pagecolor="#ffffff"
3457- bordercolor="#666666"
3458- borderopacity="1.0"
3459- inkscape:pageopacity="0.0"
3460- inkscape:pageshadow="2"
3461- inkscape:zoom="6.366463"
3462- inkscape:cx="37.46193"
3463- inkscape:cy="50.498998"
3464- inkscape:document-units="px"
3465- inkscape:current-layer="g1726"
3466- showgrid="true"
3467- showborder="true"
3468- fit-margin-top="0"
3469- fit-margin-left="0"
3470- fit-margin-right="0"
3471- fit-margin-bottom="0"
3472- inkscape:snap-bbox="true"
3473- inkscape:bbox-paths="true"
3474- inkscape:bbox-nodes="true"
3475- inkscape:snap-bbox-edge-midpoints="true"
3476- inkscape:snap-bbox-midpoints="true"
3477- inkscape:object-paths="true"
3478- inkscape:snap-intersection-paths="true"
3479- inkscape:object-nodes="true"
3480- inkscape:snap-smooth-nodes="true"
3481- inkscape:snap-midpoints="true"
3482- inkscape:snap-object-midpoints="true"
3483- inkscape:snap-center="true"
3484- showguides="true"
3485- inkscape:guide-bbox="true">
3486- <inkscape:grid
3487- type="xygrid"
3488- id="grid5451"
3489- empspacing="6" />
3490- <sodipodi:guide
3491- orientation="1,0"
3492- position="6,77"
3493- id="guide4063" />
3494- <sodipodi:guide
3495- orientation="1,0"
3496- position="3,78"
3497- id="guide4065" />
3498- <sodipodi:guide
3499- orientation="0,1"
3500- position="55,84"
3501- id="guide4067" />
3502- <sodipodi:guide
3503- orientation="0,1"
3504- position="53,87"
3505- id="guide4069" />
3506- <sodipodi:guide
3507- orientation="0,1"
3508- position="20,3"
3509- id="guide4071" />
3510- <sodipodi:guide
3511- orientation="0,1"
3512- position="20,6"
3513- id="guide4073" />
3514- <sodipodi:guide
3515- orientation="1,0"
3516- position="87,7"
3517- id="guide4075" />
3518- <sodipodi:guide
3519- orientation="1,0"
3520- position="84,7"
3521- id="guide4077" />
3522- <sodipodi:guide
3523- orientation="0,1"
3524- position="58,81"
3525- id="guide4074" />
3526- <sodipodi:guide
3527- orientation="1,0"
3528- position="9,74"
3529- id="guide4076" />
3530- <sodipodi:guide
3531- orientation="0,1"
3532- position="21,9"
3533- id="guide4078" />
3534- <sodipodi:guide
3535- orientation="1,0"
3536- position="81,4"
3537- id="guide4080" />
3538- </sodipodi:namedview>
3539- <metadata
3540- id="metadata4879">
3541- <rdf:RDF>
3542- <cc:Work
3543- rdf:about="">
3544- <dc:format>image/svg+xml</dc:format>
3545- <dc:type
3546- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3547- <dc:title></dc:title>
3548- </cc:Work>
3549- </rdf:RDF>
3550- </metadata>
3551- <g
3552- inkscape:label="Layer 1"
3553- inkscape:groupmode="layer"
3554- id="layer1"
3555- transform="translate(67.857146,-84.50504)">
3556- <g
3557- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
3558- id="g4845"
3559- style="display:inline">
3560- <g
3561- inkscape:label="Layer 1"
3562- id="g1724"
3563- transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
3564- style="display:inline"
3565- inkscape:export-filename="search01.png"
3566- inkscape:export-xdpi="90"
3567- inkscape:export-ydpi="90">
3568- <g
3569- transform="matrix(0.99934414,0,0,1,-106.92982,549.00002)"
3570- id="g1726"
3571- style="display:inline">
3572- <rect
3573- style="opacity:0.05;color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3574- id="rect1728"
3575- width="90.059067"
3576- height="90.000015"
3577- x="107"
3578- y="-503.36218"
3579- transform="scale(1,-1)" />
3580- <ellipse
3581- ry="28.529242"
3582- rx="28.489321"
3583- cy="458.39276"
3584- cx="151.99873"
3585- style="color:#000000;fill:none;stroke:#808080;stroke-width:9.00294495;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3586- id="path2995" />
3587- <path
3588- sodipodi:nodetypes="ccccc"
3589- inkscape:connector-curvature="0"
3590- id="path825"
3591- d="m 161.74637,473.36218 -24.72668,-24.71047 5.29301,-5.28953 24.72668,24.71046 z"
3592- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
3593- <path
3594- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3595- d="m 137.01969,468.07264 24.72668,-24.71046 5.29301,5.28954 -24.72667,24.71046 z"
3596- id="path4002"
3597- inkscape:connector-curvature="0"
3598- sodipodi:nodetypes="ccccc" />
3599- </g>
3600- </g>
3601- </g>
3602- </g>
3603-</svg>
3604
3605=== added file '0.1/ambiance/img/actions/close.svg'
3606--- 0.1/ambiance/img/actions/close.svg 1970-01-01 00:00:00 +0000
3607+++ 0.1/ambiance/img/actions/close.svg 2015-01-30 23:39:52 +0000
3608@@ -0,0 +1,156 @@
3609+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3610+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3611+
3612+<svg
3613+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3614+ xmlns:cc="http://creativecommons.org/ns#"
3615+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3616+ xmlns:svg="http://www.w3.org/2000/svg"
3617+ xmlns="http://www.w3.org/2000/svg"
3618+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3619+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3620+ width="90"
3621+ height="90"
3622+ id="svg4874"
3623+ version="1.1"
3624+ inkscape:version="0.48+devel r12833"
3625+ viewBox="0 0 90 90.000001"
3626+ sodipodi:docname="close.svg">
3627+ <defs
3628+ id="defs4876" />
3629+ <sodipodi:namedview
3630+ id="base"
3631+ pagecolor="#ffffff"
3632+ bordercolor="#666666"
3633+ borderopacity="1.0"
3634+ inkscape:pageopacity="0.0"
3635+ inkscape:pageshadow="2"
3636+ inkscape:zoom="7.9580786"
3637+ inkscape:cx="41.925948"
3638+ inkscape:cy="37.509054"
3639+ inkscape:document-units="px"
3640+ inkscape:current-layer="g1708"
3641+ showgrid="true"
3642+ showborder="true"
3643+ fit-margin-top="0"
3644+ fit-margin-left="0"
3645+ fit-margin-right="0"
3646+ fit-margin-bottom="0"
3647+ inkscape:snap-bbox="true"
3648+ inkscape:bbox-paths="true"
3649+ inkscape:bbox-nodes="true"
3650+ inkscape:snap-bbox-edge-midpoints="true"
3651+ inkscape:snap-bbox-midpoints="true"
3652+ inkscape:object-paths="true"
3653+ inkscape:snap-intersection-paths="true"
3654+ inkscape:object-nodes="true"
3655+ inkscape:snap-smooth-nodes="true"
3656+ inkscape:snap-midpoints="true"
3657+ inkscape:snap-object-midpoints="true"
3658+ inkscape:snap-center="true"
3659+ showguides="true"
3660+ inkscape:guide-bbox="true">
3661+ <inkscape:grid
3662+ type="xygrid"
3663+ id="grid5451"
3664+ empspacing="6" />
3665+ <sodipodi:guide
3666+ orientation="1,0"
3667+ position="6,74"
3668+ id="guide4063" />
3669+ <sodipodi:guide
3670+ orientation="1,0"
3671+ position="3,73"
3672+ id="guide4065" />
3673+ <sodipodi:guide
3674+ orientation="0,1"
3675+ position="33,81"
3676+ id="guide4067" />
3677+ <sodipodi:guide
3678+ orientation="0,1"
3679+ position="34,84"
3680+ id="guide4069" />
3681+ <sodipodi:guide
3682+ orientation="0,1"
3683+ position="21,3"
3684+ id="guide4071" />
3685+ <sodipodi:guide
3686+ orientation="0,1"
3687+ position="22,6"
3688+ id="guide4073" />
3689+ <sodipodi:guide
3690+ orientation="1,0"
3691+ position="87,5"
3692+ id="guide4075" />
3693+ <sodipodi:guide
3694+ orientation="1,0"
3695+ position="84,4"
3696+ id="guide4077" />
3697+ <sodipodi:guide
3698+ orientation="0,1"
3699+ position="34,87"
3700+ id="guide4074" />
3701+ <sodipodi:guide
3702+ orientation="1,0"
3703+ position="9,66"
3704+ id="guide4076" />
3705+ <sodipodi:guide
3706+ orientation="0,1"
3707+ position="23,9"
3708+ id="guide4078" />
3709+ <sodipodi:guide
3710+ orientation="1,0"
3711+ position="81,2"
3712+ id="guide4080" />
3713+ </sodipodi:namedview>
3714+ <metadata
3715+ id="metadata4879">
3716+ <rdf:RDF>
3717+ <cc:Work
3718+ rdf:about="">
3719+ <dc:format>image/svg+xml</dc:format>
3720+ <dc:type
3721+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3722+ <dc:title></dc:title>
3723+ </cc:Work>
3724+ </rdf:RDF>
3725+ </metadata>
3726+ <g
3727+ inkscape:label="Layer 1"
3728+ inkscape:groupmode="layer"
3729+ id="layer1"
3730+ transform="translate(67.857146,-84.50504)">
3731+ <g
3732+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
3733+ id="g4845"
3734+ style="display:inline">
3735+ <g
3736+ inkscape:label="Layer 1"
3737+ id="g1708"
3738+ transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
3739+ inkscape:export-filename="add01.png"
3740+ inkscape:export-xdpi="90"
3741+ inkscape:export-ydpi="90">
3742+ <rect
3743+ style="color:#000000;fill:none;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3744+ id="rect1710"
3745+ width="90"
3746+ height="90"
3747+ x="0"
3748+ y="962.36218" />
3749+ <path
3750+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3751+ d="m 72.472044,971.3622 8.527949,8.52795 -63.472028,63.47205 -8.5279503,-8.528 z"
3752+ id="rect1712"
3753+ inkscape:connector-curvature="0"
3754+ sodipodi:nodetypes="ccccc" />
3755+ <path
3756+ sodipodi:nodetypes="ccccc"
3757+ inkscape:connector-curvature="0"
3758+ id="path4186"
3759+ d="m 81.000004,1034.8342 -8.527948,8.528 -63.4720524,-63.47204 8.5279684,-8.52795 z"
3760+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
3761+ </g>
3762+ </g>
3763+ </g>
3764+</svg>
3765
3766=== removed file '0.1/ambiance/img/actions/close.svg'
3767--- 0.1/ambiance/img/actions/close.svg 2014-02-21 15:52:41 +0000
3768+++ 0.1/ambiance/img/actions/close.svg 1970-01-01 00:00:00 +0000
3769@@ -1,156 +0,0 @@
3770-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3771-<!-- Created with Inkscape (http://www.inkscape.org/) -->
3772-
3773-<svg
3774- xmlns:dc="http://purl.org/dc/elements/1.1/"
3775- xmlns:cc="http://creativecommons.org/ns#"
3776- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3777- xmlns:svg="http://www.w3.org/2000/svg"
3778- xmlns="http://www.w3.org/2000/svg"
3779- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3780- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3781- width="90"
3782- height="90"
3783- id="svg4874"
3784- version="1.1"
3785- inkscape:version="0.48+devel r12833"
3786- viewBox="0 0 90 90.000001"
3787- sodipodi:docname="close.svg">
3788- <defs
3789- id="defs4876" />
3790- <sodipodi:namedview
3791- id="base"
3792- pagecolor="#ffffff"
3793- bordercolor="#666666"
3794- borderopacity="1.0"
3795- inkscape:pageopacity="0.0"
3796- inkscape:pageshadow="2"
3797- inkscape:zoom="7.9580786"
3798- inkscape:cx="41.925948"
3799- inkscape:cy="37.509054"
3800- inkscape:document-units="px"
3801- inkscape:current-layer="g1708"
3802- showgrid="true"
3803- showborder="true"
3804- fit-margin-top="0"
3805- fit-margin-left="0"
3806- fit-margin-right="0"
3807- fit-margin-bottom="0"
3808- inkscape:snap-bbox="true"
3809- inkscape:bbox-paths="true"
3810- inkscape:bbox-nodes="true"
3811- inkscape:snap-bbox-edge-midpoints="true"
3812- inkscape:snap-bbox-midpoints="true"
3813- inkscape:object-paths="true"
3814- inkscape:snap-intersection-paths="true"
3815- inkscape:object-nodes="true"
3816- inkscape:snap-smooth-nodes="true"
3817- inkscape:snap-midpoints="true"
3818- inkscape:snap-object-midpoints="true"
3819- inkscape:snap-center="true"
3820- showguides="true"
3821- inkscape:guide-bbox="true">
3822- <inkscape:grid
3823- type="xygrid"
3824- id="grid5451"
3825- empspacing="6" />
3826- <sodipodi:guide
3827- orientation="1,0"
3828- position="6,74"
3829- id="guide4063" />
3830- <sodipodi:guide
3831- orientation="1,0"
3832- position="3,73"
3833- id="guide4065" />
3834- <sodipodi:guide
3835- orientation="0,1"
3836- position="33,81"
3837- id="guide4067" />
3838- <sodipodi:guide
3839- orientation="0,1"
3840- position="34,84"
3841- id="guide4069" />
3842- <sodipodi:guide
3843- orientation="0,1"
3844- position="21,3"
3845- id="guide4071" />
3846- <sodipodi:guide
3847- orientation="0,1"
3848- position="22,6"
3849- id="guide4073" />
3850- <sodipodi:guide
3851- orientation="1,0"
3852- position="87,5"
3853- id="guide4075" />
3854- <sodipodi:guide
3855- orientation="1,0"
3856- position="84,4"
3857- id="guide4077" />
3858- <sodipodi:guide
3859- orientation="0,1"
3860- position="34,87"
3861- id="guide4074" />
3862- <sodipodi:guide
3863- orientation="1,0"
3864- position="9,66"
3865- id="guide4076" />
3866- <sodipodi:guide
3867- orientation="0,1"
3868- position="23,9"
3869- id="guide4078" />
3870- <sodipodi:guide
3871- orientation="1,0"
3872- position="81,2"
3873- id="guide4080" />
3874- </sodipodi:namedview>
3875- <metadata
3876- id="metadata4879">
3877- <rdf:RDF>
3878- <cc:Work
3879- rdf:about="">
3880- <dc:format>image/svg+xml</dc:format>
3881- <dc:type
3882- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
3883- <dc:title></dc:title>
3884- </cc:Work>
3885- </rdf:RDF>
3886- </metadata>
3887- <g
3888- inkscape:label="Layer 1"
3889- inkscape:groupmode="layer"
3890- id="layer1"
3891- transform="translate(67.857146,-84.50504)">
3892- <g
3893- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
3894- id="g4845"
3895- style="display:inline">
3896- <g
3897- inkscape:label="Layer 1"
3898- id="g1708"
3899- transform="matrix(0,-1,-1,0,1394.3622,441.36221)"
3900- inkscape:export-filename="add01.png"
3901- inkscape:export-xdpi="90"
3902- inkscape:export-ydpi="90">
3903- <rect
3904- style="color:#000000;fill:none;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3905- id="rect1710"
3906- width="90"
3907- height="90"
3908- x="0"
3909- y="962.36218" />
3910- <path
3911- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
3912- d="m 72.472044,971.3622 8.527949,8.52795 -63.472028,63.47205 -8.5279503,-8.528 z"
3913- id="rect1712"
3914- inkscape:connector-curvature="0"
3915- sodipodi:nodetypes="ccccc" />
3916- <path
3917- sodipodi:nodetypes="ccccc"
3918- inkscape:connector-curvature="0"
3919- id="path4186"
3920- d="m 81.000004,1034.8342 -8.527948,8.528 -63.4720524,-63.47204 8.5279684,-8.52795 z"
3921- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
3922- </g>
3923- </g>
3924- </g>
3925-</svg>
3926
3927=== added file '0.1/ambiance/img/actions/contact-new.svg'
3928--- 0.1/ambiance/img/actions/contact-new.svg 1970-01-01 00:00:00 +0000
3929+++ 0.1/ambiance/img/actions/contact-new.svg 2015-01-30 23:39:52 +0000
3930@@ -0,0 +1,172 @@
3931+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3932+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3933+
3934+<svg
3935+ xmlns:dc="http://purl.org/dc/elements/1.1/"
3936+ xmlns:cc="http://creativecommons.org/ns#"
3937+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3938+ xmlns:svg="http://www.w3.org/2000/svg"
3939+ xmlns="http://www.w3.org/2000/svg"
3940+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
3941+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
3942+ width="90"
3943+ height="90"
3944+ id="svg4874"
3945+ version="1.1"
3946+ inkscape:version="0.48+devel r12852"
3947+ viewBox="0 0 90 90.000001"
3948+ sodipodi:docname="new-contact.svg">
3949+ <defs
3950+ id="defs4876" />
3951+ <sodipodi:namedview
3952+ id="base"
3953+ pagecolor="#ffffff"
3954+ bordercolor="#666666"
3955+ borderopacity="1.0"
3956+ inkscape:pageopacity="0.0"
3957+ inkscape:pageshadow="2"
3958+ inkscape:zoom="6.3664629"
3959+ inkscape:cx="-35.137251"
3960+ inkscape:cy="62.397285"
3961+ inkscape:document-units="px"
3962+ inkscape:current-layer="g1628"
3963+ showgrid="true"
3964+ showborder="true"
3965+ fit-margin-top="0"
3966+ fit-margin-left="0"
3967+ fit-margin-right="0"
3968+ fit-margin-bottom="0"
3969+ inkscape:snap-bbox="true"
3970+ inkscape:bbox-paths="true"
3971+ inkscape:bbox-nodes="true"
3972+ inkscape:snap-bbox-edge-midpoints="true"
3973+ inkscape:snap-bbox-midpoints="true"
3974+ inkscape:object-paths="true"
3975+ inkscape:snap-intersection-paths="true"
3976+ inkscape:object-nodes="true"
3977+ inkscape:snap-smooth-nodes="true"
3978+ inkscape:snap-midpoints="true"
3979+ inkscape:snap-object-midpoints="true"
3980+ inkscape:snap-center="true"
3981+ showguides="true"
3982+ inkscape:guide-bbox="true">
3983+ <inkscape:grid
3984+ type="xygrid"
3985+ id="grid5451"
3986+ empspacing="6" />
3987+ <sodipodi:guide
3988+ orientation="1,0"
3989+ position="6,77"
3990+ id="guide4063" />
3991+ <sodipodi:guide
3992+ orientation="1,0"
3993+ position="3,78"
3994+ id="guide4065" />
3995+ <sodipodi:guide
3996+ orientation="0,1"
3997+ position="55,84"
3998+ id="guide4067" />
3999+ <sodipodi:guide
4000+ orientation="0,1"
4001+ position="53,87"
4002+ id="guide4069" />
4003+ <sodipodi:guide
4004+ orientation="0,1"
4005+ position="20,3"
4006+ id="guide4071" />
4007+ <sodipodi:guide
4008+ orientation="0,1"
4009+ position="20,6"
4010+ id="guide4073" />
4011+ <sodipodi:guide
4012+ orientation="1,0"
4013+ position="87,7"
4014+ id="guide4075" />
4015+ <sodipodi:guide
4016+ orientation="1,0"
4017+ position="84,7"
4018+ id="guide4077" />
4019+ <sodipodi:guide
4020+ orientation="0,1"
4021+ position="58,81"
4022+ id="guide4074" />
4023+ <sodipodi:guide
4024+ orientation="1,0"
4025+ position="9,74"
4026+ id="guide4076" />
4027+ <sodipodi:guide
4028+ orientation="0,1"
4029+ position="21,9"
4030+ id="guide4078" />
4031+ <sodipodi:guide
4032+ orientation="1,0"
4033+ position="81,4"
4034+ id="guide4080" />
4035+ </sodipodi:namedview>
4036+ <metadata
4037+ id="metadata4879">
4038+ <rdf:RDF>
4039+ <cc:Work
4040+ rdf:about="">
4041+ <dc:format>image/svg+xml</dc:format>
4042+ <dc:type
4043+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4044+ <dc:title></dc:title>
4045+ </cc:Work>
4046+ </rdf:RDF>
4047+ </metadata>
4048+ <g
4049+ inkscape:label="Layer 1"
4050+ inkscape:groupmode="layer"
4051+ id="layer1"
4052+ transform="translate(67.857146,-84.50504)">
4053+ <g
4054+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
4055+ id="g4845"
4056+ style="display:inline">
4057+ <g
4058+ inkscape:export-ydpi="90"
4059+ inkscape:export-xdpi="90"
4060+ inkscape:export-filename="message03.png"
4061+ id="g1628"
4062+ transform="matrix(0,-1,-1,0,572.36222,615.36221)">
4063+ <g
4064+ transform="matrix(1.875,0,0,1.875,-366,-1652.8169)"
4065+ id="g1630">
4066+ <rect
4067+ style="opacity:0.21171169;fill:none;stroke:none"
4068+ id="rect1632"
4069+ width="48"
4070+ height="48"
4071+ x="288"
4072+ y="152"
4073+ transform="translate(0,804.3622)" />
4074+ </g>
4075+ <path
4076+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4077+ d="m 240,189.86222 6,-1.50004 0,41.99997 -6,0 z"
4078+ id="rect3470"
4079+ inkscape:connector-curvature="0"
4080+ sodipodi:nodetypes="ccccc" />
4081+ <rect
4082+ transform="matrix(0,1,-1,0,0,0)"
4083+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4084+ id="rect3472"
4085+ width="5.9999876"
4086+ height="42"
4087+ x="206.36218"
4088+ y="-264" />
4089+ <path
4090+ sodipodi:nodetypes="ccccccccccccccccc"
4091+ inkscape:connector-curvature="0"
4092+ id="path4122"
4093+ d="m 220.83435,178.53522 c -2.02191,2.92064 -4.22257,5.4516 -6.32048,7.61482 l 0.008,0 c -3.84179,3.79412 -9.00765,8.3241 -9.00765,8.3241 0,0 -5.47531,-4.44981 -9.04047,-8.31839 l 0.008,0 c -2.0953,-2.16036 -4.29456,-4.68741 -6.31477,-7.60341 -0.0902,0.0345 -0.18262,0.0634 -0.27258,0.0985 -4.86709,1.84478 -9.16481,4.29787 -12.8936,7.35939 l 0,14.35202 20.17303,0 0.0257,0 16.59394,0 20.19872,0 0,-14.35202 c -3.72878,-3.06152 -8.00584,-5.51461 -12.83362,-7.35939 -0.10647,-0.0412 -0.21571,-0.0753 -0.32253,-0.11559 z"
4094+ style="font-size:15.00296783px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;display:inline;font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
4095+ <path
4096+ style="font-size:121.62958527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;display:inline;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4097+ d="m 205.49337,143.39366 c -4.51127,3.9e-4 -8.87336,1.90379 -12.063,5.26161 -3.19012,3.35832 -4.99616,7.95014 -4.99616,12.69804 l 0,0.0143 c 0.008,1.82799 0.17147,3.93123 1.03319,6.06504 2.24656,5.56288 5.61484,9.88306 8.69085,13.22178 l -0.007,0 c 0.84945,0.97034 1.81767,1.95511 2.78278,2.90266 l 9.00338,0 c 0.97723,-0.95558 1.97583,-1.94627 2.90122,-2.90837 l -0.008,0 c 3.07504,-3.33794 6.44225,-7.65521 8.68799,-13.21607 0.86165,-2.13358 1.02644,-4.23653 1.0332,-6.06504 l 0,-0.0143 c 0,-4.74872 -1.80785,-9.34013 -4.99759,-12.69804 -3.18923,-3.3574 -7.55029,-5.26122 -12.06156,-5.26161 l -9.5e-4,0 z"
4098+ id="path4082" />
4099+ </g>
4100+ </g>
4101+ </g>
4102+</svg>
4103
4104=== removed file '0.1/ambiance/img/actions/contact-new.svg'
4105--- 0.1/ambiance/img/actions/contact-new.svg 2014-02-21 15:52:41 +0000
4106+++ 0.1/ambiance/img/actions/contact-new.svg 1970-01-01 00:00:00 +0000
4107@@ -1,172 +0,0 @@
4108-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
4109-<!-- Created with Inkscape (http://www.inkscape.org/) -->
4110-
4111-<svg
4112- xmlns:dc="http://purl.org/dc/elements/1.1/"
4113- xmlns:cc="http://creativecommons.org/ns#"
4114- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4115- xmlns:svg="http://www.w3.org/2000/svg"
4116- xmlns="http://www.w3.org/2000/svg"
4117- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
4118- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4119- width="90"
4120- height="90"
4121- id="svg4874"
4122- version="1.1"
4123- inkscape:version="0.48+devel r12852"
4124- viewBox="0 0 90 90.000001"
4125- sodipodi:docname="new-contact.svg">
4126- <defs
4127- id="defs4876" />
4128- <sodipodi:namedview
4129- id="base"
4130- pagecolor="#ffffff"
4131- bordercolor="#666666"
4132- borderopacity="1.0"
4133- inkscape:pageopacity="0.0"
4134- inkscape:pageshadow="2"
4135- inkscape:zoom="6.3664629"
4136- inkscape:cx="-35.137251"
4137- inkscape:cy="62.397285"
4138- inkscape:document-units="px"
4139- inkscape:current-layer="g1628"
4140- showgrid="true"
4141- showborder="true"
4142- fit-margin-top="0"
4143- fit-margin-left="0"
4144- fit-margin-right="0"
4145- fit-margin-bottom="0"
4146- inkscape:snap-bbox="true"
4147- inkscape:bbox-paths="true"
4148- inkscape:bbox-nodes="true"
4149- inkscape:snap-bbox-edge-midpoints="true"
4150- inkscape:snap-bbox-midpoints="true"
4151- inkscape:object-paths="true"
4152- inkscape:snap-intersection-paths="true"
4153- inkscape:object-nodes="true"
4154- inkscape:snap-smooth-nodes="true"
4155- inkscape:snap-midpoints="true"
4156- inkscape:snap-object-midpoints="true"
4157- inkscape:snap-center="true"
4158- showguides="true"
4159- inkscape:guide-bbox="true">
4160- <inkscape:grid
4161- type="xygrid"
4162- id="grid5451"
4163- empspacing="6" />
4164- <sodipodi:guide
4165- orientation="1,0"
4166- position="6,77"
4167- id="guide4063" />
4168- <sodipodi:guide
4169- orientation="1,0"
4170- position="3,78"
4171- id="guide4065" />
4172- <sodipodi:guide
4173- orientation="0,1"
4174- position="55,84"
4175- id="guide4067" />
4176- <sodipodi:guide
4177- orientation="0,1"
4178- position="53,87"
4179- id="guide4069" />
4180- <sodipodi:guide
4181- orientation="0,1"
4182- position="20,3"
4183- id="guide4071" />
4184- <sodipodi:guide
4185- orientation="0,1"
4186- position="20,6"
4187- id="guide4073" />
4188- <sodipodi:guide
4189- orientation="1,0"
4190- position="87,7"
4191- id="guide4075" />
4192- <sodipodi:guide
4193- orientation="1,0"
4194- position="84,7"
4195- id="guide4077" />
4196- <sodipodi:guide
4197- orientation="0,1"
4198- position="58,81"
4199- id="guide4074" />
4200- <sodipodi:guide
4201- orientation="1,0"
4202- position="9,74"
4203- id="guide4076" />
4204- <sodipodi:guide
4205- orientation="0,1"
4206- position="21,9"
4207- id="guide4078" />
4208- <sodipodi:guide
4209- orientation="1,0"
4210- position="81,4"
4211- id="guide4080" />
4212- </sodipodi:namedview>
4213- <metadata
4214- id="metadata4879">
4215- <rdf:RDF>
4216- <cc:Work
4217- rdf:about="">
4218- <dc:format>image/svg+xml</dc:format>
4219- <dc:type
4220- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4221- <dc:title></dc:title>
4222- </cc:Work>
4223- </rdf:RDF>
4224- </metadata>
4225- <g
4226- inkscape:label="Layer 1"
4227- inkscape:groupmode="layer"
4228- id="layer1"
4229- transform="translate(67.857146,-84.50504)">
4230- <g
4231- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
4232- id="g4845"
4233- style="display:inline">
4234- <g
4235- inkscape:export-ydpi="90"
4236- inkscape:export-xdpi="90"
4237- inkscape:export-filename="message03.png"
4238- id="g1628"
4239- transform="matrix(0,-1,-1,0,572.36222,615.36221)">
4240- <g
4241- transform="matrix(1.875,0,0,1.875,-366,-1652.8169)"
4242- id="g1630">
4243- <rect
4244- style="opacity:0.21171169;fill:none;stroke:none"
4245- id="rect1632"
4246- width="48"
4247- height="48"
4248- x="288"
4249- y="152"
4250- transform="translate(0,804.3622)" />
4251- </g>
4252- <path
4253- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4254- d="m 240,189.86222 6,-1.50004 0,41.99997 -6,0 z"
4255- id="rect3470"
4256- inkscape:connector-curvature="0"
4257- sodipodi:nodetypes="ccccc" />
4258- <rect
4259- transform="matrix(0,1,-1,0,0,0)"
4260- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4261- id="rect3472"
4262- width="5.9999876"
4263- height="42"
4264- x="206.36218"
4265- y="-264" />
4266- <path
4267- sodipodi:nodetypes="ccccccccccccccccc"
4268- inkscape:connector-curvature="0"
4269- id="path4122"
4270- d="m 220.83435,178.53522 c -2.02191,2.92064 -4.22257,5.4516 -6.32048,7.61482 l 0.008,0 c -3.84179,3.79412 -9.00765,8.3241 -9.00765,8.3241 0,0 -5.47531,-4.44981 -9.04047,-8.31839 l 0.008,0 c -2.0953,-2.16036 -4.29456,-4.68741 -6.31477,-7.60341 -0.0902,0.0345 -0.18262,0.0634 -0.27258,0.0985 -4.86709,1.84478 -9.16481,4.29787 -12.8936,7.35939 l 0,14.35202 20.17303,0 0.0257,0 16.59394,0 20.19872,0 0,-14.35202 c -3.72878,-3.06152 -8.00584,-5.51461 -12.83362,-7.35939 -0.10647,-0.0412 -0.21571,-0.0753 -0.32253,-0.11559 z"
4271- style="font-size:15.00296783px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;display:inline;font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
4272- <path
4273- style="font-size:121.62958527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;display:inline;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4274- d="m 205.49337,143.39366 c -4.51127,3.9e-4 -8.87336,1.90379 -12.063,5.26161 -3.19012,3.35832 -4.99616,7.95014 -4.99616,12.69804 l 0,0.0143 c 0.008,1.82799 0.17147,3.93123 1.03319,6.06504 2.24656,5.56288 5.61484,9.88306 8.69085,13.22178 l -0.007,0 c 0.84945,0.97034 1.81767,1.95511 2.78278,2.90266 l 9.00338,0 c 0.97723,-0.95558 1.97583,-1.94627 2.90122,-2.90837 l -0.008,0 c 3.07504,-3.33794 6.44225,-7.65521 8.68799,-13.21607 0.86165,-2.13358 1.02644,-4.23653 1.0332,-6.06504 l 0,-0.0143 c 0,-4.74872 -1.80785,-9.34013 -4.99759,-12.69804 -3.18923,-3.3574 -7.55029,-5.26122 -12.06156,-5.26161 l -9.5e-4,0 z"
4275- id="path4082" />
4276- </g>
4277- </g>
4278- </g>
4279-</svg>
4280
4281=== added file '0.1/ambiance/img/actions/contact.svg'
4282--- 0.1/ambiance/img/actions/contact.svg 1970-01-01 00:00:00 +0000
4283+++ 0.1/ambiance/img/actions/contact.svg 2015-01-30 23:39:52 +0000
4284@@ -0,0 +1,161 @@
4285+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
4286+<!-- Created with Inkscape (http://www.inkscape.org/) -->
4287+
4288+<svg
4289+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4290+ xmlns:cc="http://creativecommons.org/ns#"
4291+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4292+ xmlns:svg="http://www.w3.org/2000/svg"
4293+ xmlns="http://www.w3.org/2000/svg"
4294+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
4295+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4296+ width="90"
4297+ height="90"
4298+ id="svg4874"
4299+ version="1.1"
4300+ inkscape:version="0.48+devel r12923"
4301+ viewBox="0 0 90 90.000001"
4302+ sodipodi:docname="contact.2.svg">
4303+ <defs
4304+ id="defs4876" />
4305+ <sodipodi:namedview
4306+ id="base"
4307+ pagecolor="#ffffff"
4308+ bordercolor="#666666"
4309+ borderopacity="1.0"
4310+ inkscape:pageopacity="0.0"
4311+ inkscape:pageshadow="2"
4312+ inkscape:zoom="1.335144"
4313+ inkscape:cx="-41.194068"
4314+ inkscape:cy="66.465363"
4315+ inkscape:document-units="px"
4316+ inkscape:current-layer="g4780"
4317+ showgrid="true"
4318+ showborder="true"
4319+ fit-margin-top="0"
4320+ fit-margin-left="0"
4321+ fit-margin-right="0"
4322+ fit-margin-bottom="0"
4323+ inkscape:snap-bbox="true"
4324+ inkscape:bbox-paths="true"
4325+ inkscape:bbox-nodes="true"
4326+ inkscape:snap-bbox-edge-midpoints="true"
4327+ inkscape:snap-bbox-midpoints="true"
4328+ inkscape:object-paths="true"
4329+ inkscape:snap-intersection-paths="true"
4330+ inkscape:object-nodes="true"
4331+ inkscape:snap-smooth-nodes="true"
4332+ inkscape:snap-midpoints="true"
4333+ inkscape:snap-object-midpoints="true"
4334+ inkscape:snap-center="true"
4335+ showguides="false"
4336+ inkscape:guide-bbox="true"
4337+ inkscape:snap-global="true">
4338+ <inkscape:grid
4339+ type="xygrid"
4340+ id="grid5451"
4341+ empspacing="6" />
4342+ <sodipodi:guide
4343+ orientation="1,0"
4344+ position="6,77"
4345+ id="guide4063" />
4346+ <sodipodi:guide
4347+ orientation="1,0"
4348+ position="3,78"
4349+ id="guide4065" />
4350+ <sodipodi:guide
4351+ orientation="0,1"
4352+ position="55,84"
4353+ id="guide4067" />
4354+ <sodipodi:guide
4355+ orientation="0,1"
4356+ position="53,87"
4357+ id="guide4069" />
4358+ <sodipodi:guide
4359+ orientation="0,1"
4360+ position="20,3"
4361+ id="guide4071" />
4362+ <sodipodi:guide
4363+ orientation="0,1"
4364+ position="20,6"
4365+ id="guide4073" />
4366+ <sodipodi:guide
4367+ orientation="1,0"
4368+ position="87,7"
4369+ id="guide4075" />
4370+ <sodipodi:guide
4371+ orientation="1,0"
4372+ position="84,7"
4373+ id="guide4077" />
4374+ <sodipodi:guide
4375+ orientation="0,1"
4376+ position="58,81"
4377+ id="guide4074" />
4378+ <sodipodi:guide
4379+ orientation="1,0"
4380+ position="9,74"
4381+ id="guide4076" />
4382+ <sodipodi:guide
4383+ orientation="0,1"
4384+ position="21,9"
4385+ id="guide4078" />
4386+ <sodipodi:guide
4387+ orientation="1,0"
4388+ position="81,4"
4389+ id="guide4080" />
4390+ </sodipodi:namedview>
4391+ <metadata
4392+ id="metadata4879">
4393+ <rdf:RDF>
4394+ <cc:Work
4395+ rdf:about="">
4396+ <dc:format>image/svg+xml</dc:format>
4397+ <dc:type
4398+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4399+ <dc:title></dc:title>
4400+ </cc:Work>
4401+ </rdf:RDF>
4402+ </metadata>
4403+ <g
4404+ inkscape:label="Layer 1"
4405+ inkscape:groupmode="layer"
4406+ id="layer1"
4407+ transform="translate(67.857146,-84.50504)">
4408+ <g
4409+ transform="matrix(0,-1,-1,0,373.50506,516.50504)"
4410+ id="g4845"
4411+ style="display:inline">
4412+ <g
4413+ inkscape:export-ydpi="90"
4414+ inkscape:export-xdpi="90"
4415+ inkscape:export-filename="next01.png"
4416+ transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
4417+ id="g4778"
4418+ inkscape:label="Layer 1">
4419+ <g
4420+ transform="matrix(-1,0,0,1,575.99999,611)"
4421+ id="g4780"
4422+ style="display:inline">
4423+ <rect
4424+ transform="scale(-1,1)"
4425+ y="351.36221"
4426+ x="-432"
4427+ height="90"
4428+ width="90"
4429+ id="rect4120"
4430+ style="color:#000000;fill:none;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4431+ <path
4432+ sodipodi:nodetypes="ccccccccccccccccc"
4433+ inkscape:connector-curvature="0"
4434+ id="path4122"
4435+ d="m 377.8517,375.36808 c -3.99884,2.76724 -7.46417,5.77913 -10.426,8.65039 l 0,-0.01 c -5.19478,5.25797 -11.39708,12.32812 -11.39708,12.32812 0,0 6.09255,7.49367 11.38927,12.37305 l 0,-0.01 c 2.95791,2.86769 6.41787,5.87765 10.41036,8.64258 -0.0472,0.12346 -0.0867,0.24994 -0.13482,0.37305 -2.52581,6.66123 -5.88451,12.54322 -10.07625,17.64655 l -19.65035,0 0,-27.60938 0,-0.0352 0,-22.71093 0,-27.64453 19.65035,0 c 4.19174,5.1033 7.55044,10.957 10.07625,17.56445 0.0564,0.14572 0.10308,0.29523 0.15827,0.44141 z"
4436+ style="font-size:15.00296783px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
4437+ <path
4438+ style="font-size:121.62958527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4439+ d="m 425.96643,396.36417 c -5.4e-4,6.17426 -2.60609,12.14435 -7.20351,16.50977 -4.59812,4.3661 -10.88465,6.83789 -17.38533,6.83789 l -0.0197,0 c -2.50283,-0.01 -5.38308,-0.23467 -8.30462,-1.41406 -7.61654,-3.0747 -13.53106,-7.68463 -18.10234,-11.89453 l 0,0.008 c -1.32856,-1.16258 -2.67769,-2.48772 -3.97503,-3.8086 l 0,-12.32226 c 1.30835,-1.33748 2.66563,-2.70418 3.98291,-3.9707 l 0,0.01 c 4.57022,-4.20858 10.4807,-8.81704 18.09446,-11.89062 2.92123,-1.17927 5.80108,-1.40483 8.30462,-1.41407 l 0.0197,0 c 6.50181,0 12.78778,2.47428 17.38533,6.83985 4.59684,4.36489 7.20297,10.33355 7.20351,16.50781 l 0,0.002 z"
4440+ id="path4124" />
4441+ </g>
4442+ </g>
4443+ </g>
4444+ </g>
4445+</svg>
4446
4447=== removed file '0.1/ambiance/img/actions/contact.svg'
4448--- 0.1/ambiance/img/actions/contact.svg 2014-02-21 15:52:41 +0000
4449+++ 0.1/ambiance/img/actions/contact.svg 1970-01-01 00:00:00 +0000
4450@@ -1,161 +0,0 @@
4451-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
4452-<!-- Created with Inkscape (http://www.inkscape.org/) -->
4453-
4454-<svg
4455- xmlns:dc="http://purl.org/dc/elements/1.1/"
4456- xmlns:cc="http://creativecommons.org/ns#"
4457- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4458- xmlns:svg="http://www.w3.org/2000/svg"
4459- xmlns="http://www.w3.org/2000/svg"
4460- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
4461- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4462- width="90"
4463- height="90"
4464- id="svg4874"
4465- version="1.1"
4466- inkscape:version="0.48+devel r12923"
4467- viewBox="0 0 90 90.000001"
4468- sodipodi:docname="contact.2.svg">
4469- <defs
4470- id="defs4876" />
4471- <sodipodi:namedview
4472- id="base"
4473- pagecolor="#ffffff"
4474- bordercolor="#666666"
4475- borderopacity="1.0"
4476- inkscape:pageopacity="0.0"
4477- inkscape:pageshadow="2"
4478- inkscape:zoom="1.335144"
4479- inkscape:cx="-41.194068"
4480- inkscape:cy="66.465363"
4481- inkscape:document-units="px"
4482- inkscape:current-layer="g4780"
4483- showgrid="true"
4484- showborder="true"
4485- fit-margin-top="0"
4486- fit-margin-left="0"
4487- fit-margin-right="0"
4488- fit-margin-bottom="0"
4489- inkscape:snap-bbox="true"
4490- inkscape:bbox-paths="true"
4491- inkscape:bbox-nodes="true"
4492- inkscape:snap-bbox-edge-midpoints="true"
4493- inkscape:snap-bbox-midpoints="true"
4494- inkscape:object-paths="true"
4495- inkscape:snap-intersection-paths="true"
4496- inkscape:object-nodes="true"
4497- inkscape:snap-smooth-nodes="true"
4498- inkscape:snap-midpoints="true"
4499- inkscape:snap-object-midpoints="true"
4500- inkscape:snap-center="true"
4501- showguides="false"
4502- inkscape:guide-bbox="true"
4503- inkscape:snap-global="true">
4504- <inkscape:grid
4505- type="xygrid"
4506- id="grid5451"
4507- empspacing="6" />
4508- <sodipodi:guide
4509- orientation="1,0"
4510- position="6,77"
4511- id="guide4063" />
4512- <sodipodi:guide
4513- orientation="1,0"
4514- position="3,78"
4515- id="guide4065" />
4516- <sodipodi:guide
4517- orientation="0,1"
4518- position="55,84"
4519- id="guide4067" />
4520- <sodipodi:guide
4521- orientation="0,1"
4522- position="53,87"
4523- id="guide4069" />
4524- <sodipodi:guide
4525- orientation="0,1"
4526- position="20,3"
4527- id="guide4071" />
4528- <sodipodi:guide
4529- orientation="0,1"
4530- position="20,6"
4531- id="guide4073" />
4532- <sodipodi:guide
4533- orientation="1,0"
4534- position="87,7"
4535- id="guide4075" />
4536- <sodipodi:guide
4537- orientation="1,0"
4538- position="84,7"
4539- id="guide4077" />
4540- <sodipodi:guide
4541- orientation="0,1"
4542- position="58,81"
4543- id="guide4074" />
4544- <sodipodi:guide
4545- orientation="1,0"
4546- position="9,74"
4547- id="guide4076" />
4548- <sodipodi:guide
4549- orientation="0,1"
4550- position="21,9"
4551- id="guide4078" />
4552- <sodipodi:guide
4553- orientation="1,0"
4554- position="81,4"
4555- id="guide4080" />
4556- </sodipodi:namedview>
4557- <metadata
4558- id="metadata4879">
4559- <rdf:RDF>
4560- <cc:Work
4561- rdf:about="">
4562- <dc:format>image/svg+xml</dc:format>
4563- <dc:type
4564- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4565- <dc:title></dc:title>
4566- </cc:Work>
4567- </rdf:RDF>
4568- </metadata>
4569- <g
4570- inkscape:label="Layer 1"
4571- inkscape:groupmode="layer"
4572- id="layer1"
4573- transform="translate(67.857146,-84.50504)">
4574- <g
4575- transform="matrix(0,-1,-1,0,373.50506,516.50504)"
4576- id="g4845"
4577- style="display:inline">
4578- <g
4579- inkscape:export-ydpi="90"
4580- inkscape:export-xdpi="90"
4581- inkscape:export-filename="next01.png"
4582- transform="matrix(-0.9996045,0,0,1,575.94296,-611.00001)"
4583- id="g4778"
4584- inkscape:label="Layer 1">
4585- <g
4586- transform="matrix(-1,0,0,1,575.99999,611)"
4587- id="g4780"
4588- style="display:inline">
4589- <rect
4590- transform="scale(-1,1)"
4591- y="351.36221"
4592- x="-432"
4593- height="90"
4594- width="90"
4595- id="rect4120"
4596- style="color:#000000;fill:none;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4597- <path
4598- sodipodi:nodetypes="ccccccccccccccccc"
4599- inkscape:connector-curvature="0"
4600- id="path4122"
4601- d="m 377.8517,375.36808 c -3.99884,2.76724 -7.46417,5.77913 -10.426,8.65039 l 0,-0.01 c -5.19478,5.25797 -11.39708,12.32812 -11.39708,12.32812 0,0 6.09255,7.49367 11.38927,12.37305 l 0,-0.01 c 2.95791,2.86769 6.41787,5.87765 10.41036,8.64258 -0.0472,0.12346 -0.0867,0.24994 -0.13482,0.37305 -2.52581,6.66123 -5.88451,12.54322 -10.07625,17.64655 l -19.65035,0 0,-27.60938 0,-0.0352 0,-22.71093 0,-27.64453 19.65035,0 c 4.19174,5.1033 7.55044,10.957 10.07625,17.56445 0.0564,0.14572 0.10308,0.29523 0.15827,0.44141 z"
4602- style="font-size:15.00296783px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu" />
4603- <path
4604- style="font-size:121.62958527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
4605- d="m 425.96643,396.36417 c -5.4e-4,6.17426 -2.60609,12.14435 -7.20351,16.50977 -4.59812,4.3661 -10.88465,6.83789 -17.38533,6.83789 l -0.0197,0 c -2.50283,-0.01 -5.38308,-0.23467 -8.30462,-1.41406 -7.61654,-3.0747 -13.53106,-7.68463 -18.10234,-11.89453 l 0,0.008 c -1.32856,-1.16258 -2.67769,-2.48772 -3.97503,-3.8086 l 0,-12.32226 c 1.30835,-1.33748 2.66563,-2.70418 3.98291,-3.9707 l 0,0.01 c 4.57022,-4.20858 10.4807,-8.81704 18.09446,-11.89062 2.92123,-1.17927 5.80108,-1.40483 8.30462,-1.41407 l 0.0197,0 c 6.50181,0 12.78778,2.47428 17.38533,6.83985 4.59684,4.36489 7.20297,10.33355 7.20351,16.50781 l 0,0.002 z"
4606- id="path4124" />
4607- </g>
4608- </g>
4609- </g>
4610- </g>
4611-</svg>
4612
4613=== added file '0.1/ambiance/img/actions/dialer.svg'
4614--- 0.1/ambiance/img/actions/dialer.svg 1970-01-01 00:00:00 +0000
4615+++ 0.1/ambiance/img/actions/dialer.svg 2015-01-30 23:39:52 +0000
4616@@ -0,0 +1,208 @@
4617+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
4618+<!-- Created with Inkscape (http://www.inkscape.org/) -->
4619+
4620+<svg
4621+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4622+ xmlns:cc="http://creativecommons.org/ns#"
4623+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4624+ xmlns:svg="http://www.w3.org/2000/svg"
4625+ xmlns="http://www.w3.org/2000/svg"
4626+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
4627+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4628+ width="90"
4629+ height="90"
4630+ id="svg4874"
4631+ version="1.1"
4632+ inkscape:version="0.48+devel r"
4633+ viewBox="0 0 90 90.000001"
4634+ sodipodi:docname="dialer.svg">
4635+ <defs
4636+ id="defs4876" />
4637+ <sodipodi:namedview
4638+ id="base"
4639+ pagecolor="#ffffff"
4640+ bordercolor="#666666"
4641+ borderopacity="1.0"
4642+ inkscape:pageopacity="0.0"
4643+ inkscape:pageshadow="2"
4644+ inkscape:zoom="7.9580786"
4645+ inkscape:cx="29.284706"
4646+ inkscape:cy="61.472125"
4647+ inkscape:document-units="px"
4648+ inkscape:current-layer="g4320"
4649+ showgrid="true"
4650+ showborder="true"
4651+ fit-margin-top="0"
4652+ fit-margin-left="0"
4653+ fit-margin-right="0"
4654+ fit-margin-bottom="0"
4655+ inkscape:snap-bbox="true"
4656+ inkscape:bbox-paths="true"
4657+ inkscape:bbox-nodes="true"
4658+ inkscape:snap-bbox-edge-midpoints="true"
4659+ inkscape:snap-bbox-midpoints="true"
4660+ inkscape:object-paths="true"
4661+ inkscape:snap-intersection-paths="true"
4662+ inkscape:object-nodes="true"
4663+ inkscape:snap-smooth-nodes="true"
4664+ inkscape:snap-midpoints="true"
4665+ inkscape:snap-object-midpoints="true"
4666+ inkscape:snap-center="true"
4667+ showguides="true"
4668+ inkscape:guide-bbox="true">
4669+ <inkscape:grid
4670+ type="xygrid"
4671+ id="grid5451"
4672+ empspacing="6" />
4673+ <sodipodi:guide
4674+ orientation="1,0"
4675+ position="9,74"
4676+ id="guide4063" />
4677+ <sodipodi:guide
4678+ orientation="1,0"
4679+ position="6,71"
4680+ id="guide4065" />
4681+ <sodipodi:guide
4682+ orientation="0,1"
4683+ position="39,84"
4684+ id="guide4067" />
4685+ <sodipodi:guide
4686+ orientation="0,1"
4687+ position="39,87"
4688+ id="guide4069" />
4689+ <sodipodi:guide
4690+ orientation="0,1"
4691+ position="50,3"
4692+ id="guide4071" />
4693+ <sodipodi:guide
4694+ orientation="0,1"
4695+ position="52,6"
4696+ id="guide4073" />
4697+ <sodipodi:guide
4698+ orientation="1,0"
4699+ position="87,12"
4700+ id="guide4075" />
4701+ <sodipodi:guide
4702+ orientation="1,0"
4703+ position="84,12"
4704+ id="guide4077" />
4705+ <sodipodi:guide
4706+ orientation="0,1"
4707+ position="45,81"
4708+ id="guide4072" />
4709+ <sodipodi:guide
4710+ orientation="1,0"
4711+ position="3,68"
4712+ id="guide4074" />
4713+ <sodipodi:guide
4714+ orientation="0,1"
4715+ position="70,9"
4716+ id="guide4076" />
4717+ <sodipodi:guide
4718+ orientation="1,0"
4719+ position="81,5"
4720+ id="guide4078" />
4721+ </sodipodi:namedview>
4722+ <metadata
4723+ id="metadata4879">
4724+ <rdf:RDF>
4725+ <cc:Work
4726+ rdf:about="">
4727+ <dc:format>image/svg+xml</dc:format>
4728+ <dc:type
4729+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4730+ <dc:title></dc:title>
4731+ </cc:Work>
4732+ </rdf:RDF>
4733+ </metadata>
4734+ <g
4735+ inkscape:label="Layer 1"
4736+ inkscape:groupmode="layer"
4737+ id="layer1"
4738+ transform="translate(67.857146,-84.50504)">
4739+ <g
4740+ transform="translate(-763.85715,94.142858)"
4741+ id="g4320"
4742+ inkscape:export-filename="phone03.png"
4743+ inkscape:export-xdpi="90"
4744+ inkscape:export-ydpi="90">
4745+ <rect
4746+ y="-9.6378174"
4747+ x="696"
4748+ height="90"
4749+ width="90"
4750+ id="rect4318"
4751+ style="color:#000000;fill:none;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4752+ <circle
4753+ r="5.0000005"
4754+ cy="1.3621866"
4755+ cx="707"
4756+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4757+ id="path4091"
4758+ d="m 712,1.3621866 a 5.0000005,5.0000005 0 0 1 -5,5.0000004 5.0000005,5.0000005 0 0 1 -5,-5.0000004 5.0000005,5.0000005 0 0 1 5,-5.0000005 5.0000005,5.0000005 0 0 1 5,5.0000005 z" />
4759+ <circle
4760+ r="5.0000005"
4761+ cy="1.3621866"
4762+ cx="721"
4763+ id="path4109"
4764+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4765+ d="m 726,1.3621866 a 5.0000005,5.0000005 0 0 1 -5,5.0000004 5.0000005,5.0000005 0 0 1 -5,-5.0000004 5.0000005,5.0000005 0 0 1 5,-5.0000005 5.0000005,5.0000005 0 0 1 5,5.0000005 z" />
4766+ <circle
4767+ r="5.0000005"
4768+ cy="1.3621866"
4769+ cx="735"
4770+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4771+ id="path4111"
4772+ d="m 740,1.3621866 a 5.0000005,5.0000005 0 0 1 -5,5.0000004 5.0000005,5.0000005 0 0 1 -5,-5.0000004 5.0000005,5.0000005 0 0 1 5,-5.0000005 5.0000005,5.0000005 0 0 1 5,5.0000005 z" />
4773+ <circle
4774+ r="5.0000005"
4775+ cy="15.362186"
4776+ cx="707"
4777+ id="path4113"
4778+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4779+ d="m 712,15.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4780+ <circle
4781+ r="5.0000005"
4782+ cy="15.362186"
4783+ cx="721"
4784+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4785+ id="path4115"
4786+ d="m 726,15.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4787+ <circle
4788+ r="5.0000005"
4789+ cy="15.362186"
4790+ cx="735"
4791+ id="path4117"
4792+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4793+ d="m 740,15.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4794+ <circle
4795+ r="5.0000005"
4796+ cy="29.362186"
4797+ cx="707"
4798+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4799+ id="path4119"
4800+ d="m 712,29.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4801+ <circle
4802+ r="5.0000005"
4803+ cy="29.362186"
4804+ cx="721"
4805+ id="path4121"
4806+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4807+ d="m 726,29.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4808+ <circle
4809+ r="5.0000005"
4810+ cy="29.362186"
4811+ cx="735"
4812+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4813+ id="path4123"
4814+ d="m 740,29.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4815+ <path
4816+ inkscape:transform-center-y="0.2625781"
4817+ inkscape:transform-center-x="-0.25253415"
4818+ inkscape:connector-curvature="0"
4819+ id="path4185"
4820+ d="m 762.80738,-4.6513715 c 7.80698,1.7675293 21.15163,4.3964167 17.60499,16.2777465 -4.50757,15.100534 -15.21354,26.842252 -25.72632,37.359059 l 2.8e-4,2.73e-4 c -0.0104,0.01004 -0.0208,0.02085 -0.0313,0.03128 -0.0104,0.01004 -0.0208,0.02085 -0.0313,0.03128 l -2.8e-4,-2.73e-4 C 744.1067,59.560786 732.36498,70.266752 717.26444,74.774319 705.38312,78.320945 702.75424,64.976307 700.9867,57.169333 l 25.21671,-11.088795 8.88063,5.328089 c 3.65652,-2.332872 7.96979,-6.186036 11.8744,-10.088213 3.90221,-3.904545 7.75534,-8.217864 10.0882,-11.874394 l -5.32804,-8.88065 11.08879,-25.2166928 z"
4821+ style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4822+ </g>
4823+ </g>
4824+</svg>
4825
4826=== removed file '0.1/ambiance/img/actions/dialer.svg'
4827--- 0.1/ambiance/img/actions/dialer.svg 2014-02-21 15:52:41 +0000
4828+++ 0.1/ambiance/img/actions/dialer.svg 1970-01-01 00:00:00 +0000
4829@@ -1,208 +0,0 @@
4830-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
4831-<!-- Created with Inkscape (http://www.inkscape.org/) -->
4832-
4833-<svg
4834- xmlns:dc="http://purl.org/dc/elements/1.1/"
4835- xmlns:cc="http://creativecommons.org/ns#"
4836- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4837- xmlns:svg="http://www.w3.org/2000/svg"
4838- xmlns="http://www.w3.org/2000/svg"
4839- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
4840- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
4841- width="90"
4842- height="90"
4843- id="svg4874"
4844- version="1.1"
4845- inkscape:version="0.48+devel r"
4846- viewBox="0 0 90 90.000001"
4847- sodipodi:docname="dialer.svg">
4848- <defs
4849- id="defs4876" />
4850- <sodipodi:namedview
4851- id="base"
4852- pagecolor="#ffffff"
4853- bordercolor="#666666"
4854- borderopacity="1.0"
4855- inkscape:pageopacity="0.0"
4856- inkscape:pageshadow="2"
4857- inkscape:zoom="7.9580786"
4858- inkscape:cx="29.284706"
4859- inkscape:cy="61.472125"
4860- inkscape:document-units="px"
4861- inkscape:current-layer="g4320"
4862- showgrid="true"
4863- showborder="true"
4864- fit-margin-top="0"
4865- fit-margin-left="0"
4866- fit-margin-right="0"
4867- fit-margin-bottom="0"
4868- inkscape:snap-bbox="true"
4869- inkscape:bbox-paths="true"
4870- inkscape:bbox-nodes="true"
4871- inkscape:snap-bbox-edge-midpoints="true"
4872- inkscape:snap-bbox-midpoints="true"
4873- inkscape:object-paths="true"
4874- inkscape:snap-intersection-paths="true"
4875- inkscape:object-nodes="true"
4876- inkscape:snap-smooth-nodes="true"
4877- inkscape:snap-midpoints="true"
4878- inkscape:snap-object-midpoints="true"
4879- inkscape:snap-center="true"
4880- showguides="true"
4881- inkscape:guide-bbox="true">
4882- <inkscape:grid
4883- type="xygrid"
4884- id="grid5451"
4885- empspacing="6" />
4886- <sodipodi:guide
4887- orientation="1,0"
4888- position="9,74"
4889- id="guide4063" />
4890- <sodipodi:guide
4891- orientation="1,0"
4892- position="6,71"
4893- id="guide4065" />
4894- <sodipodi:guide
4895- orientation="0,1"
4896- position="39,84"
4897- id="guide4067" />
4898- <sodipodi:guide
4899- orientation="0,1"
4900- position="39,87"
4901- id="guide4069" />
4902- <sodipodi:guide
4903- orientation="0,1"
4904- position="50,3"
4905- id="guide4071" />
4906- <sodipodi:guide
4907- orientation="0,1"
4908- position="52,6"
4909- id="guide4073" />
4910- <sodipodi:guide
4911- orientation="1,0"
4912- position="87,12"
4913- id="guide4075" />
4914- <sodipodi:guide
4915- orientation="1,0"
4916- position="84,12"
4917- id="guide4077" />
4918- <sodipodi:guide
4919- orientation="0,1"
4920- position="45,81"
4921- id="guide4072" />
4922- <sodipodi:guide
4923- orientation="1,0"
4924- position="3,68"
4925- id="guide4074" />
4926- <sodipodi:guide
4927- orientation="0,1"
4928- position="70,9"
4929- id="guide4076" />
4930- <sodipodi:guide
4931- orientation="1,0"
4932- position="81,5"
4933- id="guide4078" />
4934- </sodipodi:namedview>
4935- <metadata
4936- id="metadata4879">
4937- <rdf:RDF>
4938- <cc:Work
4939- rdf:about="">
4940- <dc:format>image/svg+xml</dc:format>
4941- <dc:type
4942- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
4943- <dc:title></dc:title>
4944- </cc:Work>
4945- </rdf:RDF>
4946- </metadata>
4947- <g
4948- inkscape:label="Layer 1"
4949- inkscape:groupmode="layer"
4950- id="layer1"
4951- transform="translate(67.857146,-84.50504)">
4952- <g
4953- transform="translate(-763.85715,94.142858)"
4954- id="g4320"
4955- inkscape:export-filename="phone03.png"
4956- inkscape:export-xdpi="90"
4957- inkscape:export-ydpi="90">
4958- <rect
4959- y="-9.6378174"
4960- x="696"
4961- height="90"
4962- width="90"
4963- id="rect4318"
4964- style="color:#000000;fill:none;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
4965- <circle
4966- r="5.0000005"
4967- cy="1.3621866"
4968- cx="707"
4969- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4970- id="path4091"
4971- d="m 712,1.3621866 a 5.0000005,5.0000005 0 0 1 -5,5.0000004 5.0000005,5.0000005 0 0 1 -5,-5.0000004 5.0000005,5.0000005 0 0 1 5,-5.0000005 5.0000005,5.0000005 0 0 1 5,5.0000005 z" />
4972- <circle
4973- r="5.0000005"
4974- cy="1.3621866"
4975- cx="721"
4976- id="path4109"
4977- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4978- d="m 726,1.3621866 a 5.0000005,5.0000005 0 0 1 -5,5.0000004 5.0000005,5.0000005 0 0 1 -5,-5.0000004 5.0000005,5.0000005 0 0 1 5,-5.0000005 5.0000005,5.0000005 0 0 1 5,5.0000005 z" />
4979- <circle
4980- r="5.0000005"
4981- cy="1.3621866"
4982- cx="735"
4983- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4984- id="path4111"
4985- d="m 740,1.3621866 a 5.0000005,5.0000005 0 0 1 -5,5.0000004 5.0000005,5.0000005 0 0 1 -5,-5.0000004 5.0000005,5.0000005 0 0 1 5,-5.0000005 5.0000005,5.0000005 0 0 1 5,5.0000005 z" />
4986- <circle
4987- r="5.0000005"
4988- cy="15.362186"
4989- cx="707"
4990- id="path4113"
4991- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4992- d="m 712,15.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
4993- <circle
4994- r="5.0000005"
4995- cy="15.362186"
4996- cx="721"
4997- style="color:#000000;fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
4998- id="path4115"
4999- d="m 726,15.362186 a 5.0000005,5.0000005 0 0 1 -5,5.000001 5.0000005,5.0000005 0 0 1 -5,-5.000001 5.0000005,5.0000005 0 0 1 5,-5 5.0000005,5.0000005 0 0 1 5,5 z" />
5000- <circle
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches