fixed wp plugin

This commit is contained in:
2025-04-16 16:13:31 +02:00
parent 78ab65fccf
commit 3a7f791fa9
18 changed files with 921 additions and 693 deletions
@@ -0,0 +1,40 @@
/**
* Palantics Admin Styles
*/
.palantics-heading {
color: #007cba;
font-weight: bold;
}
.palantics-methods-container {
background-color: #fff;
padding: 20px;
margin-top: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}
.palantics-method {
margin-bottom: 20px;
}
.palantics-method-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}
.palantics-code-sample {
background-color: #f5f5f5;
padding: 10px;
border-radius: 4px;
font-family: monospace;
margin-top: 5px;
}
.palantics-description {
margin-top: 5px;
font-size: 13px;
color: #666;
}
@@ -0,0 +1,2 @@
<?php
// silence is golden
@@ -0,0 +1,26 @@
/**
* Palantics Tracking Block Styles
*/
.palantics-tracking-block-wrapper {
border: 1px dashed #007cba;
padding: 10px;
position: relative;
}
.palantics-tracking-block-notice {
background: #007cba;
color: white;
padding: 5px 10px;
font-size: 12px;
position: absolute;
top: 0;
right: 0;
border-bottom-left-radius: 4px;
display: flex;
align-items: center;
}
/* Frontend styles */
/*
.palantics-tracking-wrapper {
} */