Commit a187fe70 authored by Mark Florian's avatar Mark Florian

Merge branch 'ek-replace-m-2-class' into 'master'

Replace `m-2` class with `gl-m-3`

See merge request gitlab-org/gitlab!39929
parents c1da879f 20ac51f6
......@@ -67,7 +67,7 @@ export default {
</script>
<template>
<gl-deprecated-dropdown :text="value">
<gl-search-box-by-type v-model.trim="searchTerm" class="m-2" />
<gl-search-box-by-type v-model.trim="searchTerm" class="gl-m-3" />
<gl-deprecated-dropdown-item
v-for="environment in filteredResults"
:key="environment"
......
......@@ -130,7 +130,7 @@ export default {
<gl-search-box-by-type
v-model.trim="searchQuery"
:placeholder="s__('ClusterIntegration|Search domains')"
class="m-2"
class="gl-m-3"
/>
<gl-deprecated-dropdown-item
v-for="domain in filteredDomains"
......
......@@ -301,7 +301,7 @@ export default {
"
@hide="resetDropdown"
>
<gl-search-box-by-type v-model.trim="searchTerm" class="m-2" />
<gl-search-box-by-type v-model.trim="searchTerm" class="gl-m-3" />
<gl-loading-icon v-if="isFetching" />
......
......@@ -184,7 +184,7 @@ export default {
<gl-search-box-by-type
v-model.trim="searchQuery"
class="m-2"
class="gl-m-3"
:placeholder="this.$options.translations.searchMilestones"
@input="searchMilestones"
/>
......
......@@ -192,7 +192,7 @@ export default {
>
<div class="d-flex flex-column overflow-hidden">
<gl-new-dropdown-header>{{ __('Environment') }}</gl-new-dropdown-header>
<gl-search-box-by-type class="m-2" @input="debouncedEnvironmentsSearch" />
<gl-search-box-by-type class="gl-m-3" @input="debouncedEnvironmentsSearch" />
<gl-loading-icon v-if="environmentsLoading" :inline="true" />
<div v-else class="flex-fill overflow-auto">
......
......@@ -83,7 +83,7 @@ export default {
<gl-search-box-by-type
ref="monitorDashboardsDropdownSearch"
v-model="searchTerm"
class="m-2"
class="gl-m-3"
/>
<div class="flex-fill overflow-auto">
......
......@@ -119,7 +119,7 @@ export default {
<gl-new-dropdown-divider />
<gl-search-box-by-type
v-model.trim="authorInput"
class="m-2"
class="gl-m-3"
:placeholder="__('Search')"
@input="searchAuthors"
/>
......
......@@ -78,7 +78,7 @@ export default {
</template>
<gl-search-box-by-type
v-model.trim="environmentSearch"
class="m-2"
class="gl-m-3"
@input="fetchEnvironments"
/>
<gl-loading-icon v-if="isLoading" />
......
......@@ -49,7 +49,7 @@ export default {
<template>
<gl-deprecated-dropdown :text="dropdownTitle" @show="fetchSyncNamespaces('')">
<gl-search-box-by-type class="m-2" :debounce="500" @input="fetchSyncNamespaces" />
<gl-search-box-by-type class="gl-m-3" :debounce="500" @input="fetchSyncNamespaces" />
<li v-for="namespace in synchronizationNamespaces" :key="namespace.id">
<gl-deprecated-button class="d-flex align-items-center" @click="toggleNamespace(namespace)">
<gl-icon :class="[{ invisible: !isSelected(namespace) }]" name="mobile-issue-close" />
......
......@@ -90,7 +90,7 @@ export default {
v-if="filter.options.length >= 20"
ref="searchBox"
v-model="filterTerm"
class="m-2"
class="gl-m-3"
:placeholder="__('Filter...')"
/>
......
......@@ -369,7 +369,7 @@ export default {
<gl-skeleton-loading
v-for="n in $options.VULNERABILITIES_PER_PAGE"
:key="n"
class="m-2 js-skeleton-loader"
class="gl-m-3 js-skeleton-loader"
:lines="2"
/>
</template>
......
......@@ -214,7 +214,7 @@ export default {
data-track-label="review_app"
@click="ok"
>
<gl-search-box-by-type v-model.trim="changesSearchTerm" class="m-2" />
<gl-search-box-by-type v-model.trim="changesSearchTerm" class="gl-m-3" />
<template #button-content>
{{ s__('VisualReviewApp|Open review app') }}
<gl-icon class="fgray" name="external-link" />
......
......@@ -114,7 +114,7 @@ exports[`JiraImportForm table body shows correct information in each cell 1`] =
<!---->
<div
class="gl-search-box-by-type m-2"
class="gl-search-box-by-type gl-m-3"
>
<svg
class="gl-search-box-by-type-search-icon gl-icon s16"
......@@ -225,7 +225,7 @@ exports[`JiraImportForm table body shows correct information in each cell 1`] =
<!---->
<div
class="gl-search-box-by-type m-2"
class="gl-search-box-by-type gl-m-3"
>
<svg
class="gl-search-box-by-type-search-icon gl-icon s16"
......
......@@ -52,7 +52,7 @@ exports[`Dashboard template matches the default snapshot 1`] = `
</gl-new-dropdown-header-stub>
<gl-search-box-by-type-stub
class="m-2"
class="gl-m-3"
clearbuttontitle="Clear"
value=""
/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment