Skip to content

Commit 50e8b1d

Browse files
authored
Merge pull request #2393 from Particular/john/style-note
Align note style with already established styles
2 parents 0ee7052 + d607986 commit 50e8b1d

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

src/Frontend/src/components/audit/AuditList.vue

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,6 @@ watch(autoRefreshValue, (newValue) => dataRetriever.updateTimeout(newValue));
159159
<div class="row">
160160
<FiltersPanel />
161161
</div>
162-
<div class="row">
163-
<div class="col format-showing-tip">
164-
<div>Use <i class="fa fa-asterisk asterisk" /> as a wildcard. Eg: <i class="fa fa-asterisk asterisk"></i>World! or Hello<i class="fa fa-asterisk asterisk"></i> finds Hello World!</div>
165-
</div>
166-
</div>
167162
<div class="row">
168163
<ResultsCount :displayed="messages.length" :total="totalCount" />
169164
</div>
@@ -302,9 +297,4 @@ watch(autoRefreshValue, (newValue) => dataRetriever.updateTimeout(newValue));
302297
.retry-issued {
303298
background-image: url("@/assets/status_retry_issued.svg");
304299
}
305-
.format-showing-tip {
306-
display: flex;
307-
align-items: flex-end;
308-
font-style: italic;
309-
}
310300
</style>

src/Frontend/src/components/audit/FiltersPanel.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ function findKeyByValue(searchValue: string) {
6060
<div class="filter-label"></div>
6161
<div class="filter-component text-search-container">
6262
<FilterInput v-model="messageFilterString" placeholder="Search messages..." aria-label="Search messages" />
63+
<div class="note">Use <i class="fa fa-asterisk asterisk" /> as a wildcard. Eg: <i class="fa fa-asterisk asterisk"></i>World! or Hello<i class="fa fa-asterisk asterisk"></i> finds Hello World!</div>
6364
</div>
6465
</div>
6566
<div class="filter">
@@ -102,7 +103,7 @@ function findKeyByValue(searchValue: string) {
102103
103104
.filter {
104105
display: flex;
105-
align-items: center;
106+
align-items: start;
106107
}
107108
108109
.filter:last-child {
@@ -112,9 +113,14 @@ function findKeyByValue(searchValue: string) {
112113
113114
.filter-label {
114115
font-weight: bold;
116+
padding-block: 0.375rem;
115117
}
116118
117119
.text-search-container {
118120
width: 25rem;
119121
}
122+
.note {
123+
font-size: 0.875em;
124+
color: var(--bs-secondary-color);
125+
}
120126
</style>

0 commit comments

Comments
 (0)