forked from platypush/platypush
Improved UI on mobile.
This commit is contained in:
parent
6e939bbe62
commit
4f78d61223
5 changed files with 196 additions and 63 deletions
|
@ -1,14 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="entity device-container">
|
<div class="entity device-container">
|
||||||
<div class="head">
|
<div class="head">
|
||||||
<div class="col-1 icon">
|
<div class="icon">
|
||||||
<EntityIcon
|
<EntityIcon
|
||||||
:entity="value"
|
:entity="value"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:error="error" />
|
:error="error" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-11 label">
|
<div class="label">
|
||||||
<div class="name" v-text="value.name" />
|
<div class="name" v-text="value.name" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -58,7 +58,7 @@ export default {
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
hasChildren() {
|
hasChildren() {
|
||||||
return !!Object.keys(this.children).length
|
return !!Object.keys(this.children || {}).length
|
||||||
},
|
},
|
||||||
|
|
||||||
isCollapsed() {
|
isCollapsed() {
|
||||||
|
@ -172,54 +172,4 @@ export default {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import "common";
|
@import "common";
|
||||||
|
|
||||||
.entity-container-wrapper {
|
|
||||||
&.with-children:not(.collapsed) {
|
|
||||||
box-shadow: 0 3px 4px 0 $default-shadow-color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.entity-container {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
position: relative;
|
|
||||||
padding: 0 !important;
|
|
||||||
border-bottom: $default-border-3;
|
|
||||||
|
|
||||||
&.with-children:not(.collapsed) {
|
|
||||||
@include expanded-entity();
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background: $hover-bg;
|
|
||||||
}
|
|
||||||
|
|
||||||
.adjuster {
|
|
||||||
cursor: pointer;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
&.with-children {
|
|
||||||
width: calc(100% - $collapse-toggler-width - 0.5em);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.blink {
|
|
||||||
animation: blink-animation 1s steps(20, start);
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes blink-animation {
|
|
||||||
0% {
|
|
||||||
background: initial
|
|
||||||
}
|
|
||||||
|
|
||||||
50% {
|
|
||||||
background: $active-bg;
|
|
||||||
}
|
|
||||||
|
|
||||||
100% {
|
|
||||||
background: initial
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -409,7 +409,7 @@ export default {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
background: #ffffff00;
|
background: transparent;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -447,6 +447,10 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.groups-container {
|
.groups-container {
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
background: $default-bg-2;
|
||||||
|
}
|
||||||
|
|
||||||
@include until(#{$desktop - 1}) {
|
@include until(#{$desktop - 1}) {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -463,10 +467,13 @@ export default {
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: $main-margin 0;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
break-inside: avoid;
|
break-inside: avoid;
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
@include from($tablet) {
|
@include from($tablet) {
|
||||||
padding: $main-margin;
|
padding: $main-margin;
|
||||||
}
|
}
|
||||||
|
@ -480,8 +487,11 @@ export default {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
position: relative;
|
position: relative;
|
||||||
box-shadow: $group-shadow;
|
|
||||||
border-radius: 1em;
|
@include from($tablet) {
|
||||||
|
border-radius: 1em;
|
||||||
|
box-shadow: $group-shadow;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
|
@ -490,7 +500,14 @@ export default {
|
||||||
display: table;
|
display: table;
|
||||||
background: $header-bg;
|
background: $header-bg;
|
||||||
box-shadow: $header-shadow;
|
box-shadow: $header-shadow;
|
||||||
border-radius: 1em 1em 0 0;
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
border-bottom: 1px solid $border-color-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
border-radius: 1em 1em 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
.section {
|
.section {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -510,23 +527,60 @@ export default {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
text-transform: capitalize;
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
background: $default-bg-2;
|
|
||||||
max-height: calc(100% - #{$header-height});
|
max-height: calc(100% - #{$header-height});
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
||||||
.entity-frame:last-child {
|
@include until(#{$tablet - 1}) {
|
||||||
border-radius: 0 0 1em 1em;
|
background: $default-bg-4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
background: $default-bg-2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entity-frame {
|
||||||
|
background: $background-color;
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
margin: 0.75em 0.25em;
|
||||||
|
border: $default-border-2;
|
||||||
|
border-radius: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
&:last-child {
|
||||||
|
border-radius: 0 0 1em 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.modal) {
|
:deep(.modal) {
|
||||||
@include until($tablet) {
|
@include until(#{$tablet - 1}) {
|
||||||
width: 95%;
|
width: calc(100% - 1em);
|
||||||
|
|
||||||
|
.table-row {
|
||||||
|
border-bottom: 1px solid $border-color-2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-row {
|
||||||
|
.value {
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
|
|
@ -363,6 +363,8 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@import "common";
|
||||||
|
|
||||||
:deep(.modal) {
|
:deep(.modal) {
|
||||||
.body {
|
.body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -467,5 +469,16 @@ export default {
|
||||||
max-height: 5em;
|
max-height: 5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
.entity-container-wrapper {
|
||||||
|
&.collapsed {
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
border-bottom: $default-border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -6,6 +6,64 @@ $collapse-toggler-width: 2em;
|
||||||
background: $selected-bg;
|
background: $selected-bg;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
box-shadow: 0 0 3px 2px $default-shadow-color;
|
box-shadow: 0 0 3px 2px $default-shadow-color;
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
border-radius: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.entity-container {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
padding: 0 !important;
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
border-radius: 1em;
|
||||||
|
|
||||||
|
&:not(:last-child) {
|
||||||
|
border-bottom: $default-border-3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
border-bottom: $default-border-3;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.with-children:not(.collapsed) {
|
||||||
|
@include expanded-entity();
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $hover-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
.adjuster {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&.with-children {
|
||||||
|
width: calc(100% - $collapse-toggler-width - 0.5em);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
.entity-container {
|
||||||
|
.children {
|
||||||
|
border-radius: 0 0 1em 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.child {
|
||||||
|
&:not(:last-child) {
|
||||||
|
.entity-container {
|
||||||
|
border-bottom: $default-border-3;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.entity {
|
.entity {
|
||||||
|
@ -176,3 +234,61 @@ $collapse-toggler-width: 2em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.entity-container-wrapper {
|
||||||
|
&.with-children:not(.collapsed) {
|
||||||
|
box-shadow: 0 3px 4px 0 $default-shadow-color;
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
border-radius: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
.children .child:last-child {
|
||||||
|
box-shadow: 0 3px 4px 0 $default-shadow-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include until(#{$tablet - 1}) {
|
||||||
|
box-shadow: 0 3px 4px 0 $default-shadow-color;
|
||||||
|
|
||||||
|
&.collapsed {
|
||||||
|
border-radius: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.children {
|
||||||
|
.entity-container-wrapper {
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
|
||||||
|
&.with-children:not(.collapsed) {
|
||||||
|
border-radius: 1em;
|
||||||
|
box-shadow: 0 3px 4px 0 $default-shadow-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-radius: 0 0 1em 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blink {
|
||||||
|
animation: blink-animation 1s steps(20, start);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink-animation {
|
||||||
|
0% {
|
||||||
|
background: initial
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
background: $active-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
background: initial
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue