-
{{ col.title }}
+
{{ col.title }}:
{{ col.content || col.content===0 ? col.content : col.fallback || 'n/a' }}
@@ -24,28 +24,14 @@ export default {
.detail-top {
display: flex;
flex-wrap: wrap;
- background: var(--box-bg);
- border: solid thin var(--border);
- border-radius: var(--border-radius);
- justify-content: space-between;
+ border-top: solid thin var(--border);
+ border-bottom: solid thin var(--border);
+ padding: 15px 0;
& > * {
padding: 0 10px;
- margin: 15px 0;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items:center;
- flex-grow:1;
-
& >:first-child {
- padding-bottom: 5px;
color: var(--input-placeholder);
-
- }
-
- &:not(:last-child) {
- border-right: 1px solid var(--border);
}
&:last-child {
diff --git a/components/form/LabeledSelect.stories.js b/components/form/LabeledSelect.stories.js
new file mode 100644
index 0000000000..619e51a832
--- /dev/null
+++ b/components/form/LabeledSelect.stories.js
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+
+ {{ currentLabel }}
+
+
+
+
e.value ? $emit('input', e.value) : $emit('input', e) "
+ @search:focus="searchFocus"
+ @search:blur="searchBlur"
+ @focus="onFocus"
+ @blur="onBlur"
+ >
+
+
+
+
+
+ {{ currentLabel }}
+
+
+ {{ currentLabel }}
+
+
+
+
+
+
+
+
diff --git a/layouts/default.vue b/layouts/default.vue
index 8109f69657..ebcd0f6e19 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -270,7 +270,6 @@ export default {
.actions {
grid-area: actions;
text-align: right;
- padding-top: 10px;
}
}