Plugin Directory

Changeset 2770181


Ignore:
Timestamp:
08/13/2022 06:28:21 PM (4 years ago)
Author:
eggnstone
Message:

v1.0.25: Improved layout.

Location:
widgets-for-amazon/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • widgets-for-amazon/trunk/README.txt

    r2730337 r2770181  
    77Requires PHP: 7.0 
    88Tested up to: 6.0
    9 Stable tag: 1.0.24
     9Stable tag: 1.0.25
    1010License: GPLv3 or later 
    1111License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5252== Changelog ==
    5353
     54#### 1.0.25 - 2022-08-13
     55
     56- Improved layout.
     57
    5458#### 1.0.24 - 2022-05-25
    5559
    56 - Added support for 404 page.
     60- Added support for 404 pages.
    5761
    5862#### 1.0.17 - 2022-05-21
  • widgets-for-amazon/trunk/css/amazon-search.css

    r2723798 r2770181  
    4848{
    4949    border: 0;
    50     padding: 0 16px 0 0;
     50    padding: 0 8px 0 0;
     51}
     52
     53.amazon-search .input-border
     54{
     55    background: white;
     56    border: 1px solid lightgray;
     57    border-right: none;
     58    border-top-left-radius: 4px;
     59    border-bottom-left-radius: 4px;
     60    padding-left: 8px;
     61    padding-right: 8px;
    5162}
    5263
     
    5566    font-size: 10pt;
    5667    font-family: Arial, sans-serif;
    57     border: 1px solid lightgray;
    58     border-right: none;
    59     border-top-left-radius: 4px;
    60     border-bottom-left-radius: 4px;
     68    border: 0;
    6169    width: 100%;
    62     padding: 8px;
    63     height: 40px;
    64     margin: 0;
     70    height: 36px;
    6571}
    6672
  • widgets-for-amazon/trunk/js/amazon-search.js

    r2730337 r2770181  
    172172        "        <tr>" +
    173173        "          <td class='left-cell'>" +
    174         "            <label>" +
    175         "              <input id='amazon-search-input-" + index + "' value='" + keywords + "'" +
    176         "                onkeyup='eggnstone_widgets_on_search_text_key_up(event.key, \"" + index + "\", \"" + url + "\", \"" + footerMessage + "\");'/>" +
    177         "            </label>" +
     174        "            <div class='input-border'>" +
     175        "              <label>" +
     176        "                <input id='amazon-search-input-" + index + "' value='" + keywords + "'" +
     177        "                  onkeyup='eggnstone_widgets_on_search_text_key_up(event.key, \"" + index + "\", \"" + url + "\", \"" + footerMessage + "\");'/>" +
     178        "              </label>" +
     179        "            </div>" +
    178180        "          </td>" +
    179181        "          <td class='right-cell'>" +
  • widgets-for-amazon/trunk/widgets-for-amazon.php

    r2730337 r2770181  
    55 * Plugin URI: https://blog.eggnstone.com/blog/widgets-for-amazon-for-wordpress
    66 * Description: Widgets for Amazon by eggnstone
    7  * Version: 1.0.24
     7 * Version: 1.0.25
    88 * Author: eggnstone
    99 * Author URI: https://eggnstone.com
Note: See TracChangeset for help on using the changeset viewer.