mirror of
https://github.com/thejakubruzicka/MNotes.git
synced 2025-07-10 14:34:05 +02:00
New version. Add Material UI implementation with theme customization, about dialog, and news system
This commit is contained in:
parent
5bc9c9bdb1
commit
1d58835a65
190 changed files with 12296 additions and 54 deletions
34
components-wiki/figures/select/usage.html
Normal file
34
components-wiki/figures/select/usage.html
Normal file
|
@ -0,0 +1,34 @@
|
|||
<div class="figure-wrapper">
|
||||
<style>
|
||||
main > .figure-wrapper {
|
||||
/* prevent scrolling bars on dropdown menu open */
|
||||
overflow: visible;
|
||||
/* unset page styles */
|
||||
--md-list-item-container-shape: 0px;
|
||||
}
|
||||
</style>
|
||||
<figure
|
||||
style="justify-content: center; gap: 8px"
|
||||
title="Example usage of an outlined dropdown menu and a filled dropdown menu."
|
||||
aria-label="An outlined dropdown menu filled with Apple, and a filled dropdown menu."
|
||||
>
|
||||
<md-outlined-select>
|
||||
<md-select-option aria-label="blank"></md-select-option>
|
||||
<md-select-option selected value="apple">
|
||||
<div slot="headline">Apple</div>
|
||||
</md-select-option>
|
||||
<md-select-option value="apricot">
|
||||
<div slot="headline">Apricot</div>
|
||||
</md-select-option>
|
||||
</md-outlined-select>
|
||||
<md-filled-select>
|
||||
<md-select-option aria-label="blank"></md-select-option>
|
||||
<md-select-option value="apple">
|
||||
<div slot="headline">Apple</div>
|
||||
</md-select-option>
|
||||
<md-select-option value="apricot">
|
||||
<div slot="headline">Apricot</div>
|
||||
</md-select-option>
|
||||
</md-filled-select>
|
||||
</figure>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue