Changeset 3410003
- Timestamp:
- 12/03/2025 07:20:29 PM (3 months ago)
- Location:
- xllentech-salat-timings/trunk
- Files:
-
- 3 edited
-
public/css/xllentech-salat-timings-public.css (modified) (6 diffs)
-
readme.txt (modified) (4 diffs)
-
xllentech-salat-timings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xllentech-salat-timings/trunk/public/css/xllentech-salat-timings-public.css
r2521138 r3410003 1 /* Xllentech Salat Timings Monhtly CSS start */ 1 :root { 2 --xst-bg: #fff; 3 --xst-table-bg: #eee; 4 --xst-table-border: #ccc; 5 --xst-nav-bg: #888; 6 --xst-nav-fg: #fff; 7 --xst-header-bg: #aaa; 8 --xst-header-fg: #fff; 9 --xst-present-bg: #FFFDD0; 10 --xst-print-btn-bg: #3366ff; 11 --xst-print-btn-fg: #fff; 12 --xst-print-btn-hover-bg: #fff; 13 --xst-print-btn-hover-fg: #3366ff; 14 --xst-widget-link-bg: #777; 15 --xst-widget-link-fg: #fff; 16 --xst-widget-th-bg: #c5c5c5; 17 --xst-input-bg: #fff; 18 --xst-input-fg: #000; 19 --xst-form-label-fg: #666; 20 --xst-form-submit-bg: #777; 21 --xst-form-submit-fg: #fff; 22 } 23 24 @media (prefers-color-scheme: dark) { 25 :root { 26 --xst-bg: #181818; 27 --xst-table-bg: #222; 28 --xst-table-border: #444; 29 --xst-nav-bg: #444; 30 --xst-nav-fg: #fff; 31 --xst-header-bg: #333; 32 --xst-header-fg: #fff; 33 --xst-present-bg: #333300; 34 --xst-print-btn-bg: #3366ff; 35 --xst-print-btn-fg: #fff; 36 --xst-print-btn-hover-bg: #222; 37 --xst-print-btn-hover-fg: #3366ff; 38 --xst-widget-link-bg: #222; 39 --xst-widget-link-fg: #fff; 40 --xst-widget-th-bg: #333; 41 --xst-input-bg: #222; 42 --xst-input-fg: #eee; 43 --xst-form-label-fg: #ccc; 44 --xst-form-submit-bg: #3366ff; 45 --xst-form-submit-fg: #fff; 46 } 47 } 2 48 .xllentech_salat_widget { 3 49 width: 100%; 4 50 margin: 0 auto; 51 background: var(--xst-bg); 5 52 } 6 53 .xllentech_salat_timings table { … … 8 55 margin: 0 auto; 9 56 font-size: 14px; 10 border: #ccc 1px solid;57 border: 1px solid var(--xst-table-border); 11 58 table-layout: fixed; 59 background: var(--xst-table-bg); 12 60 } 13 61 .xllentech_salat_timings button { … … 18 66 width: 100%; 19 67 border:0; 68 background: var(--xst-form-submit-bg); 69 color: var(--xst-form-submit-fg); 20 70 } 21 71 .xllentech_salat_timings table th { 22 text-align: center;23 font-weight: bold;72 text-align: center; 73 font-weight: bold; 24 74 word-break: break-word; 25 75 padding:0; 76 background: var(--xst-header-bg); 77 color: var(--xst-header-fg); 26 78 } 27 79 .xllentech_salat_timings table td { 28 text-align: center;29 padding: 8px 0px 8px 0px;30 border: #ccc 1px solid;80 text-align: center; 81 padding: 8px 0px 8px 0px; 82 border: 1px solid var(--xst-table-border); 31 83 } 32 84 table.xst_monthly_table_Default tr:nth-child(even) { 33 background-color: #eee;85 background-color: var(--xst-table-bg); 34 86 } 35 87 table.xst_monthly_table_Default tr.xllentech-salat-nav { 36 background: #888;37 color: #fff;88 background: var(--xst-nav-bg); 89 color: var(--xst-nav-fg); 38 90 font-size:20px; 39 91 letter-spacing:2px; 40 92 } 41 93 table.xst_monthly_table_Default tr.xllentech-salat-header { 42 background: #aaa;94 background: var(--xst-header-bg); 43 95 font-size: 15px; 44 color: #fff;96 color: var(--xst-header-fg); 45 97 line-height:25px; 46 98 } 47 99 .xllentech_salat_timings input[type="text"]{ 48 color:#000; 100 color: var(--xst-input-fg); 101 background: var(--xst-input-bg); 49 102 } 50 .xst_present_day {background:#FFFDD0 !important;} 51 .xst_print_button{float:right;} 103 .xst_present_day {background: var(--xst-present-bg) !important;} 104 .xst_print_button { 105 float:right; 106 } 52 107 .xst_print_button button { 53 line-height: 0.25em;54 font-size: 25px;55 color: #fff;56 background-color: #3366ff;57 border: 2px solid #3366ff;58 border-radius: 10px;59 padding: 20px 35px;60 -moz-transition: all 0.8s;61 -webkit-transition: all 0.8s;62 transition: all 0.8s;108 line-height: 0.25em; 109 font-size: 25px; 110 color: var(--xst-print-btn-fg); 111 background-color: var(--xst-print-btn-bg); 112 border: 2px solid var(--xst-print-btn-bg); 113 border-radius: 10px; 114 padding: 20px 35px; 115 -moz-transition: all 0.8s; 116 -webkit-transition: all 0.8s; 117 transition: all 0.8s; 63 118 } 64 119 .xst_print_button button:hover { 65 background-color: #fff;66 color: #3366ff;67 border: 2px solid #3366ff;68 border-radius: 10px;69 padding: 20px 35px;120 background-color: var(--xst-print-btn-hover-bg); 121 color: var(--xst-print-btn-hover-fg); 122 border: 2px solid var(--xst-print-btn-bg); 123 border-radius: 10px; 124 padding: 20px 35px; 70 125 } 71 126 .xst_instructions{float:left;} … … 73 128 .xllentech_salat_timings ul.xst_data_form{list-style:none} 74 129 .xllentech_salat_timings ul.xst_data_form li{width:50%;float:left;min-width:195px} 75 .xllentech_salat_timings ul.xst_data_form li label{width:95px;display:inline-block;padding:10px }76 .xllentech_salat_timings ul.xst_data_form li input,.xllentech_salat_timings ul.xst_data_form li select{border:1px solid #ddd;color:#666;width:60%}130 .xllentech_salat_timings ul.xst_data_form li label{width:95px;display:inline-block;padding:10px;color:var(--xst-form-label-fg);} 131 .xllentech_salat_timings ul.xst_data_form li input,.xllentech_salat_timings ul.xst_data_form li select{border:1px solid var(--xst-table-border);color:var(--xst-form-label-fg);background:var(--xst-input-bg);width:60%} 77 132 .xllentech_salat_timings ul.xst_data_form li.xst_data_submit{width:100%;text-align:center;margin:10px 0} 78 .xllentech_salat_timings ul.xst_data_form li.xst_data_submit input{color: #fff;background:#777}133 .xllentech_salat_timings ul.xst_data_form li.xst_data_submit input{color:var(--xst-form-submit-fg);background:var(--xst-form-submit-bg)} 79 134 /* Xllentech salat Timings Monhtly CSS END */ 80 135 /*Monthly salat Timings Widget CSS START */ … … 94 149 text-align: center; 95 150 line-height: 30px; 96 background-color: #c5c5c5;151 background-color: var(--xst-widget-th-bg); 97 152 } 98 153 table.xst_daily_Default { … … 101 156 .xllentech_salat_widget_link { 102 157 width: 100%; 103 background: #777;104 display: block;105 text-align: center;158 background: var(--xst-widget-link-bg); 159 display: block; 160 text-align: center; 106 161 } 107 162 .xllentech_salat_widget_link a{ 108 163 display: block; 109 width: 100%;110 font-weight: bold;111 color: #fff;112 line-height: 2em;164 width: 100%; 165 font-weight: bold; 166 color: var(--xst-widget-link-fg); 167 line-height: 2em; 113 168 } 114 169 /*Monthly salat Timings Widget CSS END */ 115 170 @media print { 116 body * { 117 visibility: hidden; 118 119 } 120 #printarea, #printarea * { 121 visibility: visible; 122 } 123 #printarea { 124 overflow:visible; 125 position:fixed; 126 left:0; 127 top:0; 128 width:100%; 129 } 130 #printarea table.xst_monthly_table_Default tr:nth-child(odd) { 131 background-color:#ccc; 132 } 171 body * { 172 visibility: hidden; 173 } 174 #printarea, #printarea * { 175 visibility: visible; 176 } 177 #printarea { 178 overflow:visible; 179 position:fixed; 180 left:0; 181 top:0; 182 width:100%; 183 } 184 #printarea table.xst_monthly_table_Default tr:nth-child(odd) { 185 background-color: var(--xst-table-border); 186 } 133 187 } -
xllentech-salat-timings/trunk/readme.txt
r3146724 r3410003 3 3 Tags: prayer times, shia prayer times, prayer timings, shia muslim prayer timings 4 4 Requires at least: 3.0 5 Tested up to: 6. 66 Stable tag: 1.3. 05 Tested up to: 6.9 6 Stable tag: 1.3.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 [Salat Timings Monthly Worldwide by Location](https://www.hussainicalgary.com/events-calendar/salaat-timings-worldwide/) 32 32 33 33 34 You might also be interested in other plugins: 34 35 [Xllentech Calendar Basic](https://wp-plugins.xllentech.com/xllentech-english-islamic-calendar/) … … 36 37 [XllenTech Datepicker Pro](https://wp-plugins.xllentech.com/english-islamic-datepicker/) 37 38 38 Plugin Developed by:39 [IT Support Company Calgary](https://xllentech.com/)40 Our Other IT Services:41 [IT Services Canada][VoIP Phone System](https://xllentech.com/it-services/)42 [Onsite IT Support USA & Canada](https://xllentech.com/about-us/)43 [VoIP Phone System](https://xllentech.com/it-services/voip-phone-system/)44 [Managed IT Services Calgary](https://xllentech.com/it-services/managed-it/)45 [IT Consultancy Calgary](https://xllentech.com/it-services/it-consultancy/)46 [Cyber Security Calgary](https://xllentech.com/it-services/cyber-security-company-calgary/)47 [Online Company Letterhead](https://verifiableletter.com/)48 [Cloud Migration Calgary](https://xllentech.com/it-services/cloud-computing/)49 39 50 40 == Installation == … … 100 90 101 91 == Changelog == 92 = 1.3.1 = 93 * Updated: Dark mode support 94 * Updated: Compatible upto 6.9 95 102 96 = 1.3.0 = 103 97 * Updated: Compatible upto 6.6 -
xllentech-salat-timings/trunk/xllentech-salat-timings.php
r3133558 r3410003 16 16 * Plugin URI: https://wordpress.org/plugins/xllentech-salat-timings/ 17 17 * Description: Display Salat Timings Daily and Monthly for Shia Ithna-Ashari Muslims Around the World 18 * Version: 1.3. 018 * Version: 1.3.1 19 19 * Author: XllenTech Solutions 20 20 * Author URI: https://xllentech.com/ … … 30 30 } 31 31 32 if ( ! defined( "XST_PLUGIN_VERSION" )) define( "XST_PLUGIN_VERSION", "1.3. 0");32 if ( ! defined( "XST_PLUGIN_VERSION" )) define( "XST_PLUGIN_VERSION", "1.3.1"); 33 33 if ( ! defined( "XST_PLUGIN_DIR" )) define( "XST_PLUGIN_DIR", plugin_dir_path( __FILE__ )); 34 34 if ( ! defined( 'XST_PLUGIN_URL' ) ) define( 'XST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.