mirror of
https://github.com/thejakubruzicka/MNotes.git
synced 2025-07-11 06:54:04 +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/theming-outlined.html
Normal file
34
components-wiki/figures/select/theming-outlined.html
Normal file
|
@ -0,0 +1,34 @@
|
|||
<div class="figure-wrapper">
|
||||
<figure
|
||||
class="styled-example outlined"
|
||||
title="Outlined select theming example"
|
||||
aria-label="Image of an outlined select with a different theme applied"
|
||||
>
|
||||
<style>
|
||||
.figure-wrapper figure {
|
||||
padding-block: 16px;
|
||||
}
|
||||
.styled-example {
|
||||
background-color: #f4fbfa;
|
||||
}
|
||||
.styled-example.outlined {
|
||||
--md-outlined-select-text-field-outline-color: #6e7979;
|
||||
--md-outlined-select-text-field-container-shape: 0px;
|
||||
--md-outlined-select-text-field-input-text-color: #005353;
|
||||
--md-outlined-select-text-field-input-text-font: system-ui;
|
||||
}
|
||||
.styled-example.outlined md-outlined-select::part(menu) {
|
||||
--md-menu-container-color: #f4fbfa;
|
||||
--md-menu-container-shape: 0px;
|
||||
}
|
||||
</style>
|
||||
<md-outlined-select>
|
||||
<md-select-option selected value="apple">
|
||||
<div slot="headline">Apple</div>
|
||||
</md-select-option>
|
||||
<md-select-option value="tomato">
|
||||
<div slot="headline">Tomato</div>
|
||||
</md-select-option>
|
||||
</md-outlined-select>
|
||||
</figure>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue