Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hub/absd
1 result
Show changes
Commits on Source (4)
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
<section> <section>
<h3> <h3>
ORGANISM SPECIES
<button <button
class="select-all-button" class="select-all-button"
:class="{ 'all-selected': allSelected('species', speciesList.length) }" :class="{ 'all-selected': allSelected('species', speciesList.length) }"
...@@ -360,6 +360,10 @@ function removeFilter(filterChip: FilterChip): void { ...@@ -360,6 +360,10 @@ function removeFilter(filterChip: FilterChip): void {
background-color: var(--primary); background-color: var(--primary);
border-color: var(--primary); border-color: var(--primary);
color: var(--black); color: var(--black);
&:hover {
color: var(--black);
}
} }
.checkbox-list { .checkbox-list {
......
...@@ -10,14 +10,14 @@ ...@@ -10,14 +10,14 @@
<meta property="og:url" content="https://absd.pasteur.cloud/"> <meta property="og:url" content="https://absd.pasteur.cloud/">
<meta property="og:title" content="ABSD - AntiBody Sequence Database"> <meta property="og:title" content="ABSD - AntiBody Sequence Database">
<meta property="og:description" content="ABSD is a database gathering antibody sequences, sourced from various repositories like the PDB, GeneBank, IMGT, UniProt, INN, and more."> <meta property="og:description" content="ABSD is a database gathering antibody sequences, sourced from various repositories like the PDB, GeneBank, IMGT, UniProt, INN, and more.">
<meta property="og:image" content="/logo-meta-og.jpg"> <meta property="og:image" content="https://absd.pasteur.cloud/logo-meta-og.jpg">
<meta property="og:image:width" content="1200"> <meta property="og:image:width" content="1200">
<meta property="og:image:height" content="628"> <meta property="og:image:height" content="628">
<meta property="twitter:card" content="summary_large_image"> <meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://absd.pasteur.cloud/"> <meta property="twitter:url" content="https://absd.pasteur.cloud/">
<meta property="twitter:title" content="ABSD - AntiBody Sequence Database"> <meta property="twitter:title" content="ABSD - AntiBody Sequence Database">
<meta property="twitter:description" content="ABSD is a database gathering antibody sequences, sourced from various repositories like the PDB, GeneBank, IMGT, UniProt, INN, and more."> <meta property="twitter:description" content="ABSD is a database gathering antibody sequences, sourced from various repositories like the PDB, GeneBank, IMGT, UniProt, INN, and more.">
<meta property="twitter:image" content="/logo-meta-og.jpg"> <meta property="twitter:image" content="https://absd.pasteur.cloud/logo-meta-og.jpg">
<meta property="twitter:image:width" content="1200"> <meta property="twitter:image:width" content="1200">
<meta property="twitter:image:height" content="628"> <meta property="twitter:image:height" content="628">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
......
...@@ -95,10 +95,10 @@ export interface Statistics { ...@@ -95,10 +95,10 @@ export interface Statistics {
*/ */
export interface APIFilters { export interface APIFilters {
keywords: string keywords: string
species: Array<Antibody['species']> species: Array<string>
sources: Array<FastaHeader['source']> sources: Array<string>
heavySegments: Array<FastaHeader['vGeneSegment']> heavySegments: Array<string>
lightSegments: Array<FastaHeader['vGeneSegment']> lightSegments: Array<string>
motif: string motif: string
} }
...@@ -172,10 +172,10 @@ export interface APIUserMadeArchiveResponse { ...@@ -172,10 +172,10 @@ export interface APIUserMadeArchiveResponse {
* @link https://www.typescriptlang.org/docs/handbook/2/objects.html#excess-property-checks * @link https://www.typescriptlang.org/docs/handbook/2/objects.html#excess-property-checks
*/ */
export type AdvancedFilters = { export type AdvancedFilters = {
species: Array<Antibody['species']> species: Array<string>
sources: Array<FastaHeader['source']> sources: Array<string>
heavySegments: Array<FastaHeader['vGeneSegment']> heavySegments: Array<string>
lightSegments: Array<FastaHeader['vGeneSegment']> lightSegments: Array<string>
motif: string motif: string
} }
......