1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/app/css/itcss/components/newui-sections.scss

282 lines
4.6 KiB
SCSS
Raw Normal View History

2017-08-06 22:24:06 +02:00
/*
NewUI Container Elements
*/
// Component Colors
$tx-view-bg: $white;
$wallet-view-bg: $wild-sand;
// 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
}
// 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;
}
// wallet view and sidebar
2017-08-07 06:54:42 +02:00
.wallet-view {
display: flex;
flex-direction: column;
flex: 33.5 1 33.5%;
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;
}
.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 {
height: 40px;
color: $dusty-gray;
font-family: Roboto;
font-size: 10px;
line-height: 40px;
text-align: right;
padding: 0 20px;
}
&__details-button {
color: $curious-blue;
font-size: 10px;
line-height: 13px;
text-align: center;
border: 1px solid $curious-blue;
border-radius: 10.5px;
background-color: transparent;
margin: 0 auto;
padding: 4px 12px;
flex: 0 0 auto;
}
&__address {
border-radius: 3px;
background-color: $alto;
color: $scorpion;
font-size: 14px;
line-height: 12px;
padding: 4px 12px;
margin: 24px auto;
font-weight: 300;
cursor: pointer;
flex: 0 0 auto;
}
&__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;
2017-10-24 09:29:20 +02:00
color: $dusty-gray;
font-size: 14px;
line-height: 19px;
text-align: center;
2017-10-24 10:19:00 +02:00
margin: 36px auto;
2017-10-24 09:29:20 +02:00
border: 1px solid $dusty-gray;
border-radius: 2px;
font-weight: 300;
background: none;
padding: 9px 30px;
}
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;
2017-10-25 01:55:02 +02:00
top: 56px;
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;
2017-08-06 22:24:06 +02:00
width: 85%;
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;
2017-08-06 22:24:06 +02:00
width: 80%;
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;
2017-08-06 22:24:06 +02:00
width: 65%;
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
}
button.btn-clear {
width: 93px;
2017-08-06 22:24:06 +02:00
height: 50px;
font-size: .7em;
2017-08-14 10:31:27 +02:00
background: $white;
2017-08-06 22:24:06 +02:00
border: 1px solid;
}
}
// wallet view
.account-name {
2017-10-24 08:59:21 +02:00
font-size: 24px;
font-weight: 300;
2017-10-24 08:59:21 +02:00
line-height: 20px;
color: $scorpion;
margin-top: 8px;
margin-bottom: 24px;
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;
}