forked from platypush/platypush
Refactored style for UI dropdowns.
This commit is contained in:
parent
9fd7f7db04
commit
394e27eaf2
2 changed files with 43 additions and 3 deletions
|
@ -26,7 +26,6 @@ export default {
|
|||
},
|
||||
|
||||
iconClass: {
|
||||
type: String,
|
||||
default: 'fa fa-ellipsis-h',
|
||||
},
|
||||
|
||||
|
@ -105,6 +104,16 @@ export default {
|
|||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
|
||||
button {
|
||||
background: $default-bg-2;
|
||||
border: 0;
|
||||
padding: 0.5em;
|
||||
|
||||
&:hover {
|
||||
color: $default-hover-fg;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: absolute;
|
||||
width: max-content;
|
||||
|
@ -117,4 +126,27 @@ export default {
|
|||
z-index: 1;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.dropdown-container) {
|
||||
button {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: $default-fg-2;
|
||||
background: $dropdown-bg;
|
||||
border: 0;
|
||||
padding: 0.75em 0.5em;
|
||||
text-align: left;
|
||||
letter-spacing: 0.01em;
|
||||
|
||||
&:hover {
|
||||
background: $hover-bg;
|
||||
color: $default-fg-2;
|
||||
}
|
||||
|
||||
.text {
|
||||
padding-left: 0.25em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
@ -50,9 +50,12 @@ export default {
|
|||
<style lang="scss" scoped>
|
||||
.item {
|
||||
display: flex;
|
||||
padding: .5em .25em;
|
||||
padding: 0.75em 0.5em;
|
||||
cursor: pointer;
|
||||
align-items: center;
|
||||
color: $default-fg-2;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
|
||||
&:hover {
|
||||
background: $hover-bg;
|
||||
|
@ -67,10 +70,15 @@ export default {
|
|||
cursor: initial;
|
||||
}
|
||||
|
||||
.text {
|
||||
text-align: left;
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 1.5em;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
max-width: 2em;
|
||||
}
|
||||
|
||||
::v-deep(.icon-container) {
|
||||
|
|
Loading…
Reference in a new issue