Wallet/src/css/mobile.css

869 lines
15 KiB
CSS
Raw Normal View History

2015-04-15 17:12:39 -03:00
2015-03-06 12:00:10 -03:00
/*
*
* Copay mobile CSS
*
*/
/* disabling text selection */
body {
-webkit-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
user-select: none;
}
input {
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
* {
-webkit-user-drag: none;
-ms-user-drag: none;
user-drag: none;
}
body, div, .row {
-webkit-overflow-scrolling: touch;
}
2015-03-06 12:00:10 -03:00
.enable_text_select {
-webkit-user-select: text;
-khtml-user-select: text;
-ms-user-select: text;
user-select: text;
}
/* END disabling text selection */
.inner-wrap {
2015-04-29 12:08:16 -03:00
-webkit-transition-duration: 200ms;
2015-04-30 17:57:05 -03:00
transition-duration: 200ms;
2015-04-29 12:20:47 -03:00
-webkit-transition-delay: 0;
transition-delay: 0;
2015-04-30 17:57:05 -03:00
}
2015-03-06 12:00:10 -03:00
body {
overflow: hidden;
-ms-content-zooming: none;
2015-04-24 11:47:35 -03:00
}
2015-03-06 12:00:10 -03:00
/* Fix IE 10 */
.extra-margin-bottom {
display: block
height: 75px
overflow: hidden
clear: both
}
.main {
height: 99%
overflow: auto
}
/* Fix IE 11 */
_:-ms-fullscreen, :root .extra-margin-bottom {
display: block;
height: 75px;
overflow: hidden;
clear: both;
}
_:-ms-fullscreen, :root .main {
height: 99%;
overflow: auto;
}
/* Fix Firefox */
@-moz-document url-prefix() {
.extra-margin-bottom {
display: block;
height: 75px;
overflow: hidden;
clear: both;
}
}
.tab-bar {
background: #FFFFFF;
box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.10);
display: block;
position: fixed;
width: 100%;
z-index: 5;
line-height: 3.2rem;
}
.tab-bar h1 {
color: #1ABC9C;
font-weight: 500;
font-size: 14px;
}
.tab-bar-section.middle {
2015-04-24 16:41:28 -03:00
left: 4.7rem;
right: 4.7rem;
2015-03-06 12:00:10 -03:00
}
.left-small {
2015-04-24 16:41:28 -03:00
width: 4.7rem;
2015-04-30 17:57:05 -03:00
line-height: 2.95rem;
border-right: none;
2015-03-06 12:00:10 -03:00
}
.right-small {
2015-04-24 16:41:28 -03:00
width: 4.7rem;
2015-03-06 12:00:10 -03:00
text-align: right;
2015-04-30 17:57:05 -03:00
line-height: 2.7rem;
border-left: none;
2015-03-06 12:00:10 -03:00
}
.tab-bar .icon-back {
font-size: 2.5rem;
position: absolute;
line-height: 52px;
left: -5px;
height: 45px;
top: 0px;
2015-04-24 11:47:35 -03:00
}
2015-03-06 12:00:10 -03:00
.tab-bar .text-back {
margin-left: 26px;
2015-04-30 18:05:59 -03:00
font-size: 0.9rem;
2015-03-06 12:00:10 -03:00
font-weight: 400;
padding: 10px 0;
2015-04-30 18:09:07 -03:00
visibility: middle;
2015-03-06 12:00:10 -03:00
}
.tab-bar .text-close {
2015-04-30 18:05:59 -03:00
font-size: 0.9rem;
2015-03-06 12:00:10 -03:00
font-weight: 400;
2015-04-30 17:57:05 -03:00
line-height: 2.95rem;
2015-03-06 12:00:10 -03:00
}
.bottom-bar {
display: block;
position: fixed;
bottom: 0;
width: 100%;
z-index: 5;
background: #2C3E50;
}
.amount {
width: 100%;
text-align: center;
padding: 3rem 1rem;
margin-bottom: 11px;
color: #fff;
2015-04-14 12:51:49 -03:00
height: 175px;
2015-03-06 12:00:10 -03:00
}
.scroll-section {
position: absolute;
top: 120px;
overflow-y: auto;
}
.status {
bottom: 65px;
left: 0;
}
.right-off-canvas-menu {
background-color: #213140 ;
}
.off-canvas-wrap,.inner-wrap{
2015-04-24 11:47:35 -03:00
height:100%;
2015-03-06 12:00:10 -03:00
}
2015-04-23 14:37:36 -03:00
.walletHome {
background-color: #fff;
}
2015-04-23 14:37:36 -03:00
.walletHome .avatar-wallet {
2015-03-06 12:00:10 -03:00
padding: 1.7rem 1rem;
width: 75px;
height: 75px;
position: absolute;
top: -33px;
font-size: 35px;
border: 3px solid #fff;
background: #1ABC9C;
margin: 0;
color: #FFF;
font-weight: 700;
line-height: 15px;
text-align: center;
border-radius: 5px;
}
2015-04-23 14:37:36 -03:00
.walletHome .wallet-info {
2015-03-06 12:00:10 -03:00
margin-left: 85px;
line-height: 110%;
float: left;
margin-bottom: 20px;
}
.copayers {
position: relative;
padding: 0;
overflow-y: none;
}
ul.copayer-list img {
width: 30px;
height: 30px;
}
.bottombar-item a {
2015-04-24 11:47:35 -03:00
color: #9EA9B3;
2015-03-06 12:00:10 -03:00
padding: 0.5rem 0;
display: block;
2015-04-24 11:47:35 -03:00
border-top: 3px solid #122232;
2015-03-06 12:00:10 -03:00
}
.bottombar-item a.active {
color: #E4E8EC;
2015-04-24 11:47:35 -03:00
background-color: #122232;
2015-03-06 12:00:10 -03:00
}
.box-founds {
background-color: #213140;
}
.right-small a, .left-small a {
color: #A5B2BF;
}
.addresses .list-addr contact {
margin-left: 0;
font-size: 14px;
}
a.missing-copayers {
bottom: -34px;
text-align: center;
padding: .7rem;
width: 100%;
}
.button, button {
padding: 1rem 1.2rem 1.0625rem;
}
.box-setup {
margin-bottom: 50px;
}
.footer-setup {
margin-bottom: 50px;
2015-04-24 11:47:35 -03:00
}
2015-03-06 12:00:10 -03:00
.label {
2015-04-16 12:22:43 -03:00
font-size: 70%;
2015-03-06 12:00:10 -03:00
padding: 0.2rem 0.2rem;
}
.sidebar {
background: #fff;
box-shadow: inset -1px 0px 2px 0px rgba(0,0,0,0.20);
}
.sidebar li {
overflow: hidden;
border-bottom: 1px solid #f1f3f5;
}
.sidebar li.nav-item.selected {
background-color: #f1f3f5;
box-shadow: inset -1px 0px 1px 0px rgba(0,0,0,0.20);
2015-04-24 11:47:35 -03:00
}
2015-03-06 12:00:10 -03:00
2015-04-16 16:56:15 -03:00
.sidebar .avatar-wallet, .payment-uri .avatar-wallet {
background-color: #2C3E50;
2015-03-06 12:00:10 -03:00
color: #fff;
font-size: 20px;
font-weight: 700;
margin-right: 15px;
padding: 0.5rem 0.65rem;
line-height: 24px;
text-align: center;
float: left;
width: 40px;
border-radius: 3px;
}
.sidebar header {
2015-04-22 13:58:37 -03:00
background-image: -webkit-linear-gradient(bottom, #213140 0%, #2C3E50 100%);
background-image: -o-linear-gradient(bottom, #213140 0%, #2C3E50 100%);
background-image: linear-gradient(to top, #213140 0%, #2C3E50 100%);
2015-03-06 12:00:10 -03:00
width: 100%;
text-align: center;
height: 7rem;
padding: 1.3rem;
}
.sidebar header h1 {
color: #fff;
margin: 0;
padding: 5px;
}
.sidebar header small {
color: #fff;
}
.sidebar ul.off-canvas-list {
margin-bottom: 30px;
}
2015-04-28 20:31:01 -03:00
.sidebar ul.off-canvas-list li a {
2015-03-06 12:00:10 -03:00
font-size: 12px;
vertical-align: middle;
font-weight: 300;
border-bottom: transparent;
color: #A5B2BF;
2015-04-28 20:31:01 -03:00
padding: 1rem 0.7rem;
2015-03-06 12:00:10 -03:00
}
2015-04-28 20:31:01 -03:00
.sidebar ul.off-canvas-list li a i {
2015-03-06 12:00:10 -03:00
vertical-align: middle;
opacity: 0.6;
}
.sidebar .left-off-canvas-menu {
background: #E4E8EC;
line-height: 24px;
}
2015-04-24 11:47:35 -03:00
/*
* Remove all vendors hover / shadow / fade
2015-03-06 12:00:10 -03:00
*/
.tooltip {
display: none !important;
}
.move-right .exit-off-canvas,
.move-left .exit-off-canvas {
box-shadow: none;
}
ul.off-canvas-list li a:hover {
background: none;
}
2015-05-05 13:02:40 -03:00
a, button, .button, input, textarea, select {
2015-03-06 12:00:10 -03:00
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.move-right .close-menu {
cursor: pointer;
box-shadow: none;
display: block;
position: absolute;
background: none;
2015-03-06 12:00:10 -03:00
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1002;
}
/*******************************************/
.pin {
margin: 0 auto;
width: 25%;
text-align: center;
overflow: hidden;
}
.pin-box {
color: #fff;
font-size: 14px;
width: 25%;
float: left;
}
.pin-numbers {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
height: 72%;
}
.pin-button-bar {
height: 25%;
}
a.pin-button {
margin: 2.5%;
display: inline-block;
color: #CED5DC;
font-size: 210%;
font-weight: 100;
border: 1px solid #4B6178;
border-radius: 100%;
width: 70px;
padding-top: 0.5rem;
height: 70px;
}
a.pin-button:active {
color: #fff;
background-color: #3E5367;
}
.icon-circle, .icon-circle-active {
color: #1ABC9C;
}
.tx-comment {
2015-04-24 11:47:35 -03:00
border-top: 1px solid #eee;
2015-03-06 12:00:10 -03:00
padding-top: 10px;
margin-top: 10px;
}
/* notifications */
.dr-notification-container {
position: absolute;
z-index: 10000;
width: 100%;
}
.dr-notification-container.bottom {
bottom: 20px;
}
.dr-notification-container.right {
right: 0;
}
.dr-notification-container.left {
left: 20px;
}
.dr-notification-container.top {
top: 45px;
}
.dr-notification-container.center {
left: 50%;
margin-left: -190px;
}
.dr-notification-wrapper {
position: relative;
width: 100%;
margin: 0;
}
.dr-notification-wrapper.offline {
position: absolute;
2015-04-13 14:58:07 -03:00
top: 0px;
z-index: 2000;
opacity: 1.0 !important;
background-color: #2C3E50;
2015-03-06 12:00:10 -03:00
}
.dr-notification-wrapper.client-error {
position: absolute;
top: 45px;
z-index: 11;
}
.dr-notification-close-btn {
color: #A5B2BF;
border: 1px solid #A5B2BF;
border-radius: 100%;
display: inline-block;
padding: 0px 8px;
position: absolute;
right: 5px;
cursor: pointer;
z-index: 10;
margin: 14px 8px 0;
font-size: 20px;
}
.dr-notification-image {
float: left;
color: #fff;
text-align: center;
background-color: #213140;
width: 40px;
height: 40px;
font-size: 1.5rem;
border-radius: 100%;
margin: 0.6rem;
}
.dr-notification-image img {
margin: 15px;
max-width: 70px;
min-width: 48px;
}
.dr-notification-content {
2015-04-17 15:21:20 -03:00
line-height: 90%;
padding: 10px 50px 5px 60px;
2015-03-06 12:00:10 -03:00
}
.dr-notification-title {
color: #fff;
2015-04-17 15:21:20 -03:00
font-size: 12px;
2015-03-06 12:00:10 -03:00
margin-bottom: 0;
2015-04-17 15:21:20 -03:00
font-weight: 700;
2015-03-06 12:00:10 -03:00
}
.dr-notification {
background: rgba(44,62,80,0.90);
box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.20);
-webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.20);
-moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.20);
width: 100%;
clear: both;
overflow: hidden;
border-radius: 0;
height: 60px;
}
.dr-notification-text {
2015-04-17 15:21:20 -03:00
font-size: 11px;
2015-03-06 12:00:10 -03:00
color: #fff;
}
/*** modals ***/
.reveal-modal-bg {
display: none !important;
}
.reveal-modal {
padding: 0;
border: none;
border-radius: 0;
top: 0;
height: 100%;
overflow: auto;
2015-04-24 02:17:54 -03:00
padding-bottom: 20px;
2015-05-05 13:02:40 -03:00
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.reveal-modal.fade {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.reveal-modal.fade.in {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
2015-03-06 12:00:10 -03:00
}
2015-04-30 17:57:05 -03:00
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
2015-04-30 17:57:05 -03:00
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
textarea:focus
{
opacity: 1;
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
/*CSS transforms*/
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
/*CSS animations*/
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
/*CSS box-shadow*/
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
2015-03-06 12:00:10 -03:00
}
.popup-tx-status {
z-index: 1030;
}
2015-03-06 12:00:10 -03:00
.popup-txsent {
position: absolute;
width: 100%;
height: 100%;
background: #1ABC9C;
}
.popup-txsent i {
font-size: 5rem;
background-color: #fff;
color: #1ABC9C;
border-radius: 100%;
width: 150px;
height: 150px;
display: block;
text-align: center;
padding-top: 1rem;
}
.popup-txsigned i {
font-size: 5rem;
background-color: #1ABC9C;
color: #fff;
border-radius: 100%;
width: 150px;
height: 150px;
display: block;
text-align: center;
padding-top: 1rem;
}
.popup-txrejected i {
font-size: 5rem;
2015-04-15 17:12:39 -03:00
background-color: #ED4A43;
2015-03-06 12:00:10 -03:00
color: #fff;
border-radius: 100%;
width: 150px;
height: 150px;
display: block;
text-align: center;
padding-top: 1rem;
}
::-webkit-input-placeholder {
color: #B7C2CD;
}
:-moz-placeholder { /* Firefox 18- */
color: #B7C2CD;
}
::-moz-placeholder { /* Firefox 19+ */
color: #B7C2CD;
}
2015-04-24 11:47:35 -03:00
:-ms-input-placeholder {
color: #B7C2CD;
}
2015-05-04 19:23:18 -03:00
.animation-slide {
2015-04-30 17:57:05 -03:00
position: absolute;
background: #fff;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
2015-05-04 19:23:18 -03:00
.animation-slide.ng-enter,
.animation-slide.ng-leave {
-webkit-transition: 0.25s ease all;
transition: 0.25s ease all;
}
.animation-slide.ng-enter.ng-enter-active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: visible;
}
.animation-slide.ng-leave {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
visibility: hidden;
2015-03-06 12:00:10 -03:00
}
.animation-left.ng-enter {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
2015-05-04 19:23:18 -03:00
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
visibility: hidden;
2015-03-06 12:00:10 -03:00
}
.animation-right.ng-enter {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
2015-05-04 19:23:18 -03:00
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
visibility: hidden;
2015-03-06 12:00:10 -03:00
}
2015-04-24 11:47:35 -03:00
2015-05-04 19:23:18 -03:00
.animation-up.ng-enter {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
2015-03-06 12:00:10 -03:00
}
2015-05-04 19:23:18 -03:00
.animation-down.ng-enter {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
2015-03-06 12:00:10 -03:00
.animation-left.ng-leave.animation-left.ng-leave-active {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
2015-05-04 19:23:18 -03:00
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
visibility: hidden;
2015-03-06 12:00:10 -03:00
}
.animation-right.ng-leave.animation-right.ng-leave-active {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
2015-05-04 19:23:18 -03:00
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
visibility: hidden;
}
.animation-up.ng-leave.animation-up.ng-leave-active {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
visibility: hidden;
}
.animation-down.ng-leave.animation-down.ng-leave-active {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
visibility: hidden;
2015-03-06 12:00:10 -03:00
}
2015-04-23 12:58:08 -03:00
.tab-view {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
width:100%;
2015-04-24 11:47:35 -03:00
position: absolute;
2015-04-23 19:11:41 -03:00
top: 46px;
2015-04-30 18:05:59 -03:00
bottom: 37px;
2015-04-23 19:11:41 -03:00
overflow: auto;
2015-04-24 02:17:54 -03:00
padding-bottom: 20px;
2015-04-23 12:58:08 -03:00
}
.tab-in {
-webkit-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
}
.tab-out {
-webkit-transform: translate3d(-100%, 0, 0) !important;
transform: translate3d(-100%, 0, 0) !important;
}
2015-04-28 15:02:27 -03:00
2015-05-04 19:23:18 -03:00
.animated.slideInRight,
.animated.slideInLeft,
.animated.slideInUp,
.animated.slideInDown {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
}
2015-04-28 15:02:27 -03:00
/* removes 300ms in IE */
-ms-touch-action: manipulation; /* IE10 /
touch-action: manipulation; /* IE11+ */