1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/css/itcss/components/network.scss
Chi Kei Chan 9a1a207ffa
MetaMorph - Spacing and Typeface on Extension Main view (#6584)
* wip

* Style Update: Mobile App Header

* wip

* Style Update: mobile menu-bar

* Style Update: Primary and Secondary balance on mobile main view

* Style Update: Spacing for transaction-list and transaction-list-item

* Address PR Comments

* Fix full-width view

* line-height fixes
2019-06-12 19:56:04 -07:00

207 lines
3.5 KiB
SCSS

.network-component--disabled {
// border-color: transparent !important;
cursor: not-allowed;
.fa-caret-down {
opacity: 0;
}
}
.network-component.pointer {
border: 2px solid $Grey-200;
border-radius: 82px;
padding: 6px 3px;
flex: 0 0 auto;
display: flex;
&.ethereum-network .menu-icon-circle div {
background-color: rgba(3, 135, 137, .7) !important;
}
&.ropsten-test-network .menu-icon-circle div {
background-color: rgba(233, 21, 80, .7) !important;
}
&.kovan-test-network .menu-icon-circle div {
background-color: rgba(105, 4, 150, .7) !important;
}
&.rinkeby-test-network .menu-icon-circle div {
background-color: rgba(235, 179, 63, .7) !important;
}
&.goerli-test-network .menu-icon-circle div {
background-color: rgba(48, 153, 242, .7) !important;
}
}
.dropdown-menu-item {
.menu-icon-circle,
.menu-icon-circle--active {
margin: 0 14px;
}
}
.network-indicator {
display: flex;
align-items: center;
font-size: .6em;
&__down-arrow {
height: 8px;
width: 12px;
display: block;
background-image: url(/images/icons/caret-down.svg);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin: 0 8px;
}
.fa-question-circle {
margin: 0 4px 0 6px;
font-size: 1rem;
flex: 0 0 auto;
}
}
.network-name {
padding: 0 4px;
font-family: Roboto;
font-size: 12px;
line-height: 14px;
flex: 1 1 auto;
color: $tundora;
font-weight: 500;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
height: 16px;
}
.dropdown-menu-item .fa.delete {
margin-right: 10px;
display: none;
}
.dropdown-menu-item:hover .fa.delete {
display: inherit;
}
.network-droppo {
right: 2px;
@media screen and (min-width: 576px) {
right: calc(((100% - 85vw) / 2) + 2px);
}
@media screen and (min-width: 769px) {
right: calc(((100% - 80vw) / 2) + 2px);
}
@media screen and (min-width: 1281px) {
right: calc(((100% - 65vw) / 2) + 2px);
}
}
.network-name-item {
flex: 1;
color: $dusty-gray;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.network-check,
.network-check__transparent {
color: $white;
margin-left: 7px;
}
.network-check__transparent {
opacity: 0;
width: 16px;
margin: 0;
}
.menu-icon-circle,
.menu-icon-circle--active {
background: none;
border-radius: 22px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid transparent;
margin: 0 4px;
}
.menu-icon-circle--active {
border: 1px solid $white;
background: rgba(100, 100, 100, .4);
}
.menu-icon-circle div,
.menu-icon-circle--active div {
height: 12px;
width: 12px;
border-radius: 17px;
}
.menu-icon-circle--active div {
opacity: 1;
}
.network-dropdown-header {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
.network-dropdown-divider {
width: 100%;
height: 1px;
margin: 10px 0;
background-color: $scorpion;
}
.network-dropdown-title {
height: 25px;
width: 120px;
color: $white;
font-family: Roboto;
font-size: 18px;
line-height: 25px;
text-align: center;
}
.network-dropdown-content {
height: 36px;
width: 265px;
color: $dusty-gray;
font-family: Roboto;
font-size: 14px;
line-height: 18px;
}
.network-caret {
margin: 0 8px;
}
.network-loading-spinner {
display: flex;
flex-flow: row nowrap;
align-items: center;
position: relative;
height: 16px;
width: 16px;
margin-left: 5px;
img {
height: 26px;
position: absolute;
top: -5px;
left: -6px;
}
}