2017-03-28 14:34:31 +02:00
|
|
|
/* Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
/* This file is part of Parity.
|
|
|
|
/*
|
|
|
|
/* Parity is free software: you can redistribute it and/or modify
|
|
|
|
/* it under the terms of the GNU General Public License as published by
|
|
|
|
/* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
/* (at your option) any later version.
|
|
|
|
/*
|
|
|
|
/* Parity is distributed in the hope that it will be useful,
|
|
|
|
/* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
/* GNU General Public License for more details.
|
|
|
|
/*
|
|
|
|
/* You should have received a copy of the GNU General Public License
|
|
|
|
/* along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-02 17:50:44 +02:00
|
|
|
$baseColor: 255;
|
2017-03-28 14:34:31 +02:00
|
|
|
$baseOpacity: 0.95;
|
2017-05-02 17:50:44 +02:00
|
|
|
$borderColor: rgba(0, 0, 0, 0.15);
|
2017-03-28 14:34:31 +02:00
|
|
|
|
|
|
|
.requests {
|
|
|
|
align-items: flex-end;
|
|
|
|
bottom: 2em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: fixed;
|
|
|
|
right: 0.175em;
|
2017-03-31 23:32:03 +02:00
|
|
|
width: 24em;
|
2017-03-28 14:34:31 +02:00
|
|
|
z-index: 750;
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-size: 0.85rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.request {
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
|
|
|
|
background-color: rgba($baseColor, $baseColor, $baseColor, $baseOpacity);
|
2017-03-31 23:32:03 +02:00
|
|
|
border: 4px solid $borderColor;
|
2017-03-28 14:34:31 +02:00
|
|
|
cursor: pointer;
|
2017-03-31 23:32:03 +02:00
|
|
|
margin-top: 0.25em;
|
2017-03-28 14:34:31 +02:00
|
|
|
opacity: 1;
|
2017-03-31 23:32:03 +02:00
|
|
|
width: 100%;
|
2017-03-28 14:34:31 +02:00
|
|
|
|
|
|
|
&.hide {
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-name: fadeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
|
|
|
padding: 0.5em;
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
background-color: rgba(200, 40, 40, 0.95);
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-07-21 15:46:53 +02:00
|
|
|
padding: 1em 1em 0.5em;
|
2017-03-28 14:34:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .container {
|
|
|
|
background-color: rgba($baseColor, $baseColor, $baseColor, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeout {
|
|
|
|
from {
|
|
|
|
display: block;
|
|
|
|
height: inherit;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
49% {
|
|
|
|
display: block;
|
|
|
|
height: inherit;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
98% {
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
display: none;
|
|
|
|
height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.identity {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 1em;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.fill {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hash {
|
|
|
|
margin-left: 0.25em;
|
|
|
|
}
|