mirror of
https://github.com/mandiant/capa.git
synced 2025-12-31 15:06:17 -08:00
* web explorer: make function count reflective when show-lib-func is toggled on/off * introduce match-count class to mute and minimize match count text labels * fix typo
36 lines
633 B
CSS
36 lines
633 B
CSS
body {
|
|
margin: 0 auto;
|
|
font-weight: normal;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
transition: color 0.15s ease-in-out;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.font-monospace {
|
|
font-family: monospace;
|
|
}
|
|
|
|
.cursor-default {
|
|
cursor: default;
|
|
}
|
|
|
|
/* mute and minimize match count text labels, e.g. "(2 matches)" */
|
|
.match-count {
|
|
font-size: 0.85em;
|
|
color: #6c757d;
|
|
margin-left: 0.2rem;
|
|
}
|
|
|
|
/* remove the border from rows other than rule names */
|
|
.p-treetable-tbody > tr:not(:is([aria-level="1"])) > td {
|
|
border: none !important;
|
|
}
|