mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
eaa9f759f9
Resolves three different style issues due to overflow of content and addresses an issue where UI was being squished due to available screen real estate. - On the choose account modal, when a user has enough accounts to need to scroll within the account chooser, the last-connected data column was squished. This is resolved by using a tooltip and icon for this data rather than text printed in column. - On the connection permission result screen where it shows the Dapp icon -> Metamask icon, the bottom of the logos and dropshadows were being cut off this was resolved by removing the height set on this element and allowing it to fill the available space. - On the confirmation screen the content appeared off center due to the scrollbar being overlayed instead of auto. This was resolved by removing some of the setting of manual overflow controls on the body element.
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="utf-8">
|
|
<title>MetaMask Notification</title>
|
|
<style>
|
|
#app-content {
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
|
|
#loading__logo {
|
|
width: 10rem;
|
|
height: 10rem;
|
|
align-self: center;
|
|
margin: 10rem 0 0 0;
|
|
}
|
|
|
|
#loading__spinner {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
align-self: center;
|
|
margin-top: 1rem;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" type="text/css" href="./index.css" title="ltr">
|
|
<link rel="stylesheet" type="text/css" href="./index-rtl.css" title="rtl" disabled>
|
|
</head>
|
|
<body class="notification">
|
|
<div id="app-content">
|
|
<img id="loading__logo" src="./images/logo/metamask-fox.svg" />
|
|
<img id="loading__spinner" src="./images/spinner.gif" />
|
|
</div>
|
|
<div id="popover-content"></div>
|
|
<script src="./ui-libs.js" type="text/javascript" charset="utf-8"></script>
|
|
<script src="./ui.js" type="text/javascript" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|