Fixed rendering of Registration page
This commit is contained in:
parent
755df7d360
commit
cdfd739897
@ -1405,7 +1405,7 @@ div.dialogBox {
|
|||||||
margin-bottom: 5px; }
|
margin-bottom: 5px; }
|
||||||
#loadingPage div h3 {
|
#loadingPage div h3 {
|
||||||
font-size: 18pt;
|
font-size: 18pt;
|
||||||
color: black;
|
color: white;
|
||||||
margin: 0px; }
|
margin: 0px; }
|
||||||
|
|
||||||
#loginPage {
|
#loginPage {
|
||||||
@ -1634,17 +1634,16 @@ div.dialogBox {
|
|||||||
-moz-flex: 1;
|
-moz-flex: 1;
|
||||||
-ms-flex: 1;
|
-ms-flex: 1;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-family: 'clipperz-icons';
|
|
||||||
-webkit-font-feature-settings: "liga" 1, "dlig" 1;
|
|
||||||
-moz-font-feature-settings: "liga" 1, "dlig" 1;
|
|
||||||
-ms-font-feature-settings: "liga" 1, "dlig" 1;
|
|
||||||
-o-font-feature-settings: "liga" 1, "dlig" 1;
|
|
||||||
font-feature-settings: "liga" 1, "dlig" 1;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
font-size: 48pt;
|
font-size: 48pt;
|
||||||
line-height: 90pt;
|
line-height: 90pt;
|
||||||
color: white; }
|
color: white; }
|
||||||
|
#registrationPage .registrationForm header h3 {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 38pt;
|
||||||
|
line-height: 1.7em; }
|
||||||
|
#registrationPage .registrationForm header h5 {
|
||||||
|
font-size: 16pt;
|
||||||
|
line-height: 1.0em; }
|
||||||
#registrationPage .registrationForm div.form {
|
#registrationPage .registrationForm div.form {
|
||||||
-webkit-box-flex: 4;
|
-webkit-box-flex: 4;
|
||||||
-webkit-flex: 4;
|
-webkit-flex: 4;
|
||||||
@ -1738,6 +1737,8 @@ div.dialogBox {
|
|||||||
cursor: default; }
|
cursor: default; }
|
||||||
#registrationPage .registrationForm div.form form .steps .step .buttons .button.enabled {
|
#registrationPage .registrationForm div.form form .steps .step .buttons .button.enabled {
|
||||||
background-color: #ff9900; }
|
background-color: #ff9900; }
|
||||||
|
#registrationPage .registrationForm div.links ul li {
|
||||||
|
display: inline-block; }
|
||||||
#registrationPage .registrationForm footer {
|
#registrationPage .registrationForm footer {
|
||||||
-webkit-box-flex: 1;
|
-webkit-box-flex: 1;
|
||||||
-webkit-flex: 1;
|
-webkit-flex: 1;
|
||||||
@ -1753,6 +1754,23 @@ div.dialogBox {
|
|||||||
content: "< "; }
|
content: "< "; }
|
||||||
#registrationPage .registrationForm footer a {
|
#registrationPage .registrationForm footer a {
|
||||||
line-height: 50pt; }
|
line-height: 50pt; }
|
||||||
|
#registrationPage .registrationForm footer .applicationVersion {
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-webkit-flex: 1;
|
||||||
|
-moz-box-flex: 1;
|
||||||
|
-moz-flex: 1;
|
||||||
|
-ms-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
font-size: 8pt; }
|
||||||
|
#registrationPage .registrationForm footer .applicationVersion span {
|
||||||
|
color: black; }
|
||||||
|
#registrationPage .registrationForm footer .applicationVersion span:after {
|
||||||
|
content: ":"; }
|
||||||
|
#registrationPage .registrationForm footer .applicationVersion a {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
padding-left: 5px;
|
||||||
|
font-weight: bold; }
|
||||||
|
|
||||||
#selections {
|
#selections {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
|
File diff suppressed because one or more lines are too long
@ -222,7 +222,10 @@ Clipperz.PM.UI.Components.Pages.RegistrationPageClass = React.createClass({
|
|||||||
|
|
||||||
render: function () {
|
render: function () {
|
||||||
return React.DOM.div({'className':'registrationForm'},[
|
return React.DOM.div({'className':'registrationForm'},[
|
||||||
React.DOM.header({'key':'header'}, 'clipperz'),
|
React.DOM.header({'key':'header'}, [
|
||||||
|
React.DOM.h3({}, 'clipperz'),
|
||||||
|
React.DOM.h5({}, 'keep it to yourself'),
|
||||||
|
]),
|
||||||
React.DOM.div({'key':'body', 'className':'form'}, [
|
React.DOM.div({'key':'body', 'className':'form'}, [
|
||||||
React.DOM.form({'key':'registrationForm', 'autoComplete':'off', 'onChange': this.handleChange}, [
|
React.DOM.form({'key':'registrationForm', 'autoComplete':'off', 'onChange': this.handleChange}, [
|
||||||
React.DOM.div({'key':'steps', 'className':'steps'}, MochiKit.Base.map(this.renderStep, this.props['steps']))
|
React.DOM.div({'key':'steps', 'className':'steps'}, MochiKit.Base.map(this.renderStep, this.props['steps']))
|
||||||
@ -236,7 +239,11 @@ Clipperz.PM.UI.Components.Pages.RegistrationPageClass = React.createClass({
|
|||||||
])
|
])
|
||||||
]),
|
]),
|
||||||
React.DOM.footer({'key':'footer'}, [
|
React.DOM.footer({'key':'footer'}, [
|
||||||
React.DOM.a({'key':'login', 'onClick':this.handleLoginLinkClick}, "Login")
|
React.DOM.a({'key':'login', 'onClick':this.handleLoginLinkClick}, "Login"),
|
||||||
|
React.DOM.div({'key':'applicationVersion', 'className':'applicationVersion'}, [
|
||||||
|
React.DOM.span({'key':'applicationVersionLabel'}, "application version"),
|
||||||
|
React.DOM.a({'key':'applicationVersionLink', 'href':'https://github.com/clipperz/password-manager/commit/' + Clipperz_version, 'target':'github'}, Clipperz_version)
|
||||||
|
])
|
||||||
])
|
])
|
||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
|
@ -48,7 +48,8 @@ refer to http://www.clipperz.com.
|
|||||||
h3 {
|
h3 {
|
||||||
font-size: 18pt;
|
font-size: 18pt;
|
||||||
// color: $Loading_h3-color;
|
// color: $Loading_h3-color;
|
||||||
color: $main-text-color;
|
// color: $main-text-color;
|
||||||
|
color: $main-alternate-text-color;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -37,12 +37,22 @@ refer to http://www.clipperz.com.
|
|||||||
|
|
||||||
header {
|
header {
|
||||||
@include flex(1);
|
@include flex(1);
|
||||||
@include icon-font();
|
// @include icon-font();
|
||||||
|
|
||||||
font-size: 48pt;
|
font-size: 48pt;
|
||||||
line-height: 90pt;
|
line-height: 90pt;
|
||||||
color: white;
|
color: $main-alternate-text-color;
|
||||||
// color: $main-color;
|
|
||||||
|
h3 {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 38pt;
|
||||||
|
line-height: 1.7em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 16pt;
|
||||||
|
line-height: 1.0em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
div.form {
|
div.form {
|
||||||
@ -195,6 +205,14 @@ refer to http://www.clipperz.com.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.links {
|
||||||
|
ul {
|
||||||
|
li {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
@include flex(1);
|
@include flex(1);
|
||||||
|
|
||||||
@ -211,6 +229,26 @@ refer to http://www.clipperz.com.
|
|||||||
a {
|
a {
|
||||||
line-height: 50pt;
|
line-height: 50pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.applicationVersion {
|
||||||
|
@include flex(1);
|
||||||
|
font-size: 8pt;
|
||||||
|
|
||||||
|
$applicationVersionColor: black;
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: $applicationVersionColor;
|
||||||
|
&:after {
|
||||||
|
content: ":";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: $applicationVersionColor;
|
||||||
|
text-decoration: none;
|
||||||
|
padding-left: 5px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user