Skip to content

Commit 1e71139

Browse files
author
Woo
committed
Updates to 2.5.0
1 parent 8a10207 commit 1e71139

25 files changed

+2148
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Ignore files when creating archive
2+
/.idea export-ignore
3+
/.editorconfig export-ignore
4+
/.gitignore export-ignore
5+
/composer.json export-ignore
6+
/composer.lock export-ignore
7+
/phpcs.xml export-ignore

LICENSE.txt

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

admin/assets/css/admin.css

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/* BASE STYLES */
2+
3+
.role-methods-main-title {
4+
margin: 40px 0;
5+
}
6+
7+
.paymentrolepanel {
8+
float:left;
9+
width:100%;
10+
padding-right:20px;
11+
}
12+
.wc_shipping td {
13+
padding: 10px;
14+
width: 200px;
15+
}
16+
17+
.wc_shipping th strong {
18+
color: #000;
19+
font-size: 1.1em;
20+
}
21+
22+
.wc_shipping th {
23+
color: #666;
24+
}
25+
26+
.roletd {
27+
width:220px;
28+
}
29+
30+
/* GROUPS */
31+
32+
.group-settings {
33+
display: none;
34+
}
35+
36+
.groups--visible {
37+
display: block;
38+
}
39+
40+
.enable-groups-toggle {
41+
margin-bottom: 20px;
42+
}
43+
44+
.enable-groups-toggle .groups-toggle {
45+
margin-left: 5px;
46+
}
47+
48+
.widefat thead th {
49+
border-bottom: 0;
50+
}
51+
52+
.wc_shipping .zone-heading {
53+
border-left: 1px solid #e1e1e1;
54+
border-bottom: 1px solid #e1e1e1;
55+
}
56+
57+
.wc_shipping th,
58+
.wc_shipping td {
59+
border-left: 1px solid #e1e1e1;
60+
}
61+
62+
.wc_shipping .zone-title {
63+
border-bottom: 1px solid #e1e1e1;
64+
}
65+
66+
.shippingrolepanel {
67+
max-width: 100%;
68+
overflow: auto;
69+
}

admin/assets/css/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php // Silence is golden

admin/assets/js/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php // Silence is golden

admin/assets/js/main.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
jQuery(document).ready(function() {
2+
jQuery('.groups-toggle').click(function(e){
3+
jQuery('.group-settings').slideToggle();
4+
});
5+
});

0 commit comments

Comments
 (0)