mirror of https://github.com/Lissy93/dashy.git
Revert "[FIX] Improves item layout, fixes hover bug"
This commit is contained in:
parent
de9b41c76c
commit
30bdf153c3
|
@ -240,8 +240,6 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '@/styles/style-helpers.scss';
|
|
||||||
@import '@/styles/media-queries.scss';
|
|
||||||
|
|
||||||
.item-wrapper {
|
.item-wrapper {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
@ -271,6 +269,10 @@ export default {
|
||||||
box-shadow: var(--item-hover-shadow);
|
box-shadow: var(--item-hover-shadow);
|
||||||
background: var(--item-background-hover);
|
background: var(--item-background-hover);
|
||||||
color: var(--item-text-color-hover);
|
color: var(--item-text-color-hover);
|
||||||
|
position: relative;
|
||||||
|
.tile-title span.text {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: 2px solid var(--primary);
|
outline: 2px solid var(--primary);
|
||||||
|
@ -290,18 +292,11 @@ export default {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-line-clamp: 1;
|
-webkit-line-clamp: 3;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
word-break: keep-all;
|
word-break: keep-all;
|
||||||
&:not(.no-icon) {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
span.text {
|
span.text {
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
|
||||||
display: block;
|
|
||||||
width: -webkit-fill-available;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -376,7 +371,8 @@ export default {
|
||||||
margin-bottom: 0.25rem;
|
margin-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
.tile-title {
|
.tile-title {
|
||||||
width: 100%;
|
min-width: 100px;
|
||||||
|
max-width: 160px;
|
||||||
&.no-icon {
|
&.no-icon {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -402,7 +398,6 @@ export default {
|
||||||
.tile-title {
|
.tile-title {
|
||||||
height: auto;
|
height: auto;
|
||||||
padding: 0.1rem 0.25rem;
|
padding: 0.1rem 0.25rem;
|
||||||
-webkit-line-clamp: 3;
|
|
||||||
span.text {
|
span.text {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -430,28 +425,13 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!-- An un-scoped style tag, since tooltip is outside this DOM tree -->
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
.disabled-link {
|
.disabled-link {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Modifications for more equal width on auto-layout. This is bad code. */
|
|
||||||
.orientation-auto {
|
|
||||||
.collapsable.col-1 .wrap-size-medium {
|
|
||||||
max-width: 50%;
|
|
||||||
}
|
|
||||||
@include tablet-up {
|
|
||||||
.collapsable.col-2 .wrap-size-medium {
|
|
||||||
max-width: 25%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@include tablet-up {
|
|
||||||
.collapsable.col-1 .wrap-size-small {
|
|
||||||
min-width: 50%;
|
|
||||||
}
|
|
||||||
.collapsable.col-2 .wrap-size-small {
|
|
||||||
min-width: 20%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue