Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 7x 7x 7x 7x 7x 7x 7x | <script>
import { MSinglexItem } from '../m-singlex.vue';
export default {
name: 'u-navbar-item',
parentName: 'u-navbar',
extends: MSinglexItem,
};
</script>
<style module>
.root {
display: inline-block;
position: relative;
user-select: none;
cursor: var(--cursor-pointer);
text-align: center;
font-size: var(--navbar-item-font-size);
padding: var(--navbar-item-padding);
height: var(--navbar-height);
line-height: var(--navbar-height);
background: var(--navbar-item-background);
color: var(--navbar-item-color);
transition: var(--transition-duration-base);
}
.root:not(:last-child) {
margin-right: var(--navbar-item-space);
}
.root:hover {
background: var(--navbar-item-background-hover);
color: var(--navbar-item-color-hover);
}
.root[readonly] {
cursor: default;
}
.root[selected] {
background: var(--navbar-item-background-selected);
color: var(--navbar-item-color-selected);
}
.root[disabled] {
cursor: var(--cursor-not-allowed);
color: var(--navbar-item-color-disabled);
}
.root [class^="i-ico_lcp-iconv"] {
margin-left: -8px;
margin-right: 8px;
}
</style>
|