Added arrows to focused view for clarity
This commit is contained in:
0
analysis/bicorder_analyze.py
Normal file → Executable file
0
analysis/bicorder_analyze.py
Normal file → Executable file
0
analysis/bicorder_batch.py
Normal file → Executable file
0
analysis/bicorder_batch.py
Normal file → Executable file
0
analysis/bicorder_init.py
Normal file → Executable file
0
analysis/bicorder_init.py
Normal file → Executable file
0
analysis/bicorder_query.py
Normal file → Executable file
0
analysis/bicorder_query.py
Normal file → Executable file
0
analysis/multivariate_analysis.py
Normal file → Executable file
0
analysis/multivariate_analysis.py
Normal file → Executable file
0
ascii_bicorder.py
Normal file → Executable file
0
ascii_bicorder.py
Normal file → Executable file
0
bicorder-app/serve-local.sh
Normal file → Executable file
0
bicorder-app/serve-local.sh
Normal file → Executable file
@@ -447,7 +447,7 @@
|
|||||||
|
|
||||||
<div class="gradient-focused">
|
<div class="gradient-focused">
|
||||||
<div class="term-desc left-desc">
|
<div class="term-desc left-desc">
|
||||||
<div class="term-name">{screen.gradient.term_left}</div>
|
<div class="term-name">← {screen.gradient.term_left}</div>
|
||||||
<div class="description-text">{screen.gradient.term_left_description}</div>
|
<div class="description-text">{screen.gradient.term_left_description}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -469,7 +469,7 @@
|
|||||||
{/key}
|
{/key}
|
||||||
|
|
||||||
<div class="term-desc right-desc">
|
<div class="term-desc right-desc">
|
||||||
<div class="term-name">{screen.gradient.term_right}</div>
|
<div class="term-name">{screen.gradient.term_right} →</div>
|
||||||
<div class="description-text">{screen.gradient.term_right_description}</div>
|
<div class="description-text">{screen.gradient.term_right_description}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -482,7 +482,7 @@
|
|||||||
|
|
||||||
<div class="gradient-focused">
|
<div class="gradient-focused">
|
||||||
<div class="term-desc left-desc">
|
<div class="term-desc left-desc">
|
||||||
<div class="term-name">{screen.gradient.term_left}</div>
|
<div class="term-name">← {screen.gradient.term_left}</div>
|
||||||
<div class="description-text">{screen.gradient.term_left_description}</div>
|
<div class="description-text">{screen.gradient.term_left_description}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -506,7 +506,7 @@
|
|||||||
{/key}
|
{/key}
|
||||||
|
|
||||||
<div class="term-desc right-desc">
|
<div class="term-desc right-desc">
|
||||||
<div class="term-name">{screen.gradient.term_right}</div>
|
<div class="term-name">{screen.gradient.term_right} →</div>
|
||||||
<div class="description-text">{screen.gradient.term_right_description}</div>
|
<div class="description-text">{screen.gradient.term_right_description}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-moz-text-size-adjust: 100%;
|
||||||
|
text-size-adjust: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Light mode (default) */
|
/* Light mode (default) */
|
||||||
@@ -45,6 +47,7 @@ body {
|
|||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
|
|||||||
0
bicorder-app/update-diagnostic.sh
Normal file → Executable file
0
bicorder-app/update-diagnostic.sh
Normal file → Executable file
@@ -30,34 +30,28 @@ export default defineConfig({
|
|||||||
display: 'standalone',
|
display: 'standalone',
|
||||||
icons: [
|
icons: [
|
||||||
{
|
{
|
||||||
src: '/icon-192.png',
|
src: 'icon-192.png',
|
||||||
sizes: '192x192',
|
sizes: '192x192',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
purpose: 'any'
|
purpose: 'any maskable'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: '/icon-512.png',
|
src: 'icon-512.png',
|
||||||
sizes: '512x512',
|
sizes: '512x512',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
purpose: 'any'
|
purpose: 'any maskable'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: '/icon-maskable-192.png',
|
src: 'icon-maskable-192.png',
|
||||||
sizes: '192x192',
|
sizes: '192x192',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
purpose: 'maskable'
|
purpose: 'maskable'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: '/icon-maskable-512.png',
|
src: 'icon-maskable-512.png',
|
||||||
sizes: '512x512',
|
sizes: '512x512',
|
||||||
type: 'image/png',
|
type: 'image/png',
|
||||||
purpose: 'maskable'
|
purpose: 'maskable'
|
||||||
},
|
|
||||||
{
|
|
||||||
src: '/icon.svg',
|
|
||||||
sizes: 'any',
|
|
||||||
type: 'image/svg+xml',
|
|
||||||
purpose: 'any'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user