mirror of https://github.com/vector-im/riot-web
64 lines
1.4 KiB
Plaintext
64 lines
1.4 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ThemeChoicePanel renders the theme choice UI 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_SettingsTab_section mx_ThemeChoicePanel"
|
|
>
|
|
<span
|
|
class="mx_SettingsTab_subheading"
|
|
>
|
|
Theme
|
|
</span>
|
|
<div
|
|
class="mx_ThemeSelectors"
|
|
>
|
|
<label
|
|
class="mx_StyledRadioButton mx_ThemeSelector_light mx_StyledRadioButton_disabled mx_StyledRadioButton_outlined"
|
|
>
|
|
<input
|
|
disabled=""
|
|
id="theme-light"
|
|
name="theme"
|
|
type="radio"
|
|
value="light"
|
|
/>
|
|
<div>
|
|
<div />
|
|
</div>
|
|
<div
|
|
class="mx_StyledRadioButton_content"
|
|
>
|
|
Light
|
|
</div>
|
|
<div
|
|
class="mx_StyledRadioButton_spacer"
|
|
/>
|
|
</label>
|
|
<label
|
|
class="mx_StyledRadioButton mx_ThemeSelector_dark mx_StyledRadioButton_disabled mx_StyledRadioButton_outlined"
|
|
>
|
|
<input
|
|
disabled=""
|
|
id="theme-dark"
|
|
name="theme"
|
|
type="radio"
|
|
value="dark"
|
|
/>
|
|
<div>
|
|
<div />
|
|
</div>
|
|
<div
|
|
class="mx_StyledRadioButton_content"
|
|
>
|
|
Dark
|
|
</div>
|
|
<div
|
|
class="mx_StyledRadioButton_spacer"
|
|
/>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|