Ignore photosubjects pointer events in css

Closes #131
This commit is contained in:
jvyden 2022-02-06 17:00:51 -05:00
commit ab86df13a5
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 11 additions and 11 deletions

View file

@ -74,17 +74,6 @@
gtag('config', '@ServerSettings.Instance.GoogleAnalyticsId');
</script>
}
<style>
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
}
canvas.hide-subjects {
opacity: 0;
}
</style>
</head>
<body>
<div class="pageContainer">

View file

@ -12,6 +12,17 @@ div.main {
margin-bottom: 1px;
}
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
pointer-events: none;
}
canvas.hide-subjects {
opacity: 0;
pointer-events: none;
}
/*#region Cards*/
.card {