Plugin Directory

Changeset 2460699


Ignore:
Timestamp:
01/22/2021 12:56:34 AM (5 years ago)
Author:
devlloplugins
Message:

1.0.2.2

Location:
devllo-events/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • devllo-events/trunk/admin/assets/style.css

    r2460035 r2460699  
    22/* Event Edit Page */
    33input#autocomplete {
    4     width: 60%;
    5   }
    6  
     4  width: 60%;
     5}
     6
     7
     8/* Add Ons Page */
     9
     10@media (min-width: 768px){
     11.jumbotron {
     12  padding-top: calc(var(--jumbotron-padding-y) * 2);
     13  padding-bottom: calc(var(--jumbotron-padding-y) * 2);
     14}
     15}
     16
     17.jumbotron {
     18  padding-top: var(--jumbotron-padding-y);
     19  padding-bottom: var(--jumbotron-padding-y);
     20  margin-bottom: 0;
     21  background-color: #fff;
     22}
     23
     24@media (min-width: 576px){
     25.jumbotron {
     26  padding: 4rem 2rem;
     27}}
     28
     29.jumbotron {
     30  padding: 2rem 1rem;
     31  margin-bottom: 2rem;
     32  background-color: #e9ecef;
     33  border-radius: .3rem;
     34}
     35
     36.jumbotron .container {
     37  max-width: 40rem;
     38}
     39
     40@media (min-width: 1200px){
     41  .jumbotron .container {
     42  max-width: 1140px;
     43}
     44}
     45
     46@media (min-width: 992px){
     47  .jumbotron .container {
     48  max-width: 960px;
     49}
     50}
     51
     52.jumbotron .container {
     53  width: 100%;
     54  padding-right: 15px;
     55  padding-left: 15px;
     56  margin-right: auto;
     57  margin-left: auto;
     58}
     59
     60.jumbotron-heading {
     61  font-weight: 300;
     62}
     63
     64.jumbotron {
     65  text-align: center;
     66}
     67
     68.text-muted {
     69  color: #82b359!important;
     70}
     71
     72.lead {
     73  font-size: 1.25rem;
     74  font-weight: 300;
     75}
     76
     77.jumbotron p:last-child {
     78  margin-bottom: 0;
     79}
     80
     81.btn:not(:disabled):not(.disabled) {
     82  cursor: pointer;
     83}
     84.mb-2, .my-2 {
     85  margin-bottom: .5rem!important;
     86}
     87.mt-2, .my-2 {
     88  margin-top: .5rem!important;
     89}
     90.btn-primary {
     91  color: #fff;
     92  background-color: #82b359;
     93  border-color: #82b359;
     94}
     95.jumbotron .btn {
     96  display: inline-block;
     97  font-weight: 400;
     98  text-align: center;
     99  white-space: nowrap;
     100  vertical-align: middle;
     101  -webkit-user-select: none;
     102  -moz-user-select: none;
     103  -ms-user-select: none;
     104  user-select: none;
     105  border: 1px solid transparent;
     106  padding: .375rem .75rem;
     107  font-size: 1rem;
     108  line-height: 1.5;
     109  border-radius: .25rem;
     110  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
     111}
     112
     113.jumbotron .btn-secondary {
     114  color: #fff;
     115  background-color: #82b359;
     116  border-color: #82b359;
     117}
     118
     119.addons-container {
     120display: grid;
     121grid-template-columns: repeat(3, 1fr);
     122grid-template-rows: 1fr;
     123grid-column-gap: 30px;
     124grid-row-gap: 30px;
     125}
  • devllo-events/trunk/admin/class-devllo-events-addons-page.php

    r2460035 r2460699  
    127127
    128128?>
    129 
    130 <style>
    131     @media (min-width: 768px){
    132 .jumbotron {
    133     padding-top: calc(var(--jumbotron-padding-y) * 2);
    134     padding-bottom: calc(var(--jumbotron-padding-y) * 2);
    135 }
    136 }
    137 
    138 .jumbotron {
    139     padding-top: var(--jumbotron-padding-y);
    140     padding-bottom: var(--jumbotron-padding-y);
    141     margin-bottom: 0;
    142     background-color: #fff;
    143 }
    144 
    145 @media (min-width: 576px){
    146 .jumbotron {
    147     padding: 4rem 2rem;
    148 }}
    149 
    150 .jumbotron {
    151     padding: 2rem 1rem;
    152     margin-bottom: 2rem;
    153     background-color: #e9ecef;
    154     border-radius: .3rem;
    155 }
    156 
    157 .jumbotron .container {
    158     max-width: 40rem;
    159 }
    160 
    161 @media (min-width: 1200px){
    162     .jumbotron .container {
    163     max-width: 1140px;
    164 }
    165 }
    166 
    167 @media (min-width: 992px){
    168     .jumbotron .container {
    169     max-width: 960px;
    170 }
    171 }
    172 
    173 .jumbotron .container {
    174     width: 100%;
    175     padding-right: 15px;
    176     padding-left: 15px;
    177     margin-right: auto;
    178     margin-left: auto;
    179 }
    180 
    181 .jumbotron-heading {
    182     font-weight: 300;
    183 }
    184 
    185 .jumbotron {
    186     text-align: center;
    187 }
    188 
    189 .text-muted {
    190     color: ##82b359!important;
    191 }
    192 .lead {
    193     font-size: 1.25rem;
    194     font-weight: 300;
    195 }
    196 
    197 .jumbotron p:last-child {
    198     margin-bottom: 0;
    199 }
    200 
    201 .btn:not(:disabled):not(.disabled) {
    202     cursor: pointer;
    203 }
    204 .mb-2, .my-2 {
    205     margin-bottom: .5rem!important;
    206 }
    207 .mt-2, .my-2 {
    208     margin-top: .5rem!important;
    209 }
    210 .btn-primary {
    211     color: #fff;
    212     background-color: #82b359;
    213     border-color: #82b359;
    214 }
    215 .jumbotron .btn {
    216     display: inline-block;
    217     font-weight: 400;
    218     text-align: center;
    219     white-space: nowrap;
    220     vertical-align: middle;
    221     -webkit-user-select: none;
    222     -moz-user-select: none;
    223     -ms-user-select: none;
    224     user-select: none;
    225     border: 1px solid transparent;
    226     padding: .375rem .75rem;
    227     font-size: 1rem;
    228     line-height: 1.5;
    229     border-radius: .25rem;
    230     transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    231 }
    232 
    233 .jumbotron .btn-secondary {
    234     color: #fff;
    235     background-color: #82b359;
    236     border-color: #82b359;
    237 }
    238 
    239 .addons-container {
    240 display: grid;
    241 grid-template-columns: repeat(3, 1fr);
    242 grid-template-rows: 1fr;
    243 grid-column-gap: 30px;
    244 grid-row-gap: 30px;
    245 }
    246 
    247 </style>
  • devllo-events/trunk/devllo-events.php

    r2460048 r2460699  
    55 *   Description: This is a simple Event Management plugin for adding and listing your events, show event locations on map, link to online Event locations. It also integrates with FullCalendar to show a calendar with all events.
    66 *   Author: Devllo Plugins
    7  *   Version: 1.0.2.1
     7 *   Version: 1.0.2.2
    88 *   Author URI: https://devllo.com/
    99 *   License:    GPL-2.0+
  • devllo-events/trunk/readme.txt

    r2460048 r2460699  
    55Tested up to: 5.6
    66Requires PHP: 5.5
    7 Stable tag: 1.0.2.1
     7Stable tag: 1.0.2.2
    88License: GPLv2 or later
    99
     
    4646
    4747== Changelog ==
     48= 1.0.2.2 - 22/01/2021 =
     49BUG FIX: Fixed Gutenberg Publish/Update Error
     50
    4851= 1.0.2.1 - 21/01/2021 =
    4952BUG FIX: Fix Add On Menu
Note: See TracChangeset for help on using the changeset viewer.