add label and styles
This commit is contained in:
parent
052b913ee0
commit
39af059cee
2 changed files with 19 additions and 8 deletions
|
|
@ -375,7 +375,7 @@ a:hover {
|
||||||
|
|
||||||
.box-setup-footer {
|
.box-setup-footer {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-top: 1.5rem;
|
margin-top: 2rem;
|
||||||
padding: 1rem 0 0;
|
padding: 1rem 0 0;
|
||||||
border-top: 1px solid #425467;
|
border-top: 1px solid #425467;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
@ -1645,8 +1645,19 @@ a.text-warning:hover {color: #FD7262;}
|
||||||
/*/////////////////////////////////////////////////*/
|
/*/////////////////////////////////////////////////*/
|
||||||
|
|
||||||
.createProfile .input {
|
.createProfile .input {
|
||||||
|
box-shadow: 0px 0px 0px 3px #213140, inset 1px 1px 0px 0px rgba(0,0,0,0.05);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
box-shadow: 0px 0px 0px 3px #1A2836, inset 1px 1px 0px 0px rgba(0,0,0,0.05);
|
}
|
||||||
|
|
||||||
|
.createProfile h2 {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #A5B2BF;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding-bottom: 0.8rem;
|
||||||
|
border-bottom: 1px solid #425467;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabbable {
|
.tabbable {
|
||||||
|
|
|
||||||
|
|
@ -113,8 +113,8 @@
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
|
|
||||||
<div ng-if="useLocalstorage"> [x] Creating in this device </div>
|
<h2 ng-if="useLocalstorage"> Creating in this device </h2>
|
||||||
<div ng-if="!useLocalstorage"> [x] Creating in the cloud </div>
|
<h2 ng-if="!useLocalstorage"> Creating in the cloud </h2>
|
||||||
|
|
||||||
<div class="m5b text-right" ng-if="useEmail">
|
<div class="m5b text-right" ng-if="useEmail">
|
||||||
<span translate class="has-error size-12" ng-show="emailForm.email.$invalid &&
|
<span translate class="has-error size-12" ng-show="emailForm.email.$invalid &&
|
||||||
|
|
@ -132,7 +132,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="input" ng-if="!useEmail">
|
<div class="input" ng-if="!useEmail">
|
||||||
<input type="text" ng-model="username" class="form-control fi-user" name="username" placeholder="Username" required auto-focus>
|
<input type="text" ng-model="username" class="form-control fi-user" name="username" placeholder="Username" required auto-focus>
|
||||||
<i class="icon-user"></i>
|
<i class="icon-person"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -154,9 +154,9 @@
|
||||||
|
|
||||||
<form ng-show="createStep == 'pass'" name="passForm" ng-submit="createProfile(passForm)" novalidate>
|
<form ng-show="createStep == 'pass'" name="passForm" ng-submit="createProfile(passForm)" novalidate>
|
||||||
|
|
||||||
<div ng-if="useLocalstorage"> [x] Creating in this device </div>
|
<h2 ng-if="useLocalstorage"> Creating in this device </h2>
|
||||||
<div ng-if="!useLocalstorage"> [x] Creating in the cloud </div>
|
<h2 ng-if="!useLocalstorage"> Creating in the cloud </h2>
|
||||||
<div > -> {{userOrEmail}} </div>
|
<div class="text-gray text-center m20b"> {{userOrEmail}} </div>
|
||||||
|
|
||||||
|
|
||||||
<div class="input">
|
<div class="input">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue