Skip to content

Commit

Permalink
Merge pull request #154 from MachoThemes/cosmin-working-branch
Browse files Browse the repository at this point in the history
[sync] Cosmin working branch
  • Loading branch information
cristianraiber authored Jul 30, 2018
2 parents 7cf142a + 757e6c7 commit e7a5d5f
Show file tree
Hide file tree
Showing 62 changed files with 3,809 additions and 3,079 deletions.
Binary file modified .DS_Store
Binary file not shown.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Epsilon Framework v1.2.2
# Epsilon Framework v1.2.3

MachoThemes' theme framework.
Built by Macho Themes.

Special credits: @c0sm1n87

8 changes: 4 additions & 4 deletions assets/css/scss/controls/color-picker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
line-height: 24px;
}
.minicolors-panel {
top: 28px;
top: 23px;
left: 37px;
}
}
Expand Down Expand Up @@ -58,8 +58,8 @@
.epsilon-color-picker {
z-index: 100;
position: absolute;
top: -20px;
left: 50px;
top: 0;
left: 40px;
opacity: 0;
visibility: hidden;
width: 153px !important;
Expand Down Expand Up @@ -88,5 +88,5 @@
}

.minicolors-position-left .minicolors-panel {
left: 50px;
left: 40px;
}
35 changes: 11 additions & 24 deletions assets/css/scss/controls/field-repeater.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,13 @@
}
.repeater-row-header {
position: relative;
padding: 12px 0 12px 26px;
padding: 12px 0 12px 12px;
height: 20px;
line-height: 20px;
font-weight: 600;
transition: .15s background-color ease-in-out;
cursor: all-scroll;
&:before {
content: "";
width: 10px;
height: 20px;
background: url('../img/epsilon-section-hover-indicator.png');
position: absolute;
top: 12px;
left: 8px;
opacity: 0;
}

.repeater-minimize,
.repeater-row-remove {
float: right;
Expand All @@ -94,10 +85,15 @@
}
}
.repeater-row-remove {
border-left: 1px solid $repeater_row_separator_color;
border-right: 1px solid $repeater_row_separator_color;
margin-top: -12px;
padding: 12px;
}
.repeater-minimize {
margin-top: -12px;
padding: 12px;
}

&:hover {
&:before {
opacity: 1;
Expand All @@ -115,12 +111,10 @@
clear: both;
padding: 18px 0 6px 0;
.customize-control-title {
font-size: 13px;
line-height: initial;
display: inline-block;
}
.customize-control-description {
font-size: 13px;
line-height: initial;
}
&.repeater-field-hidden {
Expand All @@ -146,7 +140,7 @@
}
.repeater-row-label {
display: block;
width: calc(100% - 75px);
width: calc(100% - 100px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Expand Down Expand Up @@ -209,22 +203,15 @@
.customize-control-title {
display: inline-block;
float: left;
margin-bottom: 0;
margin-bottom: 10px;
padding-bottom: 0;
position: relative;
top: 5px;
}
}

.customize-control-epsilon-text-editor {
.customize-control-title {
top: 2px;
}
}

.repeater-field-epsilon-color-picker {
.epsilon-color-picker-title {
margin-left: 37px;
margin-left: 42px;
}
.minicolors-input {
top: 0;
Expand Down
83 changes: 43 additions & 40 deletions assets/css/scss/controls/image.scss
Original file line number Diff line number Diff line change
@@ -1,42 +1,45 @@
.epsilon-controller-image-container {
.placeholder {
width: 100%;
position: relative;
text-align: center;
cursor: default;
border: 1px dashed #b4b9be;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 6px 0;
line-height: 20px;
min-height: 40px;
margin-bottom: 6px;
.recommended-size {
display: block;
font-style: italic;
}
}
.epsilon-image {
border: 1px dashed #EEE;
padding: 6px;
margin-bottom: 6px;
min-height: 40px;
img {
width: 100%;
display: block;
}
}
.actions {
display: block;
text-align: center;
padding-bottom: 1px;
.image-upload-remove-button,
.image-upload-button,
.image-default-button {
margin: 0;
display: inline-block;
min-width: 30%;
}
}
.placeholder {
width: 100%;
position: relative;
text-align: center;
cursor: default;
border: 1px dashed #b4b9be;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 6px 0;
line-height: 20px;
min-height: 40px;
margin-bottom: 6px;
.recommended-size {
display: block;
font-style: italic;
}
}
.epsilon-image {
border: 1px dashed #eee;
padding: 6px;
margin-bottom: 6px;
min-height: 40px;
img {
width: 100%;
display: block;
}
}
.actions {
display: block;
text-align: center;
padding-bottom: 1px;
.image-upload-button,
.image-default-button {
margin: 0;
display: inline-block;
min-width: 30%;
}
.image-upload-remove-button {
margin: 0;
display: inline-block;
}
}
}
Loading

0 comments on commit e7a5d5f

Please sign in to comment.