forked from platypush/platypush
Remaining entity modal style rules moved from Entities
to EntityModal
.
This commit is contained in:
parent
42574d054a
commit
62054e83cc
2 changed files with 47 additions and 47 deletions
|
@ -610,40 +610,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.modal) {
|
|
||||||
@include until(#{$tablet - 1}) {
|
|
||||||
width: calc(100% - 1em);
|
|
||||||
|
|
||||||
.table-row {
|
|
||||||
border-bottom: 1px solid $border-color-2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-row {
|
|
||||||
.value {
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
@include until($tablet) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include from($tablet) {
|
|
||||||
min-width: 30em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.body {
|
|
||||||
padding: 0;
|
|
||||||
|
|
||||||
.table-row {
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.dropdown-container) {
|
:deep(.dropdown-container) {
|
||||||
.dropdown {
|
.dropdown {
|
||||||
min-width: 10em;
|
min-width: 10em;
|
||||||
|
|
|
@ -366,16 +366,56 @@ export default {
|
||||||
@import "common";
|
@import "common";
|
||||||
|
|
||||||
:deep(.modal) {
|
:deep(.modal) {
|
||||||
|
@include until($tablet) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-shadow: none;
|
||||||
|
padding: 0.5em;
|
||||||
|
border-bottom: 1px solid $border-color-2;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $hover-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
width: 50%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
width: 50%;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
@include until($tablet) {
|
||||||
|
width: calc(100% - 1em) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include from($tablet) {
|
||||||
|
min-width: 30em;
|
||||||
|
}
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
@include from($desktop) {
|
@include from($desktop) {
|
||||||
min-width: 45em;
|
min-width: 45em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-row {
|
|
||||||
box-shadow: none;
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -442,12 +482,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.config-container {
|
|
||||||
.title {
|
|
||||||
@include section-title;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.extra-info-container {
|
.extra-info-container {
|
||||||
.value {
|
.value {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
|
Loading…
Reference in a new issue