Skip to content

Commit 7fc484f

Browse files
author
Olivier Giulieri
committed
Cleanups.
1 parent 9e2d46b commit 7fc484f

File tree

9 files changed

+214
-303
lines changed

9 files changed

+214
-303
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = function (grunt) {
1313
'/* https://github.com/evoluteur/evolutility */\n',
1414

1515
// *************************************************************************************
16-
// CONCAT options
16+
// CONCAT
1717
// *************************************************************************************
1818
concat: {
1919
vendors:{
@@ -69,7 +69,7 @@ module.exports = function (grunt) {
6969
},
7070

7171
// *************************************************************************************
72-
// JSHINT options
72+
// JSHINT
7373
// *************************************************************************************
7474
jshint: {
7575
dev: [
@@ -96,7 +96,7 @@ module.exports = function (grunt) {
9696
},
9797

9898
// *************************************************************************************
99-
// UGLIFY options
99+
// UGLIFY
100100
// *************************************************************************************
101101
uglify: {
102102
prod: {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ evolutility.js is a work in progress. Eventually it will be a generic UI to buil
55
The idea is to build a set of generic Backbone views to perform all CRUD (Create, Read, Update and Delete) operations on records of any data structure.
66
For each object the whole set of views is defined in a single UI-model containing the description of the UI (fields mapping, layout, and behavior).
77

8-
## The Plan
8+
## Roadmap
99

1010
1. Update [Evolutility metamodel] (http://www.codeproject.com/Articles/28636/Minimalist-Meta-Model-for-CRUD-Applications) (model of the UI models)
1111
2. Code the generic UI views based on the metamodel

dist/css/evolutility.css

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,6 @@
126126
.evo-title2 {
127127
top: 0 !important;
128128
margin-left: 182px;
129-
background-color: white;
130-
}
131-
.evo-title > h1,
132-
.evo-title2 > h1 {
133-
color: #0d0d0d;
134129
}
135130
}
136131
.evo-title {
@@ -156,7 +151,8 @@
156151
.evo-content2,
157152
.evo-content3 {
158153
margin-left: 182px;
159-
padding-top: 0;
154+
margin-top: 20px;
155+
padding-top: 10px;
160156
}
161157
}
162158
.footer {
@@ -167,6 +163,8 @@
167163
.evo-toolbar {
168164
border: 1px solid #bce8f1;
169165
border-radius: 4px;
166+
-moz-border-radius: 4px;
167+
-webkit-border-radius: 4px;
170168
margin-bottom: 10px;
171169
padding: 3px;
172170
background-color: #fbfbfb;
@@ -181,11 +179,6 @@
181179
.evo-toolbar > ul > li > a {
182180
max-height: 35px;
183181
}
184-
.evo-toolbar > ul .evo-tb-sel {
185-
border: 1px solid #bce8f1;
186-
border-radius: 4px;
187-
padding: 3px;
188-
}
189182
.evo-toolbar .evo-dropdown-icons {
190183
min-width: 50px;
191184
}
@@ -412,10 +405,12 @@ img.evol-table-icon {
412405
float: left;
413406
width: 240px;
414407
min-width: 140px;
415-
height: 150px;
408+
height: 164px;
416409
margin: 5px;
417410
padding: 10px;
418411
border-radius: 10px;
412+
-moz-border-radius: 10px;
413+
-webkit-border-radius: 10px;
419414
overflow: auto;
420415
}
421416
/* --- charts --- */
@@ -544,6 +539,9 @@ img.evol-table-icon {
544539
.evo-editFilter > a {
545540
clear: left;
546541
}
542+
.evo-editFilter .as-Txt {
543+
line-height: 30px;
544+
}
547545
.evo-editFilter > #value {
548546
margin-right: 5px;
549547
line-height: 30px;

dist/css/evolutility.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)