Skip to content

Commit

Permalink
Version 1.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoluteur committed Apr 4, 2016
1 parent 8f9d024 commit 2627ef8
Show file tree
Hide file tree
Showing 11 changed files with 134 additions and 81 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evolutility",
"version": "1.1.2",
"version": "1.1.3",
"description": "UI which changes form, volume and structure to adapt to your data.",
"main": [
"dist/evolutility.min.js",
Expand Down
4 changes: 2 additions & 2 deletions demo/demo-data.min.js

Large diffs are not rendered by default.

18 changes: 11 additions & 7 deletions dist/css/demo.css
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
@media only screen and (min-width: 900px) {
.evo-header {
position: fixed;
width: 190px;
min-width: 190px;
width: 170px;
min-width: 170px;
height: 100%;
}
}
Expand All @@ -72,11 +72,14 @@
flex-direction: row;
}
}
.evo-head-links > div,
.evo-head-links2 > div {
margin-left: 10px;
}
.evo-head-links > li,
.evo-head-links2 > li {
display: inline;
padding: 0 10px;
text-align: left;
}
.evo-head-links a,
.evo-head-links2 a {
Expand All @@ -101,6 +104,7 @@
}
@media only screen and (max-width: 900px) {
.evo-link2 {
margin-left: 30px;
order: 100;
width: 100%;
}
Expand Down Expand Up @@ -156,9 +160,9 @@
@media only screen and (min-width: 900px) {
.evo-title,
.evo-title2 {
width: calc(100% - 190px);
width: calc(100% - 170px);
top: 0 !important;
margin-left: 190px;
margin-left: 170px;
}
.evo-title > h1,
.evo-title2 > h1 {
Expand All @@ -181,7 +185,7 @@
}
@media only screen and (min-width: 900px) {
.evo-content {
margin-left: 190px;
margin-left: 170px;
padding-top: 10px;
}
}
Expand All @@ -191,7 +195,7 @@
}
@media only screen and (min-width: 900px) {
.evo-content2 {
margin-left: 190px;
margin-left: 170px;
padding-top: 85px;
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/dependencies.min.css
100644 → 100755

Large diffs are not rendered by default.

58 changes: 42 additions & 16 deletions dist/css/evolutility.css
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
evolutility 1.1.2
evolutility 1.1.3
(c) 2016 Olivier Giulieri
http://evoluteur.github.io/evolutility/
*/
Expand Down Expand Up @@ -138,9 +138,14 @@
flex-wrap: wrap;
}
.evol-pnl {
padding-left: 10px !important;
box-sizing: border-box;
flex-grow: 1;
}
.evol-pnl .table img {
max-height: 60px;
padding: 0;
}
.evol-pnl .table .evol-money {
width: 200px;
}
Expand All @@ -150,14 +155,18 @@
.evol-pnl .evol-pnl > div > fieldset {
padding: 10px 10px 5px 2px;
}
.evol-pnl,
.evol-pnl-lst {
padding-left: 10px !important;
.evo-plist {
overflow-x: auto;
}
.evol-pnl .table img,
.evol-pnl-lst .table img {
max-height: 60px;
padding: 0;
.evo-plist input[type="date"] {
max-width: 160px;
}
.evo-plist input[type="text"],
.evo-plist textarea {
min-width: 120px;
}
.evo-plist .table {
margin-bottom: 0;
}
.panel-heading > .panel-title {
display: inline-block;
Expand Down Expand Up @@ -295,6 +304,7 @@ label {
}
.evo-td-plusminus {
width: 70px;
min-width: 70px;
}
.evo-td-plusminus > div {
float: left;
Expand Down Expand Up @@ -420,21 +430,30 @@ label {
.evol-many-icon {
margin-right: 6px !important;
}
.evol-many-list > .table img {
.evol-many-list > div {
overflow-x: auto;
}
.evol-many-list > div > .table {
margin-bottom: 0;
}
.evol-many-list > div > .table textarea {
min-width: 200px;
}
.evol-many-list > div > .table img {
max-height: 60px;
padding: 0;
}
.evol-many-list > .table tr {
.evol-many-list > div > .table tr {
transition: all 0.3s ease;
}
.evol-many-list > .table td {
.evol-many-list > div > .table td {
position: relative;
}
.evol-many-list > .table th {
.evol-many-list > div > .table th {
font-weight: 500 !important;
background-color: #fbfbfb;
}
.evol-many-list > .table th .glyphicon {
.evol-many-list > div > .table th .glyphicon {
display: none;
position: absolute;
opacity: .8;
Expand All @@ -444,10 +463,10 @@ label {
width: 22px;
height: 22px;
}
.evol-many-list > .table th:hover .glyphicon {
.evol-many-list > div > .table th:hover .glyphicon {
display: inline !important;
}
.evol-many-list > .table .evol-ellipsis {
.evol-many-list > div > .table .evol-ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down Expand Up @@ -495,6 +514,9 @@ label {
.list-td-sel {
width: 30px;
}
.evo-col-pix {
width: 100px;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
font-family: sans-serif;
Expand Down Expand Up @@ -607,6 +629,11 @@ text.label {
text-align: center;
padding: 10px 20px 30px;
}
/*
.evo-chart-table{
overflow-y: auto;
}
*/
.evol-xpt {
margin-bottom: 10px;
}
Expand Down Expand Up @@ -808,7 +835,6 @@ text.label {
}
.evo-filters.panel > a {
margin: 1px 6px 6px 1px;
padding-right: 6px;
}
.evo-filters > .close {
margin-right: 4px;
Expand Down
4 changes: 2 additions & 2 deletions dist/css/evolutility.min.css
100644 → 100755

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions dist/dependencies.min.js
100644 → 100755

Large diffs are not rendered by default.

0 comments on commit 2627ef8

Please sign in to comment.