-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Woo
committed
Apr 23, 2024
1 parent
8a10207
commit 1e71139
Showing
25 changed files
with
2,148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?php // Silence is golden |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?php // Silence is golden |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
}); | ||
}); |
Oops, something went wrong.