Skip to content

Commit

Permalink
Updates to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Woo committed Apr 23, 2024
1 parent 8a10207 commit 1e71139
Show file tree
Hide file tree
Showing 25 changed files with 2,148 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Ignore files when creating archive
/.idea export-ignore
/.editorconfig export-ignore
/.gitignore export-ignore
/composer.json export-ignore
/composer.lock export-ignore
/phpcs.xml export-ignore
339 changes: 339 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions admin/assets/css/admin.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/* BASE STYLES */

.role-methods-main-title {
margin: 40px 0;
}

.paymentrolepanel {
float:left;
width:100%;
padding-right:20px;
}
.wc_shipping td {
padding: 10px;
width: 200px;
}

.wc_shipping th strong {
color: #000;
font-size: 1.1em;
}

.wc_shipping th {
color: #666;
}

.roletd {
width:220px;
}

/* GROUPS */

.group-settings {
display: none;
}

.groups--visible {
display: block;
}

.enable-groups-toggle {
margin-bottom: 20px;
}

.enable-groups-toggle .groups-toggle {
margin-left: 5px;
}

.widefat thead th {
border-bottom: 0;
}

.wc_shipping .zone-heading {
border-left: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
}

.wc_shipping th,
.wc_shipping td {
border-left: 1px solid #e1e1e1;
}

.wc_shipping .zone-title {
border-bottom: 1px solid #e1e1e1;
}

.shippingrolepanel {
max-width: 100%;
overflow: auto;
}
1 change: 1 addition & 0 deletions admin/assets/css/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php // Silence is golden
1 change: 1 addition & 0 deletions admin/assets/js/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php // Silence is golden
5 changes: 5 additions & 0 deletions admin/assets/js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
jQuery(document).ready(function() {
jQuery('.groups-toggle').click(function(e){
jQuery('.group-settings').slideToggle();
});
});
Loading

0 comments on commit 1e71139

Please sign in to comment.