Changeset 3097432
- Timestamp:
- 06/04/2024 01:30:05 PM (22 months ago)
- Location:
- leadee/trunk
- Files:
-
- 5 edited
-
core/api/class-api-helper.php (modified) (1 diff)
-
core/assets/css/main.css (modified) (19 diffs)
-
includes/default_base/advert.txt (modified) (1 diff)
-
leadee.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
leadee/trunk/core/api/class-api-helper.php
r3043744 r3097432 195 195 $dt_from_db_in_utc0 = sanitize_text_field( $lead_data->dt ); 196 196 $dt = new DateTime( $dt_from_db_in_utc0, new DateTimeZone( 'UTC' ) ); 197 $formatted_dt = $dt->format( 'Y-m-d H:i:s' ); 198 $data[ $key ]['dt'] = esc_html( $formatted_dt ); 197 $formatted_dt_ymd = $dt->format( 'Y-m-d' ); 198 $formatted_dt_his = $dt->format( 'H:i:s' ); 199 $data[ $key ]['dt'] = esc_html( $formatted_dt_ymd ) . '<br>' . esc_html( $formatted_dt_his ); 199 200 200 201 // Encode JSON securely -
leadee/trunk/core/assets/css/main.css
r3043744 r3097432 1427 1427 table.dataTable tbody td, table.dataTable tbody th { 1428 1428 height: 50px; 1429 word-wrap: break-word; 1429 1430 } 1430 1431 … … 1481 1482 } 1482 1483 .style-table-1 tr { 1483 background-color: #c4c4c421;1484 background-color: rgba(196, 196, 196, 0.1294117647); 1484 1485 } 1485 1486 .style-table-1 tr th { … … 1507 1508 .header-target { 1508 1509 align-items: center; 1509 background-color: #c4c4c412;1510 background-color: rgba(196, 196, 196, 0.0705882353); 1510 1511 border-radius: 8px; 1511 1512 padding: 15px 15px 15px 0px; … … 1562 1563 } 1563 1564 .target-form ul li { 1564 background-color: #c4c4c412;1565 background-color: rgba(196, 196, 196, 0.0705882353); 1565 1566 border-radius: 8px; 1566 1567 padding: 20px 20px 20px 0px; … … 1731 1732 margin-left: 24px; 1732 1733 } 1733 1734 1734 .calend-footer { 1735 1735 display: flex; 1736 1736 } 1737 1738 1737 .calend-block { 1739 1738 max-height: 70% !important; 1740 1739 } 1741 1742 1740 .top-navbar { 1743 1741 margin-top: 30px; 1744 1742 } 1745 1746 1743 .content-block { 1747 1744 margin-left: 246px; … … 1749 1746 height: 100%; 1750 1747 } 1751 1752 1748 .panel-left, .panel-cover { 1753 1749 position: fixed; 1754 1750 z-index: 9; 1755 1751 } 1756 1757 1752 .header-desktop-content { 1758 1753 display: flex; 1759 1754 } 1760 1761 1755 .header-content { 1762 1756 display: none; 1763 1757 } 1764 1765 1758 .top-navbar .navbar-inner { 1766 1759 justify-content: unset; … … 1769 1762 display: none; 1770 1763 } 1771 1772 1764 .content-block > div { 1773 1765 height: 100%; … … 1789 1781 margin: 20px 30px 20px 35px; 1790 1782 } 1791 1792 1783 ::-webkit-scrollbar { 1793 1784 display: none; 1794 1785 } 1795 1796 1786 .ord1-desktop { 1797 1787 order: 1; 1798 1788 } 1799 1800 1789 .ord2-desktop { 1801 1790 order: 2; 1802 1791 } 1803 1804 1792 .hidden-desktop { 1805 1793 display: none; 1806 1794 } 1807 1808 1795 .device-desktop .panel.panel-left { 1809 1796 display: block !important; … … 1820 1807 order: 1; 1821 1808 } 1822 1823 1809 .ord2-mobile { 1824 1810 order: 2; … … 1885 1871 display: none; 1886 1872 } 1887 1888 1873 .popup-backdrop.backdrop-in { 1889 1874 margin-top: 110px; … … 1978 1963 width: 10%; 1979 1964 } 1980 1981 1965 .swiper-md-20 { 1982 1966 width: 20%; 1983 1967 } 1984 1985 1968 .swiper-md-30 { 1986 1969 width: 30%; 1987 1970 } 1988 1989 1971 .swiper-md-40 { 1990 1972 width: 40%; 1991 1973 } 1992 1993 1974 .swiper-md-50 { 1994 1975 width: 50%; 1995 1976 } 1996 1997 1977 .swiper-md-60 { 1998 1978 width: 60%; 1999 1979 } 2000 2001 1980 .swiper-md-70 { 2002 1981 width: 70%; 2003 1982 } 2004 2005 1983 .swiper-md-80 { 2006 1984 width: 80%; 2007 1985 } 2008 2009 1986 .swiper-md-90 { 2010 1987 width: 90%; 2011 1988 } 2012 2013 1989 .swiper-md-100 { 2014 1990 width: 100%; … … 2019 1995 width: 10%; 2020 1996 } 2021 2022 1997 .swiper-lg-20 { 2023 1998 width: 20%; 2024 1999 } 2025 2026 2000 .swiper-lg-30 { 2027 2001 width: 30%; 2028 2002 } 2029 2030 2003 .swiper-lg-40 { 2031 2004 width: 39%; 2032 2005 } 2033 2034 2006 .swiper-lg-50 { 2035 2007 width: 50%; 2036 2008 } 2037 2038 2009 .swiper-lg-60 { 2039 2010 width: 60%; 2040 2011 } 2041 2042 2012 .swiper-lg-70 { 2043 2013 width: 70%; 2044 2014 } 2045 2046 2015 .swiper-lg-80 { 2047 2016 width: 80%; 2048 2017 } 2049 2050 2018 .swiper-lg-90 { 2051 2019 width: 90%; 2052 2020 } 2053 2054 2021 .swiper-lg-100 { 2055 2022 width: 100%; … … 2064 2031 display: block; 2065 2032 } 2066 2067 2033 .hidden-md { 2068 2034 display: none; … … 2073 2039 display: block; 2074 2040 } 2075 2076 2041 .hidden-lg { 2077 2042 display: none; … … 2085 2050 display: block; 2086 2051 } 2087 2088 2052 .card-content.card-content-padding { 2089 2053 padding: 10px !important; 2090 2054 } 2091 2092 2055 .target-swiper .swiper-slide { 2093 2056 margin-right: 15px; … … 2103 2066 min-height: 210px; 2104 2067 } 2105 2106 2068 .block-counter span { 2107 2069 font-size: 98px; 2108 2070 } 2109 2110 2071 .content-block .card { 2111 2072 padding: 15px; 2112 2073 } 2113 2114 2074 .target-plan { 2115 2075 max-height: 238px !important; … … 2120 2080 bottom: 46px; 2121 2081 } 2122 2123 2082 .leads-from-block { 2124 2083 min-width: 250px; 2125 2084 } 2126 2127 2085 .bottom-slider .swiper-slide { 2128 2086 margin-right: 15px; … … 2131 2089 margin-right: 0px; 2132 2090 } 2133 2134 2091 .main-chart #main-chart { 2135 2092 padding-top: 30px; … … 2164 2121 max-width: 12vw; 2165 2122 } 2166 2167 2123 .title-medium { 2168 2124 font-size: 2.4em; -
leadee/trunk/includes/default_base/advert.txt
r3043744 r3097432 2 2 gclid 3 3 yclid 4 ysclid 4 5 rdt_cid 5 6 msclkid -
leadee/trunk/leadee.php
r3079483 r3097432 6 6 * Plugin URI: https://leadee.io?utm_source=refferal&utm_medium=wp_admin&utm_content=plugin_url 7 7 * Author: Leadee.io 8 * Version: 1.0. 29 * Stable tag: 1.0. 28 * Version: 1.0.3 9 * Stable tag: 1.0.3 10 10 * Tested up to: 6.5 11 11 * Author URI: https://leadee.io?utm_source=refferal&utm_medium=wp_admin&utm_content=author_url … … 24 24 } 25 25 26 define( 'LEADEE_VERSION', '1.0. 2' );26 define( 'LEADEE_VERSION', '1.0.3' ); 27 27 28 28 define( 'LEADEE_PLUGIN', __FILE__ ); -
leadee/trunk/readme.txt
r3079483 r3097432 1 1 === Leadee - Leads Analytics and Message Storage Plugin === 2 2 Contributors: leadeeplugin 3 Stable tag: 1.0. 23 Stable tag: 1.0.3 4 4 Site: https://leadee.io 5 5 Donate link: https://donate.leadee.io … … 68 68 = 1.0.2 - 2024-04-30 = 69 69 * Fix: added menu counter 70 71 = 1.0.3 - 2024-05-21 = 72 * Fix: fix table and base
Note: See TracChangeset
for help on using the changeset viewer.