Skip to content

Commit b5fb628

Browse files
authored
fix: Enhance filter opacity and color (#4901)
1 parent f63c113 commit b5fb628

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/styles/components/extras.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ a.link-item {
33
display: table;
44

55
&.active {
6-
background-color: rgba(0, 0, 0, .05);
6+
background-color: rgba(0, 0, 0, .1);
77
}
88

99
&:hover {
10-
background-color: rgba(0, 0, 0, .025);
10+
background-color: rgba(0, 0, 0, .05);
1111
}
1212
}

app/templates/public.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<h4>
4949
{{t 'Tracks'}}
5050
<LinkTo @route="public.sessions" @models={{array this.model.id}} @query={{hash track=null}} data-tooltip="{{t 'Clear Track Filter'}}">
51-
<i class="minus circle icon" style={{css color='#f00'}}></i>
51+
<i class="minus circle icon" style={{css color='#555'}}></i>
5252
</LinkTo>
5353
</h4>
5454
{{#each this.model.tracks as |track|}}
@@ -63,7 +63,7 @@
6363
<h4>
6464
{{t 'Rooms'}}
6565
<LinkTo @route="public.sessions" @models={{array this.model.id}} @query={{hash room=null}} data-tooltip="{{t 'Clear Room Filter'}}">
66-
<i class="minus circle icon" style={{css color='#f00'}}></i>
66+
<i class="minus circle icon" style={{css color='#555'}}></i>
6767
</LinkTo>
6868
</h4>
6969
{{#each this.model.microlocations as |room|}}

0 commit comments

Comments
 (0)