Plugin Directory

Changeset 2157689


Ignore:
Timestamp:
09/17/2019 08:44:03 AM (7 years ago)
Author:
jschaves
Message:

repare folders

Location:
very-simple-wp-slideshow/tags
Files:
78 added
12 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • very-simple-wp-slideshow/tags/1.0/README.txt

    r2157676 r2157689  
    1 === Very Simple WP MakerMap ===
     1=== Very Simple WP SlideShow Bars ===
    22Contributors: jchaves
    33Version:    1.0
    4 Tags: map, marker, openlayers
     4Tags: slideshow, bars
    55Stable tag: trunk
    66Requires at least: 4.4
     
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Very Simple WP Maker Map
     12Very Simple WP SlideShow
    1313
    1414== Description ==
    1515
    16 Very Simple WP Maker Map is a plugin to create customized map easily by means of a simple form. We use the OpenLayers library and OpenStreetMap.
     16Very Simple WP SlideShow is a plugin to create customized slideshow easily by means of a simple form.
    1717
    1818This is how it works:
     
    2323Installation for General Use
    2424
    25 * Upload the Very Simple WP Maker Map plugin to your blog, activate it, then go to menu Settings and then select VSWP MakerMap.
    26 * In a post or page use the shortcode `[vswpmakermap ID=xxxxxxxxxxx address=xxxxxxxxxxxx]` to create a makermap link.
     25* Upload the Very Simple WP SlideShow plugin to your blog, activate it, then go to menu Settings and then select VSWP SlideShow.
     26* In a post or page use the shortcode `[vswpslideshow ID=xxxxxxxxxxx title=xxxxxxxxxxxx]` to create a slideshow link.
    2727
    2828== Screenshots ==
  • very-simple-wp-slideshow/tags/1.0/admin/css/style.css

    r2157676 r2157689  
    1 .vswpmm-preview-maker-map {
    2     cursor: pointer;
     1/* Popup container - can be anything you want */
     2.vswpss-preview-slideshow {
     3    cursor:pointer;
     4    cursor: hand;
    35}
    4 table.vswpmm-ul-maker-map {
     6* {box-sizing: border-box}
     7.vswpss-slides {
     8    display: none}
     9.vswpss-img {vertical-align: middle;}
     10
     11/* Slideshow container */
     12.vswpss-slideshow-container {
     13  max-width: 1000px;
     14  position: relative;
     15  margin: auto;
     16}
     17
     18/* Next & previous buttons */
     19.vswpss-prev, .vswpss-next {
     20  cursor: pointer;
     21  position: absolute;
     22  top: 50%;
     23  width: auto;
     24  padding: 16px;
     25  margin-top: -22px;
     26  color: white;
     27  font-weight: bold;
     28  font-size: 18px;
     29  transition: 0.6s ease;
     30  border-radius: 0 3px 3px 0;
     31  user-select: none;
     32}
     33
     34/* Position the "next button" to the right */
     35.vswpss-next {
     36  right: 0;
     37  border-radius: 3px 0 0 3px;
     38}
     39
     40/* On hover, add a black background color with a little bit see-through */
     41.vswpss-prev:hover, .vswpss-next:hover {
     42  background-color: rgba(0,0,0,0.8);
     43}
     44
     45/* Caption text */
     46.vswpss-text {
     47  color: #f2f2f2;
     48  font-size: 15px;
     49  padding: 8px 12px;
     50  position: absolute;
     51  bottom: 8px;
     52  width: 100%;
     53  text-align: center;
     54}
     55
     56/* Number text (1/3 etc) */
     57.vswpss-numbertext {
     58  color: #f2f2f2;
     59  font-size: 12px;
     60  padding: 8px 12px;
     61  position: absolute;
     62  top: 0;
     63}
     64
     65/* The dots/bullets/indicators */
     66.vswpss-dot {
     67  cursor: pointer;
     68  height: 15px;
     69  width: 15px;
     70  margin: 0 2px;
     71  background-color: #bbb;
     72  border-radius: 50%;
     73  display: inline-block;
     74  transition: background-color 0.6s ease;
     75}
     76
     77.vswpss-active, .vswpss-dot:hover {
     78  background-color: #717171;
     79}
     80
     81/* Fading animation */
     82.vswpss-fade {
     83  -webkit-animation-name: fade;
     84  -webkit-animation-duration: 1.5s;
     85  animation-name: fade;
     86  animation-duration: 1.5s;
     87}
     88
     89@-webkit-keyframes fade {
     90  from {opacity: .4}
     91  to {opacity: 1}
     92}
     93
     94@keyframes fade {
     95  from {opacity: .4}
     96  to {opacity: 1}
     97}
     98
     99/* On smaller screens, decrease text size */
     100@media only screen and (max-width: 300px) {
     101  .vswpss-prev, .vswpss-next, .vswpss-text {font-size: 11px}
     102}
     103.vswpss-form-slideshow > p.submit {
     104    display: contents;
     105}
     106table.vswpss-ul-slideshow {
    5107    border: 1px solid gray;
    6108}
    7 td.vswpmm-preview-maker-map {
     109
     110td.vswpss-preview-slideshow {
    8111    padding: 16px;
    9112    width: 100%;
    10113}
    11 table.vswpmm-ul-maker-map td {
     114
     115table.vswpss-ul-slideshow td {
    12116    min-width: 5px;
    13117}
    14 #vswpmm-list-maker-map {
    15     height: 600px;
    16     overflow: auto;
    17     width: auto;
    18     border: 1px solid;
    19     padding: 10px;
    20 }
    21 .vswpmm-form-maker-map > p.submit {
    22     display: contents;
    23 }
     118
    24119@media screen and (max-width: 600px) {
    25    table.vswpmm-ul-maker-map tr td:first-child {
     120   table.vswpss-ul-slideshow tr td:first-child {
    26121       font-size: 1.1em;
    27122       padding: 0px;
    28123   }
    29    table.vswpmm-ul-maker-map td {
     124   table.vswpss-ul-slideshow td {
    30125       display: block;
    31126       text-align:center;
    32127       padding: 0px;
    33128   }
    34    table.vswpmm-ul-maker-map td:before {
     129   table.vswpss-ul-slideshow td:before {
    35130       content: attr(data-th);
    36131       display: block;
     
    38133   }
    39134}
    40 .ol-attribution.ol-logo-only,
    41 .ol-attribution.ol-uncollapsible {
    42     max-width: calc(100% - 3em) !important;
    43     height: 1.5em !important;
     135.vswpss-help-slideshow {
     136    color:red;
    44137}
    45 //popup map
    46 .ol-control button,
    47 .ol-attribution,
    48 .ol-scale-line-inner {
    49     font-family: 'Lucida Grande', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif !important;
    50 }
    51 
    52 .ol-popup {
    53     font-family: 'Lucida Grande', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif !important;
    54     font-size: 12px;
    55     position: absolute;
    56     background-color: white;
    57     -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    58     filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    59     padding: 15px;
    60     border-radius: 10px;
    61     border: 1px solid #cccccc;
    62     bottom: 12px;
    63     left: -50px;
    64     min-width: 100px;
    65 }
    66 
    67 .ol-popup:after,
    68 .ol-popup:before {
    69     top: 100%;
    70     border: solid transparent;
    71     content: " ";
    72     height: 0;
    73     width: 0;
    74     position: absolute;
    75     pointer-events: none;
    76 }
    77 .ol-popup:before {
    78     border-top-color: #cccccc;
    79     border-width: 11px;
    80     left: 48px;
    81     margin-left: -11px;
    82 }
    83 
    84 .ol-popup-closer {
    85     text-decoration: none;
    86     position: absolute;
    87     top: 2px;
    88     right: 8px;
    89 }
    90 
    91 .ol-popup-closer:after {
    92     content: "✖";
    93     color: #c3c3c3;
    94 }
  • very-simple-wp-slideshow/tags/1.0/public/css/style.css

    r2157676 r2157689  
    1 .ol-attribution.ol-logo-only,
    2 .ol-attribution.ol-uncollapsible {
    3     max-width: calc(100% - 3em) !important;
    4     height: 1.5em !important;
     1/* Popup container - can be anything you want */
     2.vswpss-preview-slideshow {
     3    cursor:pointer;
     4    cursor: hand;
    55}
    6 .ol-control button,
    7 .ol-attribution,
    8 .ol-scale-line-inner {
    9     font-family: 'Lucida Grande', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif !important;
     6* {box-sizing: border-box}
     7.vswpss-slides {
     8    display: none}
     9.vswpss-img {vertical-align: middle;}
     10
     11/* Slideshow container */
     12.vswpss-slideshow-container {
     13  max-width: 1000px;
     14  position: relative;
     15  margin: auto;
    1016}
     17.vswpss-paint > span {
     18    display: block;
     19}
     20/* Next & previous buttons */
     21.vswpss-prev, .vswpss-next {
     22  cursor: pointer;
     23  position: absolute;
     24  top: 50%;
     25  width: auto;
     26  padding: 16px;
     27  margin-top: -22px;
     28  color: white;
     29  font-weight: bold;
     30  font-size: 18px;
     31  transition: 0.6s ease;
     32  border-radius: 0 3px 3px 0;
     33  user-select: none;
     34}
     35
     36/* Position the "next button" to the right */
     37.vswpss-next {
     38  right: 0;
     39  border-radius: 3px 0 0 3px;
     40}
     41
     42/* On hover, add a black background color with a little bit see-through */
     43.vswpss-prev:hover, .vswpss-next:hover {
     44  background-color: rgba(0,0,0,0.8);
     45}
     46
     47/* Caption text */
     48.vswpss-text {
     49  color: #f2f2f2;
     50  font-size: 15px;
     51  padding: 8px 12px;
     52  position: absolute;
     53  bottom: 8px;
     54  width: 100%;
     55  text-align: center;
     56}
     57
     58/* Number text (1/3 etc) */
     59.vswpss-numbertext {
     60  color: #f2f2f2;
     61  font-size: 12px;
     62  padding: 8px 12px;
     63  position: absolute;
     64  top: 0;
     65}
     66
     67/* The dots/bullets/indicators */
     68.vswpss-dot {
     69  cursor: pointer;
     70  height: 15px;
     71  width: 15px;
     72  margin: 0 2px;
     73  background-color: #bbb;
     74  border-radius: 50%;
     75  display: inline-block;
     76  transition: background-color 0.6s ease;
     77}
     78
     79.vswpss-active, .vswpss-dot:hover {
     80  background-color: #717171;
     81}
     82
     83/* Fading animation */
     84.vswpss-fade {
     85  -webkit-animation-name: fade;
     86  -webkit-animation-duration: 1.5s;
     87  animation-name: fade;
     88  animation-duration: 1.5s;
     89}
     90
     91@-webkit-keyframes fade {
     92  from {opacity: .4}
     93  to {opacity: 1}
     94}
     95
     96@keyframes fade {
     97  from {opacity: .4}
     98  to {opacity: 1}
     99}
     100
     101/* On smaller screens, decrease text size */
     102@media only screen and (max-width: 300px) {
     103  .vswpss-prev, .vswpss-next, .vswpss-text {font-size: 11px}
     104}
     105.vswpss-form-slideshow > p.submit {
     106    display: contents;
     107}
     108table.vswpss-ul-slideshow {
     109    border: 1px solid gray;
     110}
     111
     112td.vswpss-preview-slideshow {
     113    padding: 16px;
     114    width: 100%;
     115}
     116
     117table.vswpss-ul-slideshow td {
     118    min-width: 5px;
     119}
     120
     121@media screen and (max-width: 600px) {
     122   table.vswpss-ul-slideshow tr td:first-child {
     123       font-size: 1.1em;
     124       padding: 0px;
     125   }
     126   table.vswpss-ul-slideshow td {
     127       display: block;
     128       text-align:center;
     129       padding: 0px;
     130   }
     131   table.vswpss-ul-slideshow td:before {
     132       content: attr(data-th);
     133       display: block;
     134       text-align:center;
     135   }
     136}
  • very-simple-wp-slideshow/tags/1.0/uninstall.php

    r2157676 r2157689  
    2121 *
    2222 * @link       https://github.com/jschaves/
    23  * @since      1.0
    24  * @package    very-simple-wp-maker-map
     23 * @since      1.0.0
     24 *
     25 * @package    Very_Simple_Wp_SlideShow
    2526 */
    2627// If uninstall not called from WordPress, then exit.
     
    2930}
    3031// drop a custom database options values
    31 function deleteOptionsMakerMap() {
     32function deleteOptionsSlideShow() {
    3233    global $wpdb;
    3334    $wpdb->query( "
     
    3637            `{$wpdb->options}`
    3738        WHERE
    38             `option_name` LIKE 'very_simple_wp_maker_map_%'
     39            `option_name` LIKE 'very_simple_wp_slideshow_%'
    3940    " );
    4041}
    41 deleteOptionsMakerMap();
     42deleteOptionsSlideShow();
Note: See TracChangeset for help on using the changeset viewer.