1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/css/itcss/components/newui-sections.scss

333 lines
5.5 KiB
SCSS
Raw Normal View History

$sub-mid-size-breakpoint: 667px;
$sub-mid-size-breakpoint-range: "screen and (min-width: #{$break-large}) and (max-width: #{$sub-mid-size-breakpoint})";
2017-08-06 22:24:06 +02:00
/*
NewUI Container Elements
*/
// Component Colors
$tx-view-bg: $white;
2018-01-11 06:09:09 +01:00
$wallet-view-bg: $alabaster;
// Main container
2017-08-06 22:24:06 +02:00
.main-container {
2017-10-13 00:46:09 +02:00
// position: absolute;
2017-08-22 17:37:15 +02:00
z-index: $main-container-z-index;
2017-10-13 00:46:09 +02:00
font-family: Roboto;
2017-08-06 22:24:06 +02:00
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
.main-container::-webkit-scrollbar {
2017-09-05 10:48:52 +02:00
display: none;
2017-08-06 22:24:06 +02:00
}
//Account and transaction details
.account-and-transaction-details {
display: flex;
flex: 1 0 auto;
}
// tx view
2017-08-07 06:54:42 +02:00
.tx-view {
flex: 63.5 0 66.5%;
background: $tx-view-bg;
2017-10-19 23:08:52 +02:00
// No title on mobile
@media screen and (max-width: 575px) {
.identicon-wrapper {
display: none;
}
.account-name {
display: none;
}
}
}
.open-in-browser {
cursor: pointer;
2018-01-18 02:37:18 +01:00
display: flex;
justify-content: center;
padding: 10px;
}
// wallet view and sidebar
2017-08-07 06:54:42 +02:00
.wallet-view {
display: flex;
flex-direction: column;
2018-01-11 06:09:09 +01:00
flex: 32 1 32%;
width: 0;
2017-08-11 09:31:06 +02:00
background: $wallet-view-bg;
2017-10-24 00:57:14 +02:00
z-index: 200;
2017-10-24 08:59:21 +02:00
position: relative;
@media screen and (min-width: 576px) {
overflow-y: scroll;
2017-09-05 10:48:52 +02:00
overflow-x: hidden;
}
@media #{$sub-mid-size-breakpoint-range} {
min-width: 160px;
}
.wallet-view-account-details {
flex: 0 0 auto;
}
&__name-container {
flex: 0 0 auto;
cursor: pointer;
width: 100%;
}
2017-10-24 08:59:21 +02:00
&__keyring-label {
2018-01-11 06:09:09 +01:00
height: 50px;
2017-10-24 08:59:21 +02:00
color: $dusty-gray;
font-family: Roboto;
font-size: 10px;
text-align: right;
2018-01-11 06:09:09 +01:00
padding: 17px 20px 0;
box-sizing: border-box;
2017-10-24 08:59:21 +02:00
}
&__details-button {
font-size: 10px;
2018-01-11 06:09:09 +01:00
border-radius: 17px;
2017-10-24 08:59:21 +02:00
background-color: transparent;
margin: 0 auto;
padding: 4px 12px;
flex: 0 0 auto;
}
&__tooltip {
display: flex;
justify-content: center;
align-items: center;
padding: 24px;
}
2017-10-24 08:59:21 +02:00
&__address {
border-radius: 3px;
background-color: $alto;
color: $scorpion;
font-size: 14px;
line-height: 12px;
padding: 4px 12px;
cursor: pointer;
flex: 0 0 auto;
&__pressed {
background-color: $manatee,
}
2017-10-24 08:59:21 +02:00
}
&__sidebar-close {
@media screen and (max-width: 575px) {
&::after {
content: '\00D7';
font-size: 40px;
color: $tundora;
position: absolute;
2017-10-24 09:13:49 +02:00
top: 12px;
left: 12px;
2017-10-24 08:59:21 +02:00
cursor: pointer;
}
}
}
2017-10-24 09:29:20 +02:00
&__add-token-button {
2017-10-24 10:19:00 +02:00
flex: 0 0 auto;
margin: 36px auto;
2017-10-24 09:29:20 +02:00
background: none;
padding: .7rem 2rem;
transition: border-color .3s ease;
&:hover {
border-color: $curious-blue;
}
2017-10-24 09:29:20 +02:00
}
2017-08-11 09:31:06 +02:00
}
2017-08-31 09:37:42 +02:00
@media screen and (min-width: 576px) {
.wallet-view::-webkit-scrollbar {
display: none;
}
}
2017-08-11 09:31:06 +02:00
.wallet-view-title-wrapper {
flex: 0 0 25px;
2017-08-11 09:31:06 +02:00
}
.wallet-view-title {
margin-left: 15px;
font-size: 16px;
// No title on mobile
@media screen and (max-width: 575px) {
display: none;
}
}
.wallet-view.sidebar {
2017-08-06 22:24:06 +02:00
flex: 1 0 230px;
background: rgb(250, 250, 250);
2017-08-22 17:37:15 +02:00
z-index: $sidebar-z-index;
2017-08-06 22:24:06 +02:00
position: fixed;
top: 66px;
2017-08-14 10:31:27 +02:00
left: 0;
right: 0;
bottom: 0;
2017-08-06 22:24:06 +02:00
opacity: 1;
visibility: visible;
will-change: transform;
overflow-y: auto;
2017-08-14 10:31:27 +02:00
box-shadow: rgba(0, 0, 0, .15) 2px 2px 4px;
2017-08-06 22:24:06 +02:00
width: 85%;
height: calc(100% - 56px);
2017-08-06 22:24:06 +02:00
}
.sidebar-overlay {
2017-08-22 17:37:15 +02:00
z-index: $sidebar-overlay-z-index;
2017-08-06 22:24:06 +02:00
position: fixed;
2017-10-13 00:46:09 +02:00
// top: 41px;
height: 100%;
width: 100%;
2017-08-14 10:31:27 +02:00
left: 0;
right: 0;
bottom: 0;
2017-08-06 22:24:06 +02:00
opacity: 1;
visibility: visible;
2017-08-14 10:31:27 +02:00
background-color: rgba(0, 0, 0, .3);
2017-08-06 22:24:06 +02:00
}
// main-container media queries
2017-08-06 22:24:06 +02:00
@media screen and (min-width: 576px) {
.lap-visible {
display: flex;
}
.phone-visible {
display: none;
}
.main-container {
2017-10-13 00:46:09 +02:00
// margin-top: 6.9vh;
2018-01-11 06:09:09 +01:00
width: 85vw;
2017-08-06 22:24:06 +02:00
height: 90vh;
2017-08-14 10:31:27 +02:00
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
2017-08-06 22:24:06 +02:00
}
}
@media screen and (min-width: 769px) {
.main-container {
2017-10-13 00:46:09 +02:00
// margin-top: 6.9vh;
2018-01-11 06:09:09 +01:00
width: 80vw;
2017-08-06 22:24:06 +02:00
height: 82vh;
2017-08-14 10:31:27 +02:00
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
2017-08-06 22:24:06 +02:00
}
}
@media screen and (min-width: 1281px) {
.main-container {
2017-10-13 00:46:09 +02:00
// margin-top: 6.9vh;
2018-01-11 06:09:09 +01:00
width: 62vw;
2017-08-06 22:24:06 +02:00
height: 82vh;
2017-08-14 10:31:27 +02:00
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
2017-08-06 22:24:06 +02:00
}
}
@media screen and (max-width: 575px) {
.lap-visible {
display: none;
}
.phone-visible {
display: flex;
}
.main-container {
2017-10-13 00:46:09 +02:00
// margin-top: 41px;
height: 100%;
2017-08-06 22:24:06 +02:00
width: 100%;
2017-09-05 10:48:52 +02:00
overflow-y: auto;
background-color: $white;
2017-08-06 22:24:06 +02:00
}
}
// wallet view
.account-name {
2017-10-24 08:59:21 +02:00
font-size: 24px;
2018-01-11 06:09:09 +01:00
color: $black;
2017-10-24 08:59:21 +02:00
margin-top: 8px;
2018-01-11 06:09:09 +01:00
margin-bottom: .9rem;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 100%;
padding: 0 8px;
text-align: center;
}
// account options dropdown
.account-options-menu {
align-items: center;
justify-content: flex-start;
margin: 5% 7% 0%;
2017-08-14 10:31:27 +02:00
}
.fiat-amount {
text-transform: uppercase;
}
.token-balance__amount {
padding-right: 6px;
}
// first time
.first-view-main {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
@media screen and (max-width: 575px) {
height: 100%;
}
@media screen and (min-width: 576px) {
width: 85vw;
}
@media screen and (min-width: 769px) {
width: 80vw;
}
@media screen and (min-width: 1281px) {
width: 62vw;
}
}
.unlock-screen-container {
z-index: $main-container-z-index;
font-family: Roboto;
display: flex;
justify-content: center;
align-items: center;
flex: 1 0 auto;
background: #f7f7f7;
width: 100%;
}
.unlock-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1 0 auto;
}