Update signer to take care of text overflows

This commit is contained in:
Jaco Greeff 2016-11-15 14:32:29 +01:00
parent 19b8b48579
commit a1ec3146eb
4 changed files with 16 additions and 5 deletions

View File

@ -17,6 +17,9 @@
.acc { .acc {
text-align: center; text-align: center;
display: inline-block; display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
} }
.acc > * { .acc > * {
@ -35,10 +38,13 @@
} }
.name { .name {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap; white-space: nowrap;
display: lock; display: block;
vertical-align: middle; vertical-align: middle;
text-transform: uppercase; text-transform: uppercase;
span {
text-overflow: ellipsis;
overflow: hidden;
}
} }

View File

@ -38,7 +38,9 @@
} }
.transactionDetails { .transactionDetails {
margin-right: 321px; padding-right: 321px;
width: 100%;
box-sizing: border-box;
} }
.isConfirmed { .isConfirmed {

View File

@ -19,7 +19,9 @@
} }
.transactionDetails { .transactionDetails {
margin-right: 321px; padding-right: 321px;
width: 100%;
box-sizing: border-box;
} }
.mainContainer { .mainContainer {

View File

@ -15,6 +15,7 @@
/* along with Parity. If not, see <http://www.gnu.org/licenses/>. /* along with Parity. If not, see <http://www.gnu.org/licenses/>.
*/ */
.signer { .signer {
width: 916px;
} }
.pending { .pending {