bug: Fixes irregular padding on agent selector in report page (#3593)
* bug: Fixes irregular padding on agent selector in report page * code climate fixes
This commit is contained in:
@@ -51,6 +51,10 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&.multiselect__option--highlight {
|
&.multiselect__option--highlight {
|
||||||
background: var(--white);
|
background: var(--white);
|
||||||
color: var(--color-body);
|
color: var(--color-body);
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
border: 1px solid var(--color-border);
|
border: 1px solid var(--color-border);
|
||||||
}
|
}
|
||||||
|
|
||||||
.display-flex {
|
.reports-option__wrap {
|
||||||
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
@input="changeFilterSelection"
|
@input="changeFilterSelection"
|
||||||
>
|
>
|
||||||
<template slot="singleLabel" slot-scope="props">
|
<template slot="singleLabel" slot-scope="props">
|
||||||
<div class="display-flex">
|
<div class="reports-option__wrap">
|
||||||
<thumbnail
|
<thumbnail
|
||||||
src="props.option.thumbnail"
|
src="props.option.thumbnail"
|
||||||
:username="props.option.name"
|
:username="props.option.name"
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template slot="option" slot-scope="props">
|
<template slot="option" slot-scope="props">
|
||||||
<div class="display-flex">
|
<div class="reports-option__wrap">
|
||||||
<thumbnail
|
<thumbnail
|
||||||
src="props.option.thumbnail"
|
src="props.option.thumbnail"
|
||||||
:username="props.option.name"
|
:username="props.option.name"
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
@input="changeFilterSelection"
|
@input="changeFilterSelection"
|
||||||
>
|
>
|
||||||
<template slot="singleLabel" slot-scope="props">
|
<template slot="singleLabel" slot-scope="props">
|
||||||
<div class="display-flex">
|
<div class="reports-option__wrap">
|
||||||
<div
|
<div
|
||||||
:style="{ backgroundColor: props.option.color }"
|
:style="{ backgroundColor: props.option.color }"
|
||||||
class="reports-option__rounded--item margin-right-small"
|
class="reports-option__rounded--item margin-right-small"
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template slot="option" slot-scope="props">
|
<template slot="option" slot-scope="props">
|
||||||
<div class="display-flex">
|
<div class="reports-option__wrap">
|
||||||
<div
|
<div
|
||||||
:style="{ backgroundColor: props.option.color }"
|
:style="{ backgroundColor: props.option.color }"
|
||||||
class="
|
class="
|
||||||
|
|||||||
Reference in New Issue
Block a user