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;
|
2015-05-21 15:44:09 -03:00
|
|
|
-webkit-touch-callout: none !important;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
2015-05-18 10:32:49 -03:00
|
|
|
-webkit-tap-highlight-color:rgba(0,0,0,0);
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-29 16:30:17 -03:00
|
|
|
.touch {
|
2015-04-14 01:15:18 -03:00
|
|
|
-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;
|
2015-04-14 01:15:18 -03:00
|
|
|
-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;
|
2015-05-07 11:39:29 -03:00
|
|
|
height: 45px;
|
2015-03-06 12:00:10 -03:00
|
|
|
overflow: hidden;
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-bar {
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
z-index: 5;
|
2015-05-22 16:41:30 -03:00
|
|
|
border-bottom: 1px solid #E9E9EC;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-bar h1 {
|
2015-05-13 12:41:05 -03:00
|
|
|
color: #7A8C9E;
|
2015-03-06 12:00:10 -03:00
|
|
|
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;
|
2015-04-24 15:02:14 -03:00
|
|
|
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 {
|
2015-04-14 02:13:05 -03:00
|
|
|
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%;
|
2015-05-19 17:48:47 -03:00
|
|
|
height: 60px;
|
|
|
|
|
overflow: hidden;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-29 16:50:11 -03:00
|
|
|
|
2015-03-06 12:00:10 -03:00
|
|
|
a.missing-copayers {
|
|
|
|
|
bottom: -34px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: .7rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button, button {
|
|
|
|
|
padding: 1rem 1.2rem 1.0625rem;
|
2015-05-17 00:34:26 -03:00
|
|
|
border: 1px solid transparent;
|
2015-05-28 17:24:30 -03:00
|
|
|
font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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 {
|
2015-05-08 18:27:27 -03:00
|
|
|
background: #2C3E50;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar li {
|
|
|
|
|
overflow: hidden;
|
2015-05-08 18:27:27 -03:00
|
|
|
border-bottom: 1px solid #384B5F;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar li.nav-item.selected {
|
2015-05-08 18:27:27 -03:00
|
|
|
background-color: #122232;
|
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;
|
2015-05-08 18:27:27 -03:00
|
|
|
padding: 0.33rem 0.65rem;
|
2015-03-06 12:00:10 -03:00
|
|
|
line-height: 24px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
float: left;
|
2015-05-08 18:27:27 -03:00
|
|
|
width: 35px;
|
|
|
|
|
height: 35px;
|
2015-03-06 12:00:10 -03:00
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar header {
|
|
|
|
|
text-align: center;
|
2015-05-08 18:27:27 -03:00
|
|
|
padding: 1.7rem;
|
|
|
|
|
border-bottom: 1px solid #384B5F;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
border-bottom: transparent;
|
|
|
|
|
color: #A5B2BF;
|
2015-04-28 20:31:01 -03:00
|
|
|
padding: 1rem 0.7rem;
|
2015-05-08 18:27:27 -03:00
|
|
|
line-height: 155%;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.move-right .close-menu {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
2015-04-24 04:04:49 -03:00
|
|
|
background: none;
|
2015-03-06 12:00:10 -03:00
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 1002;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-07 18:35:54 -03:00
|
|
|
/* === */
|
2015-03-06 12:00:10 -03:00
|
|
|
|
|
|
|
|
|
2015-05-17 00:34:26 -03:00
|
|
|
/* Have to set height explicity on ui-view
|
2015-05-07 18:35:54 -03:00
|
|
|
to prevent collapsing during animation*/
|
|
|
|
|
.main[ui-view]{
|
|
|
|
|
height: 100%; /* TODO */
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-07 18:35:54 -03:00
|
|
|
.ui-view-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-07 18:35:54 -03:00
|
|
|
[ui-view].slideDown,
|
|
|
|
|
[ui-view].slideRight,
|
|
|
|
|
[ui-view].slideLeft {
|
|
|
|
|
z-index:100;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-07 18:35:54 -03:00
|
|
|
#mainSection, #mainSectionDup {
|
|
|
|
|
height:100%;
|
2015-03-06 12:00:10 -03:00
|
|
|
position: absolute;
|
2015-05-07 18:35:54 -03:00
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2015-05-07 18:49:30 -03:00
|
|
|
|
2015-05-13 11:29:36 -03:00
|
|
|
animation-timing-function: ease-in-out;
|
2015-05-08 18:28:50 -03:00
|
|
|
animation-duration: .3s;
|
2015-05-07 18:49:30 -03:00
|
|
|
animation-iteration-count: 1;
|
2015-05-07 18:35:54 -03:00
|
|
|
animation-fill-mode: both;
|
2015-05-17 00:34:26 -03:00
|
|
|
|
2015-05-13 11:29:36 -03:00
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
2015-05-08 18:28:50 -03:00
|
|
|
-webkit-animation-duration: .3s;
|
2015-05-07 18:49:30 -03:00
|
|
|
-webkit-animation-iteration-count: 1;
|
|
|
|
|
-webkit-animation-fill-mode: both;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-07 18:35:54 -03:00
|
|
|
.CslideInUp {
|
2015-05-08 09:35:33 -03:00
|
|
|
-webkit-animation-name: slideInUp;
|
|
|
|
|
animation-name: slideInUp;
|
2015-05-07 18:35:54 -03:00
|
|
|
z-index: 1003;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
2015-05-07 18:35:54 -03:00
|
|
|
.CslideOutDown {
|
2015-05-08 09:35:33 -03:00
|
|
|
-webkit-animation-name: slideOutDown;
|
|
|
|
|
animation-name: slideOutDown;
|
2015-05-07 18:35:54 -03:00
|
|
|
z-index: 1003;
|
|
|
|
|
}
|
2015-05-08 09:35:33 -03:00
|
|
|
.CslideOutRight {
|
|
|
|
|
-webkit-animation-name: slideOutRight;
|
|
|
|
|
animation-name: slideOutRight;
|
2015-05-07 18:35:54 -03:00
|
|
|
z-index: 1003;
|
|
|
|
|
}
|
|
|
|
|
.CslideInRight {
|
2015-05-08 09:35:33 -03:00
|
|
|
-webkit-animation-name: slideInRight;
|
|
|
|
|
animation-name: slideInRight;
|
2015-05-07 18:35:54 -03:00
|
|
|
z-index: 1003;
|
2015-03-06 12:00:10 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-07 18:35:54 -03:00
|
|
|
/* == */
|
|
|
|
|
|
2015-03-06 12:00:10 -03:00
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-11 15:15:55 -03:00
|
|
|
.reveal-modal.full {
|
|
|
|
|
top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-29 16:30:17 -03:00
|
|
|
.modal-content {
|
|
|
|
|
position: fixed;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2015-05-29 19:15:39 -03:00
|
|
|
top: 45px;
|
2015-05-29 16:30:17 -03:00
|
|
|
padding-bottom: 33px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-06 12:00:10 -03:00
|
|
|
.reveal-modal {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 0;
|
2015-05-22 16:41:30 -03:00
|
|
|
outline: 0;
|
2015-05-06 11:16:19 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-17 00:34:26 -03:00
|
|
|
.reveal-modal.animated.slideInRight,
|
|
|
|
|
.reveal-modal.animated.slideOutRight,
|
|
|
|
|
.reveal-modal.animated.fadeOutUp,
|
|
|
|
|
.reveal-modal.animated.slideInUp,
|
2015-05-07 19:15:38 -03:00
|
|
|
.reveal-modal.animated.slideInDown {
|
|
|
|
|
-webkit-animation-duration: 0.3s;
|
|
|
|
|
animation-duration: 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
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"],
|
2015-05-18 10:32:49 -03:00
|
|
|
input,
|
|
|
|
|
select,
|
2015-04-27 15:42:15 -03:00
|
|
|
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,
|
2015-05-18 10:32:49 -03:00
|
|
|
input:focus,
|
|
|
|
|
select:focus,
|
2015-04-27 15:42:15 -03:00
|
|
|
textarea:focus
|
|
|
|
|
{
|
2015-05-21 15:44:09 -03:00
|
|
|
outline: 0;
|
2015-04-27 15:42:15 -03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2015-04-24 15:02:14 -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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 01:15:18 -03:00
|
|
|
::-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 {
|
2015-04-14 01:15:18 -03:00
|
|
|
color: #B7C2CD;
|
|
|
|
|
}
|
|
|
|
|
|
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-05-22 16:41:30 -03:00
|
|
|
top: 45px;
|
2015-04-30 18:05:59 -03:00
|
|
|
bottom: 37px;
|
2015-04-23 19:11:41 -03:00
|
|
|
overflow: auto;
|
2015-05-07 11:39:29 -03:00
|
|
|
padding-bottom: 40px;
|
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-20 10:36:01 -03:00
|
|
|
.create-tab {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-bottom: 1px solid #DEDFE1;
|
2015-05-20 11:10:03 -03:00
|
|
|
margin-bottom: 25px;
|
|
|
|
|
padding: 0 0 .5rem 1rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.create-tab .tab-container {
|
|
|
|
|
float: left;
|
2015-05-20 10:36:01 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-29 16:50:11 -03:00
|
|
|
|
2015-05-20 10:36:01 -03:00
|
|
|
.create-tab a {
|
|
|
|
|
font-size: .7rem;
|
|
|
|
|
padding: 0 0 .6rem;
|
|
|
|
|
color: #929396;
|
|
|
|
|
text-transform: uppercase;
|
2015-05-29 16:50:11 -03:00
|
|
|
font-weight: 500;
|
2015-05-20 10:36:01 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.create-tab a:hover,
|
|
|
|
|
.create-tab a:focus {
|
2015-05-29 16:50:11 -03:00
|
|
|
border-bottom: 3px solid #929396;
|
2015-05-20 10:36:01 -03:00
|
|
|
}
|
|
|
|
|
|
2015-05-28 17:24:30 -03:00
|
|
|
.create-tab a.selected,
|
2015-05-20 10:36:01 -03:00
|
|
|
.create-tab a:active {
|
|
|
|
|
font-weight: 600;
|
2015-05-20 10:48:52 -03:00
|
|
|
color: #2C3E50;
|
|
|
|
|
border-bottom: 3px solid #2C3E50;
|
2015-05-20 10:36:01 -03:00
|
|
|
}
|
|
|
|
|
|
2015-04-28 15:02:27 -03:00
|
|
|
/* removes 300ms in IE */
|
|
|
|
|
-ms-touch-action: manipulation; /* IE10 /
|
|
|
|
|
touch-action: manipulation; /* IE11+ */
|