Plugin Directory

Changeset 3410003


Ignore:
Timestamp:
12/03/2025 07:20:29 PM (3 months ago)
Author:
xllentech
Message:

1.3.1 update

Location:
xllentech-salat-timings/trunk
Files:
3 edited

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}
    248.xllentech_salat_widget {
    349    width: 100%;
    450    margin: 0 auto;
     51    background: var(--xst-bg);
    552}
    653.xllentech_salat_timings table {
     
    855    margin: 0 auto;
    956    font-size: 14px;
    10     border: #ccc 1px solid;
     57    border: 1px solid var(--xst-table-border);
    1158    table-layout: fixed;
     59    background: var(--xst-table-bg);
    1260}
    1361.xllentech_salat_timings button {
     
    1866    width: 100%;
    1967    border:0;
     68    background: var(--xst-form-submit-bg);
     69    color: var(--xst-form-submit-fg);
    2070}
    2171.xllentech_salat_timings table th {
    22     text-align: center;
    23     font-weight: bold;
     72    text-align: center;
     73    font-weight: bold;
    2474    word-break: break-word;
    2575    padding:0;
     76    background: var(--xst-header-bg);
     77    color: var(--xst-header-fg);
    2678}
    2779.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);
    3183}
    3284table.xst_monthly_table_Default tr:nth-child(even) {
    33     background-color:#eee;
     85    background-color: var(--xst-table-bg);
    3486}
    3587table.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);
    3890    font-size:20px;
    3991    letter-spacing:2px;
    4092}
    4193table.xst_monthly_table_Default tr.xllentech-salat-header {
    42     background: #aaa;
     94    background: var(--xst-header-bg);
    4395    font-size: 15px;
    44     color:#fff;
     96    color: var(--xst-header-fg);
    4597    line-height:25px;
    4698}
    4799.xllentech_salat_timings input[type="text"]{
    48     color:#000;
     100    color: var(--xst-input-fg);
     101    background: var(--xst-input-bg);
    49102}
    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}
    52107.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;
    63118}
    64119.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;
    70125}
    71126.xst_instructions{float:left;}
     
    73128.xllentech_salat_timings ul.xst_data_form{list-style:none}
    74129.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%}
    77132.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)}
    79134/* Xllentech salat Timings Monhtly CSS END */
    80135/*Monthly salat Timings Widget CSS START */
     
    94149    text-align: center;
    95150    line-height: 30px;
    96     background-color: #c5c5c5;
     151    background-color: var(--xst-widget-th-bg);
    97152}
    98153table.xst_daily_Default {
     
    101156.xllentech_salat_widget_link {
    102157    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;
    106161}
    107162.xllentech_salat_widget_link a{
    108163    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;
    113168}
    114169/*Monthly salat Timings Widget CSS END */
    115170@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                }
    133187}
  • xllentech-salat-timings/trunk/readme.txt

    r3146724 r3410003  
    33Tags: prayer times, shia prayer times, prayer timings, shia muslim prayer timings
    44Requires at least: 3.0
    5 Tested up to: 6.6
    6 Stable tag: 1.3.0
     5Tested up to: 6.9
     6Stable tag: 1.3.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131[Salat Timings Monthly Worldwide by Location](https://www.hussainicalgary.com/events-calendar/salaat-timings-worldwide/)
    3232
     33
    3334You might also be interested in other plugins:
    3435[Xllentech Calendar Basic](https://wp-plugins.xllentech.com/xllentech-english-islamic-calendar/)
     
    3637[XllenTech Datepicker Pro](https://wp-plugins.xllentech.com/english-islamic-datepicker/)
    3738
    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/)
    4939
    5040== Installation ==
     
    10090
    10191== Changelog ==
     92= 1.3.1 =
     93* Updated: Dark mode support
     94* Updated: Compatible upto 6.9
     95
    10296= 1.3.0 =
    10397* Updated: Compatible upto 6.6
  • xllentech-salat-timings/trunk/xllentech-salat-timings.php

    r3133558 r3410003  
    1616 * Plugin URI:        https://wordpress.org/plugins/xllentech-salat-timings/
    1717 * Description:       Display Salat Timings Daily and Monthly for Shia Ithna-Ashari Muslims Around the World
    18  * Version:           1.3.0
     18 * Version:           1.3.1
    1919 * Author:            XllenTech Solutions
    2020 * Author URI:        https://xllentech.com/
     
    3030}
    3131
    32 if ( ! defined( "XST_PLUGIN_VERSION" ))     define( "XST_PLUGIN_VERSION",  "1.3.0");
     32if ( ! defined( "XST_PLUGIN_VERSION" ))     define( "XST_PLUGIN_VERSION",  "1.3.1");
    3333if ( ! defined( "XST_PLUGIN_DIR" )) define( "XST_PLUGIN_DIR", plugin_dir_path( __FILE__ ));
    3434if ( ! defined( 'XST_PLUGIN_URL' ) ) define( 'XST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.