Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOUR-14000:Home "Title Sections" are not the same as figma #1528

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
FOUR-14000:Home "Title Sections" are not the same as figma
fagubla committed Feb 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 4ad0bb22d26843f242381af4d947e01f6eac21af
9 changes: 6 additions & 3 deletions src/components/renderer/form-analytics-chart.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="card">
<div class="card" :style="customStyle">
<div class="card-header d-flex justify-content-between align-items-center">
<span class="control-text">{{ title }}</span>
<span class="mb-2 mt-2 control-text">{{ title }}</span>
<b-link @click="openExternalLink">
<i class="fas fa-external-link-alt custom-icon" />
</b-link>
@@ -24,7 +24,10 @@ export default {
data() {
return {
title: this.$t("Analytics Chart"),
graphic: []
graphic: [],
customStyle: {
"border-radius": "8px"
}
};
},
watch: {
13 changes: 8 additions & 5 deletions src/components/renderer/form-list-table.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<template>
<div class="card">
<div class="card" :style="customStyle">
<div class="card-header d-flex justify-content-between align-items-center">
<template v-if="dataControl.showControl">
<div class="mb-2">
<div class="mb-1 mt-1">
<b-avatar
v-if="dataControl.showAvatar"
size="2em"
:variant="dataControl.variant"
:text="dataControl.count"
class="avatar-text"
></b-avatar>
<p class="control-text" :style="dataControl.colorText">
<p class="control-text mb-0" :style="dataControl.colorText">
{{ title }}
</p>
<template v-if="dataControl.dropdownShow === 'requests'">
@@ -107,7 +107,7 @@
<div>
<div class="d-flex justify-content-end">
<button
class="btn btn-outline-primary border-0 mr-1"
class="btn btn-outline-secondary border-0 mr-1"
@click="toggleInput(dataControl.dropdownShow)"
>
<i class="fas fa-search" />
@@ -172,7 +172,10 @@ export default {
pmql: "",
badgeVariant: "",
typeSelected: "",
showBadge: false
showBadge: false,
customStyle: {
"border-radius": "8px"
}
};
},
watch: {