Get rid of getStyleProperty()

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2024-07-05 10:18:06 +05:00
parent 26435287c1
commit 6f96e37434
Signed by: mctaylors
GPG key ID: 4EEF4F949A266EE2

View file

@ -1,4 +1,3 @@
const root = document.documentElement;
const dialogElement = document.getElementById('dialog');
const detailsElement = document.getElementById('details');
const dialogContentElement = document.getElementById('dialog-content');
@ -11,8 +10,6 @@ window.onload = function() {
}, 1000)
}
const getStyleProperty = (s, p) => getComputedStyle(s).getPropertyValue(p);
function close_button(href) {
clickSoundElement.play();
window.location.href = href;
@ -25,8 +22,8 @@ function details_button() {
dialogElement.animate([
{
opacity: 0,
width: getStyleProperty(root, '--keyframe-hide-dialog-width'),
paddingBottom: getStyleProperty(root, '--keyframe-hide-dialog-padding-bottom'),
width: 'var(--keyframe-hide-dialog-width)',
paddingBottom: 'var(--keyframe-hide-dialog-padding-bottom)',
}
], {
fill: 'forwards',