fix layout details
This commit is contained in:
parent
3510516e0c
commit
f4d4f819de
2 changed files with 50 additions and 3 deletions
47
css/main.css
47
css/main.css
|
|
@ -93,6 +93,11 @@ a {
|
|||
color: #3498DB;
|
||||
}
|
||||
|
||||
|
||||
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, input:-webkit-autofill:focus, textarea:-webkit-autofill:focus, select:-webkit-autofill:focus {
|
||||
-webkit-box-shadow: 0 0 0px 1000px white inset;
|
||||
}
|
||||
|
||||
.signin label, .setup label {
|
||||
font-size: 0.875rem;
|
||||
color: #fff;
|
||||
|
|
@ -780,6 +785,36 @@ button[disabled].white:focus,
|
|||
color: #E6E6E6;
|
||||
}
|
||||
|
||||
/* BLACK */
|
||||
button.black,
|
||||
.button.black {
|
||||
background-color: #2C3E50;
|
||||
color: #fff;
|
||||
}
|
||||
button.black:hover,
|
||||
button.black:focus,
|
||||
.button.black:hover,
|
||||
.button.black:focus {
|
||||
background-color: #213140;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
button.disabled.black,
|
||||
button[disabled].black,
|
||||
.button.disabled.black,
|
||||
.button[disabled].black,
|
||||
button.disabled.black:hover,
|
||||
button.disabled.black:focus,
|
||||
button[disabled].black:hover,
|
||||
button[disabled].black:focus,
|
||||
.button.disabled.black:hover,
|
||||
.button.disabled.black:focus,
|
||||
.button[disabled].black:hover,
|
||||
.button[disabled].black:focus {
|
||||
background-color: #95a5a6;
|
||||
color: #E6E6E6;
|
||||
}
|
||||
|
||||
.side-nav {padding: 0;}
|
||||
|
||||
.side-nav li {
|
||||
|
|
@ -797,6 +832,14 @@ button[disabled].white:focus,
|
|||
color: #fff;
|
||||
}
|
||||
|
||||
.side-nav li>a:first-child:not(.button) i {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.side-nav li.active>a:first-child:not(.button) i {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.side-nav li.active:hover a {
|
||||
background-color: #F8F8FB;
|
||||
}
|
||||
|
|
@ -868,6 +911,10 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.copayers i {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.text-light {font-weight: 100;}
|
||||
.text-gray {color: #8597A7 !important;}
|
||||
.text-primary {color: #1ABC9C;}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<small class="icon-input" ng-show="sendForm.address.$invalid && address"><i class="fi-x"></i></small>
|
||||
</div>
|
||||
<div class="small-2 columns" ng-hide="showScanner || !isHttp">
|
||||
<a class="postfix button secondary" ng-click="openScanner()"><i class="fi-camera"></i></a>
|
||||
<a class="postfix button black" ng-click="openScanner()"><i class="fi-camera"></i></a>
|
||||
</div>
|
||||
<div class="small-2 columns" ng-show="showScanner && isHttp">
|
||||
<a class="postfix button warning" ng-click="cancelScanner()">Cancel</a>
|
||||
|
|
@ -94,7 +94,7 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="large-5 columns">
|
||||
<button type="submit" class="button secondary expand text-center" ng-disabled="sendForm.$invalid || loading" loading="Sending">
|
||||
<button type="submit" class="button primary expand text-center" ng-disabled="sendForm.$invalid || loading" loading="Sending">
|
||||
Send
|
||||
</button>
|
||||
</div>
|
||||
|
|
@ -149,7 +149,7 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<button class="button tiny secondary text-center" ng-click="openAddressBookModal()">Add New Entry</button>
|
||||
<button class="button tiny primary text-center" ng-click="openAddressBookModal()">Add New Entry</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue