Skip to content

Commit

Permalink
Merge pull request #82 from Freemius/develop
Browse files Browse the repository at this point in the history
Develop - version 1.2.0
  • Loading branch information
vovafeldman authored Aug 17, 2016
2 parents 97bd4dd + 698b03e commit 742cc18
Show file tree
Hide file tree
Showing 33 changed files with 1,954 additions and 828 deletions.
2 changes: 1 addition & 1 deletion assets/css/admin/account.css

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

2 changes: 1 addition & 1 deletion assets/css/admin/deactivation-feedback.css

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

3 changes: 3 additions & 0 deletions assets/css/admin/dialog-boxes.css

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

2 changes: 1 addition & 1 deletion assets/css/admin/license-activation.css

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

42 changes: 42 additions & 0 deletions assets/scss/admin/_deactivation-feedback.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
@import "../colors";

.fs-modal.fs-modal-deactivation-feedback {
.reason-input, .internal-message {
margin: 3px 0 3px 22px;

input, textarea {
width: 100%;
}
}

li.reason {
&.has-internal-message .internal-message {
border: 1px solid lighten($darkest-color, 80%);
padding: 7px;
display: none;
}

@media (max-width: 650px) {
li.reason {
margin-bottom: 10px;

.reason-input, .internal-message {
margin-left: 29px;
}

label {
display: table;

> span {
display: table-cell;
font-size: 1.3em;
}
}
}
}
}
}

#the-list .deactivate > .fs-slug {
display: none;
}
7 changes: 7 additions & 0 deletions assets/scss/admin/_license-activation.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.fs-modal.fs-modal-license-activation {
.fs-modal-body {
input.license_key {
width: 100%;
}
}
}
35 changes: 35 additions & 0 deletions assets/scss/admin/_license-key-resend.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.fs-modal.fs-modal-license-key-resend {
.button-close {
float: right;
margin: 5px;

&:hover {
cursor: pointer;
}
}

.fs-modal-body {
.input-container > .email-address-container {
overflow: hidden;
padding-right: 2px;
}

input.email-address {
width: 100%;
}

.button-container {
float: right;
margin-left: 7px;

@media (max-width: 650px) {
margin-top: 2px;
}
}
}
}

a.show-license-resend-modal {
margin-top: 4px;
display: inline-block;
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "../colors";

.fs-modal {
position: fixed;
overflow: auto;
Expand All @@ -17,14 +19,14 @@
top: -100%;
z-index: 100001;
width: 596px;

@media (max-width: 650px) {
margin-left: -50%;
box-sizing: border-box;
padding-left: 10px;
padding-right: 10px;
width: 100%;

.fs-modal-panel > h3 > strong {
font-size: 1.3em;
}
Expand Down Expand Up @@ -53,18 +55,14 @@
.fs-modal-body {
border-bottom: 0;

input.license_key {
width: 100%;
}

p {
font-size: 14px;
}

h2 {
font-size: 20px;
}

> div {
margin-top: 10px;

Expand All @@ -79,7 +77,7 @@
.fs-modal-footer {
border-top: #eeeeee solid 1px;
text-align: right;

> .button {
margin: 0 7px;

Expand All @@ -89,8 +87,15 @@
}
}

.fs-modal-panel:not(.active) {
display: none;
.fs-modal-panel {
> .notice.inline {
margin: 0;
display: none;
}

&:not(.active) {
display: none;
}
}
}

Expand Down
15 changes: 14 additions & 1 deletion assets/scss/admin/account.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
}
}

#fs_account_details .button-group {
float: right;
}

.rtl #fs_account .fs-header-actions
{
left: 15px;
Expand Down Expand Up @@ -106,12 +110,21 @@
padding: 10px;
}

var, code
code {
line-height: 28px;
}

var, code, input[type="text"]
{
color: #0073AA;
font-size: 16px;
background: none;
}

input[type="text"] {
width: 100%;
font-weight: bold;
}
}

label.fs-tag
Expand Down
120 changes: 0 additions & 120 deletions assets/scss/admin/deactivation-feedback.scss

This file was deleted.

4 changes: 4 additions & 0 deletions assets/scss/admin/dialog-boxes.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@import "modal-common";
@import "deactivation-feedback";
@import "license-activation";
@import "license-key-resend";
Loading

0 comments on commit 742cc18

Please sign in to comment.