Skip to content

Commit f441644

Browse files
committed
Version 1.0.2.
1 parent c572867 commit f441644

File tree

12 files changed

+1382
-629
lines changed

12 files changed

+1382
-629
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ bower install evolutility
2222
bower install evolutility#master
2323
```
2424

25+
By default, Evolutility uses LocalStorage but it can be configured for REST (using [Evolutility-server](https://github.com/evoluteur/evolutility-server) or your own REST API).
26+
2527
## Views
2628

2729
Evolutility's views have a Backbone model (to define the data) and also a UI-model (to define the UI for this model).

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evolutility",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "UI which changes form, volume and structure to adapt to your data.",
55
"main": [
66
"dist/evolutility.min.js",

demo/demo-data.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/demo.css

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,16 @@
7777
padding: 0 10px;
7878
text-align: left;
7979
}
80-
.evo-head-links > li > a,
81-
.evo-head-links2 > li > a {
80+
.evo-head-links a,
81+
.evo-head-links2 a {
8282
text-decoration: none;
8383
}
84-
.evo-head-links > li > a:hover,
85-
.evo-head-links2 > li > a:hover {
86-
text-decoration: none;
84+
.evo-head-links a:hover,
85+
.evo-head-links2 a:hover {
8786
color: #ffc107;
8887
}
89-
.evo-head-links > li > a.sel,
90-
.evo-head-links2 > li > a.sel {
88+
.evo-head-links a.sel,
89+
.evo-head-links2 a.sel {
9190
color: white;
9291
}
9392
@media print {
@@ -179,14 +178,12 @@
179178
padding-top: 10px;
180179
}
181180
}
182-
.evo-content2,
183-
.evo-content3 {
181+
.evo-content2 {
184182
padding: 150px 30px 30px;
185183
margin-top: 10px;
186184
}
187185
@media only screen and (min-width: 900px) {
188-
.evo-content2,
189-
.evo-content3 {
186+
.evo-content2 {
190187
margin-left: 190px;
191188
padding-top: 85px;
192189
}
@@ -226,9 +223,6 @@ img.pixEvoPos {
226223
.pixEvoPos img {
227224
width: 250px;
228225
}
229-
.evo-content3 > p > img {
230-
width: 500px;
231-
}
232226
.view-fullname {
233227
color: silver;
234228
font-size: 16px;

dist/css/dependencies.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/evolutility.css

Lines changed: 56 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/*!
2-
* evolutility
3-
*
4-
* https://github.com/evoluteur/evolutility
5-
* (c) 2015, Olivier Giulieri
2+
evolutility 1.0.2
3+
(c) 2015 Olivier Giulieri
4+
http://evoluteur.github.io/evolutility/
65
*/
76
.evo-toolbar {
87
border: 1px solid #bce8f1;
@@ -61,18 +60,22 @@
6160
top: 0;
6261
}
6362
/* --- panels & tabs --- */
63+
.evol-pnls {
64+
display: flex;
65+
flex-wrap: wrap;
66+
}
67+
.evol-pnl {
68+
box-sizing: border-box;
69+
flex-grow: 1;
70+
}
6471
.evol-pnl .table .evol-money {
6572
width: 200px;
6673
}
67-
.evol-pnl > div > fieldset {
68-
padding: 10px 10px 5px 2px;
69-
}
70-
.evol-pnl > .panel {
74+
.evol-pnl .evol-pnl > .panel {
7175
margin-bottom: 12px;
7276
}
73-
.evol-fld {
74-
padding-left: 10px !important;
75-
margin-bottom: 6px;
77+
.evol-pnl .evol-pnl > div > fieldset {
78+
padding: 10px 10px 5px 2px;
7679
}
7780
.evol-pnl,
7881
.evol-pnl-lst {
@@ -92,6 +95,17 @@
9295
margin: 0 10px 10px !important;
9396
}
9497
/* --- fields --- */
98+
.evol-fset {
99+
display: flex;
100+
flex-wrap: wrap;
101+
padding: 10px 10px 5px 0;
102+
}
103+
.evol-fld {
104+
box-sizing: border-box;
105+
flex-grow: 1;
106+
padding-left: 10px !important;
107+
margin-bottom: 6px;
108+
}
95109
.evol-required,
96110
.evol-asterix {
97111
margin-left: 3px;
@@ -260,6 +274,10 @@ label {
260274
.evol-p-mini {
261275
width: 100%;
262276
padding-left: 0 !important;
277+
margin-bottom: 10px;
278+
}
279+
.evol-p-mini fieldset {
280+
padding: 10px 10px 5px 0;
263281
}
264282
@media only screen and (max-width: 500px) {
265283
.evol-mini-label,
@@ -416,6 +434,7 @@ circle {
416434
}
417435
circle:hover {
418436
stroke: grey;
437+
cursor: pointer;
419438
}
420439
text.label {
421440
font-size: 100%;
@@ -446,21 +465,28 @@ text.label {
446465
margin-bottom: 10px;
447466
}
448467
.evol-xpt-form {
468+
display: flex;
469+
flex-wrap: wrap;
449470
border-collapse: collapse;
450471
border: 0;
451472
width: 100%;
452473
}
453474
.evol-xpt-form > div {
475+
box-sizing: border-box;
476+
flex-grow: 1;
454477
padding: 15px;
455478
vertical-align: top;
456479
}
457-
.evol-xpt-form .evol-buttons {
458-
clear: left;
459-
}
460480
.evol-xpt-flds {
461-
float: left;
462481
border-right: 0 !important;
463482
width: 38%;
483+
min-width: 200px;
484+
max-width: 245px;
485+
}
486+
@media only screen and (max-width: 500px) {
487+
.evol-xpt-flds {
488+
max-width: none;
489+
}
464490
}
465491
.evol-xpt-flds > fieldset {
466492
margin-left: 20px;
@@ -471,8 +497,8 @@ text.label {
471497
margin-right: .5em;
472498
}
473499
.evol-xpt-para {
474-
float: left;
475500
width: 62%;
501+
min-width: 300px;
476502
border-left: 0 !important;
477503
}
478504
.evol-xpt-format {
@@ -486,12 +512,13 @@ text.label {
486512
height: 200px;
487513
margin-top: 6px;
488514
}
489-
.evol-w120 {
490-
max-width: 120px;
491-
}
492515
.evol-xpt-opts {
516+
margin: 0 15px 0 20px;
493517
padding: 10px;
494518
}
519+
.evol-xpt-opts .evol-FLH {
520+
margin-bottom: 10px;
521+
}
495522
.evol-xpt-opts input[type="checkbox"] {
496523
margin-right: .5em;
497524
}
@@ -506,6 +533,16 @@ text.label {
506533
clear: both;
507534
display: none;
508535
}
536+
.evo-inline-holder {
537+
margin-top: 10px;
538+
}
539+
.evo-inline-holder > div {
540+
display: inline-block;
541+
margin: 0 10px 0 0;
542+
}
543+
.evol-w120 {
544+
max-width: 120px;
545+
}
509546
.evo-bNew,
510547
.evo-bAdd,
511548
.evo-bDel,

0 commit comments

Comments
 (0)