Skip to content

Commit e98f330

Browse files
committed
UI: Add pointer cursor to filter options and reset button #436
1 parent ed15792 commit e98f330

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

src/app/pages/matrix/matrix.component.css

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,12 @@
3737
margin-bottom: 1em;
3838
position: relative;
3939
}
40+
4041
.mat-cell-activity a.activity-title {
4142
text-decoration: unset;
4243
margin: 0;
4344
}
45+
4446
.mat-cell-activity a::after {
4547
content: "";
4648
position: absolute;
@@ -49,6 +51,7 @@
4951
width: 100%;
5052
height: 100%;
5153
}
54+
5255
.mat-cell-activity a.activity-title:link {
5356
color: inherit;
5457
}
@@ -57,8 +60,9 @@
5760
display: flex;
5861
align-items: center;
5962
gap: 8px;
60-
63+
6164
}
65+
6266
.mat-cell .dim-icon mat-icon {
6367
font-size: 45px;
6468
width: 45px;
@@ -75,6 +79,7 @@
7579
font-style: italic;
7680
font-size: 12px;
7781
}
82+
7883
/*tag activity - light */
7984
:host-context(body.light-theme) .tags-activity,
8085
:host-context(body.light-theme) .tags-activity span {
@@ -89,11 +94,23 @@
8994

9095
.reset-button {
9196
background-color: #66bb6a;
97+
color: rgb(28, 28, 28);
9298
display: block;
9399
margin: 0 20px;
94100
padding: 7px 12px;
95101
border-radius: 16px;
96102
font: 500 14px / 20px Roboto, 'Helvetica Neue', sans-serif;
103+
cursor: pointer;
104+
border: none;
105+
transition: background-color 0.3s ease;
106+
}
107+
108+
.reset-button:hover {
109+
background-color: #4caf50;
110+
}
111+
112+
.mat-chip {
113+
cursor: pointer;
97114
}
98115

99116
.mat-mdc-row .mat-mdc-cell {
@@ -126,4 +143,4 @@
126143
font-size: 16px;
127144
color: rgba(0, 0, 0, 0.54);
128145
padding: 24px;
129-
}
146+
}

0 commit comments

Comments
 (0)