Set max-width on network dropdown and ellipsis long network name (#6494)

feature/default_network_editable
Chi Kei Chan 6 years ago committed by GitHub
parent 50fa063c5d
commit ec712d5d8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      ui/app/components/app/app-header/index.scss
  2. 7
      ui/app/css/itcss/components/network.scss

@ -48,7 +48,6 @@
&__contents {
display: flex;
justify-content: space-between;
flex-flow: row nowrap;
width: 100%;
@ -74,17 +73,33 @@
flex-direction: row;
align-items: center;
cursor: pointer;
flex: 0 0 auto;
}
&__account-menu-container {
display: flex;
flex-flow: row nowrap;
align-items: center;
flex: 1 1 auto;
width: 0;
flex-flow: row nowrap;
justify-content: flex-end;
}
&__network-component-wrapper {
display: flex;
flex-direction: row;
align-items: center;
flex: 1 0 auto;
width: 0;
justify-content: flex-end;
.network-component.pointer {
max-width: 200px;
}
.network-indicator {
width: 100%;
}
}
}

@ -51,11 +51,13 @@
line-height: 15px;
font-size: 12px;
padding: 0 4px;
flex: 0 0 auto;
}
.fa-question-circle {
margin: 0 4px 0 6px;
font-size: 1rem;
flex: 0 0 auto;
}
}
@ -63,9 +65,12 @@
padding: 0 4px;
font-family: Roboto;
font-size: 12px;
flex: 1 0 auto;
flex: 1 1 auto;
color: $tundora;
font-weight: 500;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.dropdown-menu-item .fa.delete {

Loading…
Cancel
Save