working modal but still munted styles
This commit is contained in:
parent
26869a837b
commit
0052c00f03
3 changed files with 28 additions and 10 deletions
|
@ -10,7 +10,7 @@ body {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 1.2em;
|
font-size: 1.15em;
|
||||||
border: double 3px #ddd;
|
border: double 3px #ddd;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
|
|
|
@ -152,7 +152,7 @@
|
||||||
|
|
||||||
/* instance-specific styles */
|
/* instance-specific styles */
|
||||||
.filter {
|
.filter {
|
||||||
font-size: 80%;
|
font-size: 0.8em;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
line-height: 2.5;
|
line-height: 2.5;
|
||||||
padding: 6px 8px;
|
padding: 6px 8px;
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
// a 'technology' object
|
// a 'technology' object
|
||||||
export let technology;
|
export let technology;
|
||||||
export let affiliate_colours;
|
export let affiliate_colours;
|
||||||
import { Button, Modal, ModalBody, ModalFooter, Popover } from 'yesvelte';
|
import { Modal, ModalBody, ModalFooter, Popover } from 'yesvelte';
|
||||||
|
|
||||||
let showModal = false;
|
let show = false;
|
||||||
|
|
||||||
const formatter = new Intl.ListFormat('en', {
|
const formatter = new Intl.ListFormat('en', {
|
||||||
style: 'long',
|
style: 'long',
|
||||||
|
@ -41,7 +41,8 @@
|
||||||
|
|
||||||
<!-- making a dive act like a button: https://kvack.dev/blog/make-that-div-behave-like-a-button -->
|
<!-- making a dive act like a button: https://kvack.dev/blog/make-that-div-behave-like-a-button -->
|
||||||
|
|
||||||
<button on:click={() => (showModal = !showModal)} tabindex=0 class="tile technology">
|
<button on:click={() => (show = !show)} tabindex=0 class="tile technology">
|
||||||
|
<h2>{technology.name}</h2>
|
||||||
<div class="links">
|
<div class="links">
|
||||||
<span class="website"><a href="{technology.website}" title="Project site for {technology.name}">P</a></span>
|
<span class="website"><a href="{technology.website}" title="Project site for {technology.name}">P</a></span>
|
||||||
{#if technology.repository}<span class="repository"><a
|
{#if technology.repository}<span class="repository"><a
|
||||||
|
@ -50,10 +51,11 @@
|
||||||
href={technology.wikipedia}
|
href={technology.wikipedia}
|
||||||
title="Wikipedia Page for {technology.name}">W</a></span>{/if}
|
title="Wikipedia Page for {technology.name}">W</a></span>{/if}
|
||||||
</div>
|
</div>
|
||||||
<h2>{technology.name}</h2>
|
|
||||||
<p class="description">{technology.description}{#if technology.extended_description}<span
|
<p class="description">{technology.description}{#if technology.extended_description}<span
|
||||||
title={technology.extended_description}>i</span>{/if}
|
title={technology.extended_description}>i</span>{/if}
|
||||||
</p>
|
</p>
|
||||||
|
<div class="details">
|
||||||
{#if technology.categories}<p class="property categories">{pluraliser('Category',
|
{#if technology.categories}<p class="property categories">{pluraliser('Category',
|
||||||
'Categories', technology.categories.length)}: <span class="value">{toOxfordCommaString(technology.categories)}</span></p>{/if}
|
'Categories', technology.categories.length)}: <span class="value">{toOxfordCommaString(technology.categories)}</span></p>{/if}
|
||||||
{#if technology.analogues}<p class="property analogues">Alternative to <span
|
{#if technology.analogues}<p class="property analogues">Alternative to <span
|
||||||
|
@ -61,6 +63,7 @@
|
||||||
{#if technology.license}<p class="property license"
|
{#if technology.license}<p class="property license"
|
||||||
title="The libre license for this project is {technology.license}">License: <span
|
title="The libre license for this project is {technology.license}">License: <span
|
||||||
class="value">{technology.license}</span></p>{/if}
|
class="value">{technology.license}</span></p>{/if}
|
||||||
|
</div>
|
||||||
{#if hasInstances(technology)}
|
{#if hasInstances(technology)}
|
||||||
<div class="instances">
|
<div class="instances">
|
||||||
<p>{#each technology.instances as instance}<a
|
<p>{#each technology.instances as instance}<a
|
||||||
|
@ -75,7 +78,7 @@
|
||||||
{/if}
|
{/if}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<Modal title="{technology.name}" bind:showModal>
|
<Modal title="{technology.name}" bind:show dismissible>
|
||||||
<ModalBody>
|
<ModalBody>
|
||||||
Modal stuff...
|
Modal stuff...
|
||||||
</ModalBody>
|
</ModalBody>
|
||||||
|
@ -98,6 +101,7 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 515px;
|
height: 515px;
|
||||||
|
line-height: 1.2;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
margin-right: 18px;
|
margin-right: 18px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
@ -105,13 +109,14 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
vertical-align: top;
|
vertical-align: top !important;
|
||||||
width: 290px;
|
width: 290px;
|
||||||
}
|
}
|
||||||
.tile .links {
|
.tile .links {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
/*float: right;*/
|
||||||
padding: 2px 6px;
|
padding: 2px 6px;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
@ -133,6 +138,10 @@
|
||||||
color: #fff !important;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
.tile h2 {
|
.tile h2 {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 100%;
|
||||||
background-color: #999;
|
background-color: #999;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
@ -149,9 +158,11 @@
|
||||||
}
|
}
|
||||||
.tile .description {
|
.tile .description {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
|
line-height: 1.2em;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-top: 0.5em;
|
padding-top: 0.5em;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
.tile p {
|
.tile p {
|
||||||
padding: 0 0.7em 0.2em 0.7em;
|
padding: 0 0.7em 0.2em 0.7em;
|
||||||
|
@ -162,15 +173,22 @@
|
||||||
padding: 0.2em 0.7em;
|
padding: 0.2em 0.7em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
.tile .details {
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
.instances {
|
.instances {
|
||||||
background-color: #ddd;
|
background-color: #ddd;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
height: 2.5em;
|
height: 2.5em;
|
||||||
width: 100%;
|
width: 100% !important;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.instances p {
|
||||||
|
width: 100%;
|
||||||
|
padding-top: 0.7em;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.instances p { padding-top: 0.7em; vertical-align: middle; }
|
|
||||||
.instances .marker {
|
.instances .marker {
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue