diff --git a/frontend/src/assets/style.scss b/frontend/src/assets/style.scss index cbdf64e70..d39213ac0 100644 --- a/frontend/src/assets/style.scss +++ b/frontend/src/assets/style.scss @@ -27,6 +27,7 @@ $primary: #0055d4; $green: #0db35e; $turquoise: $green; $red: #FF5722; + $link: $primary; $input-placeholder-color: $grey-light; $grey-lightest: #eaeaea; @@ -324,6 +325,31 @@ body.is-noscroll { cursor: not-allowed; color: $grey-light; } + + td { + .fields { + font-size: $size-7; + + p { + display: table-row; + border-bottom: 1px solid #ccc; + line-height: 0.775rem; + } + + label { + font-weight: bold; + display: table-cell; + vertical-align: top; + text-align: right; + padding-bottom: 6px; + } + span { + display: inline-block; + margin-left: 10px; + } + } + + } } /* Modal */ @@ -594,8 +620,10 @@ section.dashboard { /* Lists page */ section.lists { - td .tag { - min-width: 65px; + td { + .tag { + min-width: 65px; + } } } @@ -662,26 +690,11 @@ section.campaigns { margin-top: 5px; } - p { - margin: 0 !important; - } - &.lists ul { // font-size: $size-7; list-style-type: circle; } - .fields { - font-size: $size-7; - label { - font-weight: bold; - text-align: right; - min-width: 50px; - margin-right: 10px; - display: inline-block; - } - } - &.draft { color: $grey-lighter; } diff --git a/frontend/src/views/Campaigns.vue b/frontend/src/views/Campaigns.vue index 50579a0d1..f6c97c0cc 100644 --- a/frontend/src/views/Campaigns.vue +++ b/frontend/src/views/Campaigns.vue @@ -99,20 +99,20 @@

- {{ $utils.niceDate(props.row.createdAt, true) }} + {{ $utils.niceDate(props.row.createdAt, true) }}

- {{ $utils.niceDate(stats.startedAt, true) }} + {{ $utils.niceDate(stats.startedAt, true) }}

- {{ $utils.niceDate(stats.updatedAt, true) }} + {{ $utils.niceDate(stats.updatedAt, true) }}

- {{ $utils.duration(stats.startedAt, stats.updatedAt) }} + {{ $utils.duration(stats.startedAt, stats.updatedAt) }}

@@ -121,21 +121,26 @@

- {{ $utils.formatNumber(props.row.views) }} + {{ $utils.formatNumber(props.row.views) }}

- {{ $utils.formatNumber(props.row.clicks) }} + {{ $utils.formatNumber(props.row.clicks) }}

- {{ $utils.formatNumber(stats.sent) }} / {{ $utils.formatNumber(stats.toSend) }} + + {{ $utils.formatNumber(stats.sent) }} / + {{ $utils.formatNumber(stats.toSend) }} +

- - {{ $utils.formatNumber(props.row.bounces) }} - + + + {{ $utils.formatNumber(props.row.bounces) }} + +

@@ -149,7 +154,9 @@ - + + +