Fix UI calculator. Set default status bar color if no wallet selected

This commit is contained in:
Gustavo Maximiliano Cortez 2016-08-10 12:08:39 -03:00
commit 9982bef8df
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
9 changed files with 55 additions and 9 deletions

View file

@ -2128,6 +2128,10 @@ body.modal-open {
}
}
/*
* Calculator
*/
.calculator .header-calc {
position: absolute;
width: 100%;
@ -2162,6 +2166,14 @@ body.modal-open {
background-color: #f8f8f8;
}
// No looks likes locked
input[type="number"] {
&[readonly] {
background-color: #F6F7F9;
padding-left: 0;
}
}
@media all and (max-height: 480px) {
.calculator .button-calc .columns { padding: 10px; }
.calculator .header-calc { top: 11%; }