Plugin Directory

Changeset 3327248


Ignore:
Timestamp:
07/14/2025 12:50:30 AM (8 months ago)
Author:
codeisartnet
Message:

update

Location:
codeart-units-converter
Files:
12 added
12 deleted
3 edited
50 copied

Legend:

Unmodified
Added
Removed
  • codeart-units-converter/tags/3.3.2/assets/css/style.css

    r3319313 r3327248  
    4242    background-color: #fafafa;
    4343    transition: border-color 0.2s;
     44    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    4445}
    4546
     
    99100
    100101
    101 /* Responsive design */
     102/* --- COMPACT MOBILE FIX --- */
    102103
    103104@media (max-width: 600px) {
    104105    .CodeArtUnitsConverterContainer {
    105         padding: 20px 15px;
    106     }
    107     .CodeArtUnitsConverterContainer table,
     106        padding: 15px 12px;
     107        border-radius: 10px;
     108        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     109    }
     110    .CodeArtUnitsConverterContainer table {
     111        border-collapse: separate;
     112        border-spacing: 0;
     113    }
    108114    .CodeArtUnitsConverterContainer tbody,
    109     .CodeArtUnitsConverterContainer tr,
     115    .CodeArtUnitsConverterContainer tr {
     116        display: block;
     117        width: 100%;
     118    }
     119    .CodeArtUnitsConverterContainer tr {
     120        margin-bottom: 10px;
     121        background: #fff;
     122        border-bottom: 1px solid #eee;
     123        padding: 0;
     124    }
    110125    .CodeArtUnitsConverterContainer td {
    111126        display: block;
    112         width: 100%;
    113     }
    114     .CodeArtUnitsConverterContainer td {
    115         padding: 8px 0;
    116         border: none;
     127        padding: 6px 0;
     128        width: 100%;
     129        font-size: 14px;
     130        box-sizing: border-box;
     131    }
     132    .CodeArtUnitsConverterContainer td:nth-child(1) {
     133        font-weight: 600;
     134        color: #333;
     135        margin-bottom: 2px;
     136    }
     137    .CodeArtUnitsConverterContainer td:nth-child(2) {
     138        margin: 0;
     139        padding: 0;
    117140    }
    118141    .CodeArtUnitsConverterContainer td:nth-child(3) {
    119         display: none;
     142        display: none !important;
     143        padding: 0 !important;
     144        margin: 0 !important;
     145        height: 0 !important;
     146    }
     147    .CodeArtUnitsConverterContainer input[type="number"] {
     148        width: 100%;
     149        font-size: 14px;
     150        padding: 8px;
     151        margin-bottom: 6px;
    120152    }
    121153    .CodeArtUnitsConverterContainer input.btn,
    122     .CodeArtUnitsConverterContainer input[type="reset"],
    123     .CodeArtUnitsConverterContainer input[type="number"] {
    124         width: 100% !important;
    125     }
    126     .CodeArtUnitsConverterContainer tr {
    127         margin-bottom: 20px;
    128         padding-bottom: 10px;
    129         border-bottom: 1px solid #eee;
    130     }
    131 }
     154    .CodeArtUnitsConverterContainer input[type="reset"] {
     155        font-size: 14px;
     156        padding: 10px;
     157        margin-top: 6px;
     158        width: 100%;
     159    }
     160    .CodeArtUnitsConverterContainer label {
     161        margin-bottom: 0px;
     162    }
     163}
     164
     165
     166/* ----------------- LIST VERSION ------------------ */
    132167
    133168.CodeArtUnitsConverterListContainer {
     
    203238
    204239
    205 /* Responsive */
     240/* COMPACT LIST RESPONSIVE */
    206241
    207242@media (max-width: 600px) {
     243    .CodeArtUnitsConverterListContainer {
     244        padding: 15px 12px;
     245    }
    208246    .CodeArtUnitsConverterListContainer .unit-row {
    209247        flex-direction: column;
    210         gap: 20px;
     248        gap: 16px;
    211249    }
    212250    .CodeArtUnitsConverterListContainer .unit-group {
    213251        width: 100%;
    214252    }
    215 }
     253    .CodeArtUnitsConverterListContainer .unit-group input[type="number"],
     254    .CodeArtUnitsConverterListContainer .unit-group select {
     255        font-size: 14px;
     256        padding: 10px;
     257    }
     258    .CodeArtUnitsConverterListContainer .reset-button {
     259        font-size: 14px;
     260        padding: 10px;
     261        margin-top: 8px;
     262    }
     263}
  • codeart-units-converter/tags/3.3.2/codeart-units-converter.php

    r3319315 r3327248  
    1010 * Text Domain: codeart-units-converter
    1111 * Domain Path: /i18n/languages/
    12  * Version: 3.3.1
     12 * Version: 3.3.2
    1313 * Tested up to: 6.8.1
    1414 */
     
    1919}
    2020
    21 $codeart_units_converter_version = '3.3.1';
     21$codeart_units_converter_version = '3.3.2';
    2222
    2323/**
  • codeart-units-converter/tags/3.3.2/readme.txt

    r3319318 r3327248  
    66Requires PHP: 7.0
    77Tested up to: 6.8.1
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • codeart-units-converter/trunk/assets/css/style.css

    r3319313 r3327248  
    4242    background-color: #fafafa;
    4343    transition: border-color 0.2s;
     44    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    4445}
    4546
     
    99100
    100101
    101 /* Responsive design */
     102/* --- COMPACT MOBILE FIX --- */
    102103
    103104@media (max-width: 600px) {
    104105    .CodeArtUnitsConverterContainer {
    105         padding: 20px 15px;
    106     }
    107     .CodeArtUnitsConverterContainer table,
     106        padding: 15px 12px;
     107        border-radius: 10px;
     108        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     109    }
     110    .CodeArtUnitsConverterContainer table {
     111        border-collapse: separate;
     112        border-spacing: 0;
     113    }
    108114    .CodeArtUnitsConverterContainer tbody,
    109     .CodeArtUnitsConverterContainer tr,
     115    .CodeArtUnitsConverterContainer tr {
     116        display: block;
     117        width: 100%;
     118    }
     119    .CodeArtUnitsConverterContainer tr {
     120        margin-bottom: 10px;
     121        background: #fff;
     122        border-bottom: 1px solid #eee;
     123        padding: 0;
     124    }
    110125    .CodeArtUnitsConverterContainer td {
    111126        display: block;
    112         width: 100%;
    113     }
    114     .CodeArtUnitsConverterContainer td {
    115         padding: 8px 0;
    116         border: none;
     127        padding: 6px 0;
     128        width: 100%;
     129        font-size: 14px;
     130        box-sizing: border-box;
     131    }
     132    .CodeArtUnitsConverterContainer td:nth-child(1) {
     133        font-weight: 600;
     134        color: #333;
     135        margin-bottom: 2px;
     136    }
     137    .CodeArtUnitsConverterContainer td:nth-child(2) {
     138        margin: 0;
     139        padding: 0;
    117140    }
    118141    .CodeArtUnitsConverterContainer td:nth-child(3) {
    119         display: none;
     142        display: none !important;
     143        padding: 0 !important;
     144        margin: 0 !important;
     145        height: 0 !important;
     146    }
     147    .CodeArtUnitsConverterContainer input[type="number"] {
     148        width: 100%;
     149        font-size: 14px;
     150        padding: 8px;
     151        margin-bottom: 6px;
    120152    }
    121153    .CodeArtUnitsConverterContainer input.btn,
    122     .CodeArtUnitsConverterContainer input[type="reset"],
    123     .CodeArtUnitsConverterContainer input[type="number"] {
    124         width: 100% !important;
    125     }
    126     .CodeArtUnitsConverterContainer tr {
    127         margin-bottom: 20px;
    128         padding-bottom: 10px;
    129         border-bottom: 1px solid #eee;
    130     }
    131 }
     154    .CodeArtUnitsConverterContainer input[type="reset"] {
     155        font-size: 14px;
     156        padding: 10px;
     157        margin-top: 6px;
     158        width: 100%;
     159    }
     160    .CodeArtUnitsConverterContainer label {
     161        margin-bottom: 0px;
     162    }
     163}
     164
     165
     166/* ----------------- LIST VERSION ------------------ */
    132167
    133168.CodeArtUnitsConverterListContainer {
     
    203238
    204239
    205 /* Responsive */
     240/* COMPACT LIST RESPONSIVE */
    206241
    207242@media (max-width: 600px) {
     243    .CodeArtUnitsConverterListContainer {
     244        padding: 15px 12px;
     245    }
    208246    .CodeArtUnitsConverterListContainer .unit-row {
    209247        flex-direction: column;
    210         gap: 20px;
     248        gap: 16px;
    211249    }
    212250    .CodeArtUnitsConverterListContainer .unit-group {
    213251        width: 100%;
    214252    }
    215 }
     253    .CodeArtUnitsConverterListContainer .unit-group input[type="number"],
     254    .CodeArtUnitsConverterListContainer .unit-group select {
     255        font-size: 14px;
     256        padding: 10px;
     257    }
     258    .CodeArtUnitsConverterListContainer .reset-button {
     259        font-size: 14px;
     260        padding: 10px;
     261        margin-top: 8px;
     262    }
     263}
  • codeart-units-converter/trunk/codeart-units-converter.php

    r3319315 r3327248  
    1010 * Text Domain: codeart-units-converter
    1111 * Domain Path: /i18n/languages/
    12  * Version: 3.3.1
     12 * Version: 3.3.2
    1313 * Tested up to: 6.8.1
    1414 */
     
    1919}
    2020
    21 $codeart_units_converter_version = '3.3.1';
     21$codeart_units_converter_version = '3.3.2';
    2222
    2323/**
  • codeart-units-converter/trunk/readme.txt

    r3319318 r3327248  
    66Requires PHP: 7.0
    77Tested up to: 6.8.1
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.