blob: ed4d1e5e1ae19c0ed22c199a517338a2bd3c1744 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Remove tooltips where unnecessary */
[aria-label^='View the whole file']::before,
[aria-label^='View the whole file']::after,
[aria-label^='Change this file']::before,
[aria-label^='Change this file']::after,
[aria-label='Delete this file']::before,
[aria-label='Delete this file']::after,
[aria-label='Edit this file']::before,
[aria-label='Edit this file']::after,
[aria-label='Edit comment']::before,
[aria-label='Edit comment']::after,
.notification-indicator::before,
.notification-indicator::after {
display: none !important;
}
|