@@ -466,12 +466,16 @@ const handleViewRawTransactions = () => {
466466 <Flex wrap =" wrap" align =" center" justify =" start" gap =" 8" :class =" $style.filters" >
467467 <Popover :open =" isStatusPopoverOpen" @on-close =" onStatusPopoverClose" width =" 200" >
468468 <Button @click =" handleOpenStatusPopover" type =" secondary" size =" mini" :disabled =" !transactions.length" >
469- <Icon name =" plus-circle" size =" 12" color =" tertiary" />
470- <Text color =" secondary" >Status</Text >
469+ <Icon
470+ name =" plus-circle"
471+ size =" 12"
472+ :color =" Object.keys(filters.status).find((f) => filters.status[f]) ? 'brand' : 'tertiary'"
473+ />
474+ <Text color =" secondary"
475+ >Status<template v-if =" Object .keys (filters .status ).find ((f ) => filters .status [f ])" >:</template ></Text
476+ >
471477
472478 <template v-if =" Object .keys (filters .status ).find ((f ) => filters .status [f ])" >
473- <div :class =" $style.vertical_divider" />
474-
475479 <Text size =" 12" weight =" 600" color =" primary" style =" text-transform : capitalize " >
476480 {{
477481 Object.keys(filters.status)
@@ -486,7 +490,7 @@ const handleViewRawTransactions = () => {
486490
487491 <template #content >
488492 <Flex direction =" column" gap =" 12" >
489- <Text size =" 12" weight =" 500 " color =" secondary" >Filter by Status</Text >
493+ <Text size =" 12" weight =" 600 " color =" secondary" >Filter by Status</Text >
490494
491495 <Flex direction =" column" gap =" 8" >
492496 <Checkbox v-model =" filters.status.success" >
@@ -504,12 +508,18 @@ const handleViewRawTransactions = () => {
504508
505509 <Popover :open =" isMessageTypePopoverOpen" @on-close =" onMessageTypePopoverClose" width =" 250" >
506510 <Button @click =" handleOpenMessageTypePopover" type =" secondary" size =" mini" :disabled =" !transactions.length" >
507- <Icon name =" plus-circle" size =" 12" color =" tertiary" />
508- <Text color =" secondary" >Message Type</Text >
511+ <Icon
512+ name =" plus-circle"
513+ size =" 12"
514+ :color =" Object.keys(filters.message_type).find((f) => filters.message_type[f]) ? 'brand' : 'tertiary'"
515+ />
516+ <Text color =" secondary"
517+ >Message Type<template v-if =" Object .keys (filters .message_type ).find ((f ) => filters .message_type [f ])"
518+ >:</template
519+ ></Text
520+ >
509521
510522 <template v-if =" Object .keys (filters .message_type ).find ((f ) => filters .message_type [f ])" >
511- <div :class =" $style.vertical_divider" />
512-
513523 <Text size =" 12" weight =" 600" color =" primary" >
514524 {{
515525 Object.keys(filters.message_type).filter((f) => filters.message_type[f]).length < 3
@@ -536,7 +546,7 @@ const handleViewRawTransactions = () => {
536546
537547 <template #content >
538548 <Flex direction =" column" gap =" 12" >
539- <Text size =" 12" weight =" 500 " color =" secondary" >Filter by Message Type</Text >
549+ <Text size =" 12" weight =" 600 " color =" secondary" >Filter by Message Type</Text >
540550
541551 <Input v-model =" searchTerm" size =" small" placeholder =" Search" autofocus />
542552
@@ -992,9 +1002,9 @@ const handleViewRawTransactions = () => {
9921002}
9931003
9941004.filters {
995- border-bottom : 1px dashed var (--op-8 );
1005+ border-bottom : 1px solid var (--op-5 );
9961006
997- padding : 4 px 8px 6 px 8px ;
1007+ padding : 12 px 8px 12 px 8px ;
9981008}
9991009
10001010.empty {
0 commit comments