Skip to content

Commit

Permalink
[concepts] fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoPennec committed Dec 18, 2023
1 parent bd3350a commit 5141b8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/tops/ActionPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@
<h2 class="subtitle">
{{ $t('breakdown.all_assets') }}
</h2>
<div class="filters-area flexrow mb2">
<div class="flexrow mb2">
<search-field
ref="entity-search-field"
@change="onEntitySearchChange"
Expand Down
2 changes: 1 addition & 1 deletion src/components/widgets/PeopleField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default {
}
.v-autocomplete {
z-index: 2000;
z-index: 205; // +1 relative to the z-index of c-mask
position: relative;
}
Expand Down
5 changes: 4 additions & 1 deletion src/components/widgets/SearchField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,11 @@ export default {
.search-field {
margin-right: 0.2em;
width: 100%;
}
.search-input {
width: 300px;
width: 100%;
background: inherit;
color: var(--text);
}
Expand Down Expand Up @@ -168,6 +169,8 @@ export default {
}
.search-field-wrapper {
max-width: 420px;
width: 100%;
border: 1px solid #ddd;
border-radius: 2em;
padding: 0.2em 1em;
Expand Down

0 comments on commit 5141b8f

Please sign in to comment.