PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.11.0
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.11.0
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | css/library.css +85 -4 3.10.33.11.0 View file →
@@ -137,10 +137,10 @@
137 137 }
138 138 .visualizer-chart-action .tooltip-text::before {
139 139 content: '';
140 140 position: absolute;
141 - display: block;
142 - width: 0px;
141 + display: block;
142 + width: 0px;
143 143 left: 50%;
144 144 top: 0;
145 145 border: 10px solid transparent;
146 146 border-top: 0;
@@ -252,10 +252,10 @@
252 252 color: #FFFFFF;
253 253 justify-content: center;
254 254 }
255 255 .visualizer-sidebar-box .we-offer{
256 - background-color: transparent;
257 - color: #007CBA;
256 + background-color: transparent;
257 + color: #007CBA;
258 258 font-weight: 400;
259 259 padding: 0px;
260 260 font-size: 14px;
261 261 font-style: italic;
@@ -516,5 +516,86 @@
516 516 }
517 517 .visualizer-chart{
518 518 height: calc(100% - 24px);
519 519 }
520 +}
521 +
522 +
523 +
524 +.vizualizer-renew-notice-overlay {
525 + position: fixed;
526 + top: 0;
527 + left: 0;
528 + width: 100%;
529 + height: 100%;
530 + background-color: rgba(0, 0, 0, 0.5);
531 + z-index: 999;
532 +}
533 +
534 +.vizualizer-renew-notice-popup {
535 + display: block;
536 + position: fixed;
537 + top: 50%;
538 + left: 50%;
539 + transform: translate(-50%, -50%);
540 + background-color: #fff;
541 + z-index: 1000;
542 + padding: 20px;
543 + border: 1px solid #ccc;
544 + border-radius: 8px;
545 + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
546 + max-width: 400px;
547 + font-weight: bold;
548 + margin-bottom: 20px;
549 +}
550 +
551 +.vizualizer-renew-notice-heading {
552 + color: #d32f2f;
553 + text-align: left;
554 + margin-bottom: 10px;
555 +}
556 +
557 +.vizualizer-renew-notice-message {
558 + word-wrap: break-word;
559 + width: 250px;
560 +}
561 +
562 +.vizualizer-renew-notice-buttons-container {
563 + display: grid;
564 + grid-template-columns: 1fr;
565 + gap: 10px;
566 + text-align: center;
567 + margin-top: 20px;
568 +}
569 +
570 +.vizualizer-renew-notice-button {
571 + padding: 10px 20px;
572 + cursor: pointer;
573 + color: white;
574 + border: none;
575 + text-align: center;
576 + text-decoration: none;
577 + display: inline-block;
578 + font-size: 16px;
579 + width: 200px;
580 + height: 50px;
581 + border-radius: 4px;
582 + transition: background-color 0.3s;
583 + font-weight: bold;
584 + margin-top: 10px;
585 +}
586 +
587 +.vizualizer-renew-notice-renew-button {
588 + background-color: #008CBA;
589 +}
590 +
591 +.vizualizer-renew-notice-activate-button {
592 + background-color: #4CAF50;
593 +}
594 +
595 +.vizualizer-renew-notice-close-icon {
596 + position: absolute;
597 + top: 10px;
598 + right: 10px;
599 + cursor: pointer;
600 + color: #333;
520 601 }