mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 18:08:14 +08:00
9c7d935aae
* Integrate compound design tokens The icons should not be included in this repo, and should live in the compound design token repo, but for simplicity sake at this phase of the integration they will be added here * Delete unused or incorrect - sass variables * Typography pass * Deprecate _font-weights.pcss and use Compound instead * lint fix * Fix snapshot * Fix typography pass feedback * Remove unwanted e2e test cypress tests should test functionality not visual output. And we should not test visual output by inspecting CSS properties * lintfix * Migration script for baseFontSize * Updates after design review * Update font scaling panel to use min/max size * Fix custom font * Fix font slider e2e test * Update custom font * Update new baseFontSizeV2 * Disambiguate heading props * Fix appearance test * change max font size * fix e2ee test * fix tests * test baseFontSize migration code * typescript strict * Migrate baseFontSize account setting * Change assertion for font size * Fix font size controller test
232 lines
5.3 KiB
Plaintext
232 lines
5.3 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ManualDeviceKeyVerificationDialog should display the device 1`] = `
|
|
<div>
|
|
<div
|
|
data-focus-guard="true"
|
|
style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"
|
|
tabindex="0"
|
|
/>
|
|
<div
|
|
aria-describedby="mx_Dialog_content"
|
|
aria-labelledby="mx_BaseDialog_title"
|
|
class="mx_QuestionDialog mx_Dialog_fixedWidth"
|
|
data-focus-lock-disabled="false"
|
|
role="dialog"
|
|
>
|
|
<div
|
|
class="mx_Dialog_header mx_Dialog_headerWithCancel"
|
|
>
|
|
<h2
|
|
class="mx_Heading_h4 mx_Dialog_title"
|
|
id="mx_BaseDialog_title"
|
|
>
|
|
Verify session
|
|
</h2>
|
|
<div
|
|
aria-label="Close dialog"
|
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="mx_Dialog_content"
|
|
id="mx_Dialog_content"
|
|
>
|
|
<div>
|
|
<p>
|
|
Confirm by comparing the following with the User Settings in your other session:
|
|
</p>
|
|
<div
|
|
class="mx_DeviceVerifyDialog_cryptoSection"
|
|
>
|
|
<ul>
|
|
<li>
|
|
<label>
|
|
Session name
|
|
:
|
|
</label>
|
|
|
|
<span>
|
|
my device
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
Session ID
|
|
:
|
|
</label>
|
|
|
|
<span>
|
|
<code>
|
|
XYZ
|
|
</code>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
Session key
|
|
:
|
|
</label>
|
|
|
|
<span>
|
|
<code>
|
|
<b>
|
|
ABCD EFGH
|
|
</b>
|
|
</code>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<p>
|
|
If they don't match, the security of your communication may be compromised.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="mx_Dialog_buttons"
|
|
>
|
|
<span
|
|
class="mx_Dialog_buttons_row"
|
|
>
|
|
<button
|
|
data-testid="dialog-cancel-button"
|
|
type="button"
|
|
>
|
|
Cancel
|
|
</button>
|
|
<button
|
|
class="mx_Dialog_primary"
|
|
data-testid="dialog-primary-button"
|
|
type="button"
|
|
>
|
|
Verify session
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div
|
|
data-focus-guard="true"
|
|
style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"
|
|
tabindex="0"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`ManualDeviceKeyVerificationDialog should display the device of another user 1`] = `
|
|
<div>
|
|
<div
|
|
data-focus-guard="true"
|
|
style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"
|
|
tabindex="0"
|
|
/>
|
|
<div
|
|
aria-describedby="mx_Dialog_content"
|
|
aria-labelledby="mx_BaseDialog_title"
|
|
class="mx_QuestionDialog mx_Dialog_fixedWidth"
|
|
data-focus-lock-disabled="false"
|
|
role="dialog"
|
|
>
|
|
<div
|
|
class="mx_Dialog_header mx_Dialog_headerWithCancel"
|
|
>
|
|
<h2
|
|
class="mx_Heading_h4 mx_Dialog_title"
|
|
id="mx_BaseDialog_title"
|
|
>
|
|
Verify session
|
|
</h2>
|
|
<div
|
|
aria-label="Close dialog"
|
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="mx_Dialog_content"
|
|
id="mx_Dialog_content"
|
|
>
|
|
<div>
|
|
<p>
|
|
Confirm this user's session by comparing the following with their User Settings:
|
|
</p>
|
|
<div
|
|
class="mx_DeviceVerifyDialog_cryptoSection"
|
|
>
|
|
<ul>
|
|
<li>
|
|
<label>
|
|
Session name
|
|
:
|
|
</label>
|
|
|
|
<span>
|
|
my device
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
Session ID
|
|
:
|
|
</label>
|
|
|
|
<span>
|
|
<code>
|
|
XYZ
|
|
</code>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<label>
|
|
Session key
|
|
:
|
|
</label>
|
|
|
|
<span>
|
|
<code>
|
|
<b>
|
|
ABCD EFGH
|
|
</b>
|
|
</code>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<p>
|
|
If they don't match, the security of your communication may be compromised.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="mx_Dialog_buttons"
|
|
>
|
|
<span
|
|
class="mx_Dialog_buttons_row"
|
|
>
|
|
<button
|
|
data-testid="dialog-cancel-button"
|
|
type="button"
|
|
>
|
|
Cancel
|
|
</button>
|
|
<button
|
|
class="mx_Dialog_primary"
|
|
data-testid="dialog-primary-button"
|
|
type="button"
|
|
>
|
|
Verify session
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div
|
|
data-focus-guard="true"
|
|
style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"
|
|
tabindex="0"
|
|
/>
|
|
</div>
|
|
`;
|