Skip to content

Commit

Permalink
Build.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoluteur committed Nov 24, 2015
1 parent dbd4b85 commit 69d86df
Show file tree
Hide file tree
Showing 8 changed files with 1,164 additions and 682 deletions.
2 changes: 1 addition & 1 deletion demo/demo-data.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 7 additions & 14 deletions dist/css/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@
.evol-doc-views > section img {
width: 500px;
}
.evol-doc-views h4 {
margin-top: 25px;
}
img.shadow {
border: 1px solid #e0e0e0;
box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
Expand Down Expand Up @@ -317,11 +320,10 @@ code {
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.links-bh a:hover,
.links-bih a:hover {
background-color: #E3F2FD;
text-decoration: none;
/*&:hover{
background-color: #E3F2FD;
text-decoration: none;
}*/
}
.links-bh a > img,
.links-bih a > img {
Expand Down Expand Up @@ -450,18 +452,9 @@ h4 {
[data-eid="contact"] .evol-cards-body > .panel {
height: 160px !important;
}
[data-eid="winecellar"] .evol-cards-body {
/*label {
text-align:right;
min-width: 80px;
}*/
}
[data-eid="winecellar"] .evol-cards-body > div.panel {
height: 272px !important;
}
[data-eid="winecellar"] .evol-cards-body p {
clear: left;
}
[data-eid="comics"] .evol-cards-body > .panel {
height: 500px !important;
}
Expand Down
5 changes: 2 additions & 3 deletions dist/css/dependencies.min.css

Large diffs are not rendered by default.

150 changes: 122 additions & 28 deletions dist/css/evolutility.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
evolutility 1.0.3
evolutility 1.0.4
(c) 2015 Olivier Giulieri
http://evoluteur.github.io/evolutility/
*/
Expand Down Expand Up @@ -35,6 +35,9 @@
width: 1px;
background-color: #bce8f1;
}
.evo-toolbar > ul > li > a {
transition: all 0.5s ease;
}
.evo-toolbar .evo-dropdown-icons {
min-width: 50px;
}
Expand All @@ -59,8 +62,41 @@
position: relative;
top: 0;
}
.evol-actions {
position: absolute;
display: flex;
flex-direction: column;
padding: 5px;
top: 35px;
right: 1px;
background-color: #fbfbfb;
border: 1px solid #bce8f1;
border-right: none;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.evol-actions > i {
color: #31708f;
margin: 5px;
cursor: pointer;
}
.evol-actions > i:hover {
color: #428bca;
}
.evol-many-list .evol-actions {
top: 0;
flex-direction: row;
}
/* --- panels & tabs --- */
.evol-pnls {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
flex-wrap: wrap;
}
Expand Down Expand Up @@ -99,8 +135,19 @@
.evol-tabs {
margin: 0 10px 10px !important;
}
.evol-tabs > li > a {
transition: all 0.6s ease;
}
/* --- fields --- */
.evol-fset {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
flex-wrap: wrap;
padding: 10px 10px 5px 0;
Expand All @@ -111,6 +158,25 @@
padding-left: 10px !important;
margin-bottom: 6px;
}
.evol-fld > .evo-rdonly > img {
position: relative;
top: -2px;
margin-right: 3px;
}
.evol-fld > .text-danger {
margin-bottom: 0 !important;
}
.evol-field-label > label {
color: #0d0d0d;
}
.evol-field-label > label > .glyphicon-question-sign {
cursor: pointer;
padding-left: 4px;
color: silver;
}
.evol-field-label > label > .glyphicon-question-sign:hover {
color: #428bca;
}
.evol-required,
.evol-asterix {
margin-left: 3px;
Expand Down Expand Up @@ -178,20 +244,6 @@ label {
color: #737373 !important;
clear: both;
}
.evol-fld > .text-danger {
margin-bottom: 0 !important;
}
.evol-field-label > label {
color: #0d0d0d;
}
.evol-field-label > label > .glyphicon-question-sign {
cursor: pointer;
padding-left: 4px;
color: silver;
}
.evol-field-label > label > .glyphicon-question-sign:hover {
color: #428bca;
}
.w-100 {
width: 100%;
}
Expand Down Expand Up @@ -245,6 +297,15 @@ label {
.evo-color-box span {
margin-left: 24px;
}
.badge-one {
position: relative;
top: -14px;
font-size: .5em;
margin-left: 5px;
}
.w100 {
width: 100%;
}
/* --- mini --- */
.evol-mini-label {
float: left;
Expand Down Expand Up @@ -302,6 +363,12 @@ label {
max-height: 60px;
padding: 0;
}
.evol-many-list > .table tr {
transition: all 0.3s ease;
}
.evol-many-list > .table td {
position: relative;
}
.evol-many-list > .table th {
font-weight: 500 !important;
background-color: #fbfbfb;
Expand Down Expand Up @@ -382,8 +449,9 @@ table {
border-spacing: 0;
}
/* --- cards --- */
.evol-cards-body > div.panel {
.evol-cards-body > .panel {
float: left;
position: relative;
width: 240px;
min-width: 140px;
height: 182px;
Expand All @@ -394,7 +462,7 @@ table {
-webkit-border-radius: 10px;
overflow: auto;
}
.evol-cards-body > div.panel > div > label {
.evol-cards-body > .panel > div > label {
vertical-align: top;
}
.evol-cards-body .evol-c-center {
Expand Down Expand Up @@ -450,30 +518,47 @@ text.label {
text-shadow: 0px 0px 3px #ffffff;
}
/* --- charts --- */
.evol-many-charts {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
flex-wrap: wrap;
}
.evol-chart-holder {
float: left;
box-sizing: border-box;
flex-grow: 1;
position: relative;
text-align: center;
background-color: #FFFFFF;
margin: 10px 10px 10px 5px;
width: 400px;
min-height: 286px;
}
.chart-holder > label {
display: block;
}
.evol-chart-title {
text-align: center;
padding: 10px 20px 30px;
}
.evo-chart-config {
margin: 5px;
cursor: pointer;
color: silver;
}
.evo-chart-config:hover {
color: #428bca;
}
.evol-xpt {
margin-bottom: 10px;
}
.evol-xpt-form {
display: -webkit-box;
/* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box;
/* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox;
/* TWEENER - IE 10 */
display: -webkit-flex;
/* NEW - Chrome */
display: flex;
flex-wrap: wrap;
border-collapse: collapse;
Expand All @@ -500,6 +585,9 @@ text.label {
.evol-xpt-flds > fieldset {
margin-left: 20px;
}
.evol-xpt-flds > fieldset label {
display: block;
}
.evol-xpt-flds input[type="checkbox"] {
clear: left;
float: left;
Expand All @@ -510,6 +598,9 @@ text.label {
min-width: 300px;
border-left: 0 !important;
}
.evol-xpt-para textarea {
min-height: 200px;
}
.evol-xpt-format {
max-width: 270px;
margin-bottom: 6px;
Expand All @@ -531,8 +622,8 @@ text.label {
.evol-xpt-opts input[type="checkbox"] {
margin-right: .5em;
}
.evol-xpt-preview textarea {
min-height: 200px;
.evol-xpt-opts input[type="text"] {
max-width: 280px;
}
.evol-xpt-more {
display: block;
Expand All @@ -549,6 +640,9 @@ text.label {
display: inline-block;
margin: 0 10px 0 0;
}
.evol-xpt-db {
width: auto;
}
.evol-w120 {
max-width: 120px;
}
Expand Down

0 comments on commit 69d86df

Please sign in to comment.