Skip to content

Commit a1187f8

Browse files
authored
Merge pull request #2660 from sovware/development
v8.5.8
2 parents cc19082 + 28620a0 commit a1187f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1250
-541
lines changed

.github/workflows/wp-deploy.yml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,7 @@ jobs:
88
name: Deploy on new tag
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@v4
12-
- name: Install SVN
13-
run: sudo apt-get update && sudo apt-get install -y subversion
14-
- name: Fix SVN checksum mismatch
15-
run: |
16-
svn checkout --depth empty https://plugins.svn.wordpress.org/directorist/trunk /tmp/directorist-svn
17-
cd /tmp/directorist-svn
18-
svn update --set-depth infinity includes/rest-api/Version2/class-listings-controller.php
19-
cp "$GITHUB_WORKSPACE/includes/rest-api/Version2/class-listings-controller.php" includes/rest-api/Version2/class-listings-controller.php
20-
svn update includes/rest-api/Version2/class-listings-controller.php
21-
if svn status includes/rest-api/Version2/class-listings-controller.php | grep -q "^M"; then
22-
svn commit -m "Sync class-listings-controller.php to fix checksum mismatch"
23-
else
24-
echo "File is already in sync, no commit needed"
25-
fi
26-
env:
27-
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
28-
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
29-
continue-on-error: true
11+
- uses: actions/checkout@master
3012
- name: WordPress Plugin Deploy
3113
uses: 10up/action-wordpress-plugin-deploy@stable
3214
env:

assets/css/admin-main.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin-main.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin-main.rtl.css

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10480,8 +10480,11 @@ body.stop-scrolling {
1048010480
width: 100%;
1048110481
top: 0;
1048210482
right: 0;
10483+
z-index: 10;
10484+
pointer-events: none;
1048310485
}
1048410486
.plupload-thumbs .atbdp-thumb-actions .thumbremovelink {
10487+
pointer-events: auto;
1048510488
position: absolute;
1048610489
top: 10px;
1048710490
left: 10px;
@@ -10550,6 +10553,84 @@ body.stop-scrolling {
1055010553
z-index: 1;
1055110554
}
1055210555

10556+
.plupload-thumbs .thumb .atbdp-file-wrapper {
10557+
-webkit-box-sizing: border-box;
10558+
box-sizing: border-box;
10559+
width: 100%;
10560+
height: 100%;
10561+
display: -webkit-box;
10562+
display: -webkit-flex;
10563+
display: -ms-flexbox;
10564+
display: flex;
10565+
-webkit-box-orient: vertical;
10566+
-webkit-box-direction: normal;
10567+
-webkit-flex-direction: column;
10568+
-ms-flex-direction: column;
10569+
flex-direction: column;
10570+
-webkit-box-align: center;
10571+
-webkit-align-items: center;
10572+
-ms-flex-align: center;
10573+
align-items: center;
10574+
-webkit-box-pack: center;
10575+
-webkit-justify-content: center;
10576+
-ms-flex-pack: center;
10577+
justify-content: center;
10578+
padding: 20px;
10579+
background: var(--directorist-color-bg-gray, #f8f9fa);
10580+
border-radius: 12px;
10581+
cursor: move;
10582+
position: relative;
10583+
-webkit-transition: background-color 0.3s ease;
10584+
transition: background-color 0.3s ease;
10585+
z-index: 1;
10586+
pointer-events: auto;
10587+
}
10588+
.plupload-thumbs .thumb .atbdp-file-wrapper:hover {
10589+
background: var(--directorist-color-border-gray, #e9ecef);
10590+
}
10591+
.plupload-thumbs .thumb .atbdp-file-wrapper .atbdp-file-icon {
10592+
width: 64px;
10593+
height: 64px;
10594+
margin-bottom: 12px;
10595+
-webkit-flex-shrink: 0;
10596+
-ms-flex-negative: 0;
10597+
flex-shrink: 0;
10598+
display: -webkit-box;
10599+
display: -webkit-flex;
10600+
display: -ms-flexbox;
10601+
display: flex;
10602+
-webkit-box-align: center;
10603+
-webkit-align-items: center;
10604+
-ms-flex-align: center;
10605+
align-items: center;
10606+
-webkit-box-pack: center;
10607+
-webkit-justify-content: center;
10608+
-ms-flex-pack: center;
10609+
justify-content: center;
10610+
}
10611+
.plupload-thumbs .thumb .atbdp-file-wrapper .atbdp-file-icon::after {
10612+
width: 64px;
10613+
height: 64px;
10614+
background-color: var(--directorist-color-primary, #2563eb);
10615+
opacity: 0.15;
10616+
border-radius: 8px;
10617+
}
10618+
.plupload-thumbs .thumb .atbdp-file-wrapper .atbdp-file-name {
10619+
font-size: 12px;
10620+
font-weight: 500;
10621+
color: var(--directorist-color-body, #374151);
10622+
text-align: center;
10623+
word-break: break-word;
10624+
line-height: 1.4;
10625+
max-width: 100%;
10626+
overflow: hidden;
10627+
text-overflow: ellipsis;
10628+
display: -webkit-box;
10629+
-webkit-line-clamp: 2;
10630+
-webkit-box-orient: vertical;
10631+
margin-top: 4px;
10632+
}
10633+
1055310634
.plupload-thumbs .thumb .thumbi {
1055410635
position: absolute;
1055510636
left: -10px;

assets/css/admin-main.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/all-listings.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/all-listings.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/all-listings.rtl.css

Lines changed: 111 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5325,8 +5325,11 @@ body.stop-scrolling {
53255325
width: 100%;
53265326
top: 0;
53275327
right: 0;
5328+
z-index: 10;
5329+
pointer-events: none;
53285330
}
53295331
.plupload-thumbs .atbdp-thumb-actions .thumbremovelink {
5332+
pointer-events: auto;
53305333
position: absolute;
53315334
top: 10px;
53325335
left: 10px;
@@ -5395,6 +5398,84 @@ body.stop-scrolling {
53955398
z-index: 1;
53965399
}
53975400

5401+
.plupload-thumbs .thumb .atbdp-file-wrapper {
5402+
-webkit-box-sizing: border-box;
5403+
box-sizing: border-box;
5404+
width: 100%;
5405+
height: 100%;
5406+
display: -webkit-box;
5407+
display: -webkit-flex;
5408+
display: -ms-flexbox;
5409+
display: flex;
5410+
-webkit-box-orient: vertical;
5411+
-webkit-box-direction: normal;
5412+
-webkit-flex-direction: column;
5413+
-ms-flex-direction: column;
5414+
flex-direction: column;
5415+
-webkit-box-align: center;
5416+
-webkit-align-items: center;
5417+
-ms-flex-align: center;
5418+
align-items: center;
5419+
-webkit-box-pack: center;
5420+
-webkit-justify-content: center;
5421+
-ms-flex-pack: center;
5422+
justify-content: center;
5423+
padding: 20px;
5424+
background: var(--directorist-color-bg-gray, #f8f9fa);
5425+
border-radius: 12px;
5426+
cursor: move;
5427+
position: relative;
5428+
-webkit-transition: background-color 0.3s ease;
5429+
transition: background-color 0.3s ease;
5430+
z-index: 1;
5431+
pointer-events: auto;
5432+
}
5433+
.plupload-thumbs .thumb .atbdp-file-wrapper:hover {
5434+
background: var(--directorist-color-border-gray, #e9ecef);
5435+
}
5436+
.plupload-thumbs .thumb .atbdp-file-wrapper .atbdp-file-icon {
5437+
width: 64px;
5438+
height: 64px;
5439+
margin-bottom: 12px;
5440+
-webkit-flex-shrink: 0;
5441+
-ms-flex-negative: 0;
5442+
flex-shrink: 0;
5443+
display: -webkit-box;
5444+
display: -webkit-flex;
5445+
display: -ms-flexbox;
5446+
display: flex;
5447+
-webkit-box-align: center;
5448+
-webkit-align-items: center;
5449+
-ms-flex-align: center;
5450+
align-items: center;
5451+
-webkit-box-pack: center;
5452+
-webkit-justify-content: center;
5453+
-ms-flex-pack: center;
5454+
justify-content: center;
5455+
}
5456+
.plupload-thumbs .thumb .atbdp-file-wrapper .atbdp-file-icon::after {
5457+
width: 64px;
5458+
height: 64px;
5459+
background-color: var(--directorist-color-primary, #2563eb);
5460+
opacity: 0.15;
5461+
border-radius: 8px;
5462+
}
5463+
.plupload-thumbs .thumb .atbdp-file-wrapper .atbdp-file-name {
5464+
font-size: 12px;
5465+
font-weight: 500;
5466+
color: var(--directorist-color-body, #374151);
5467+
text-align: center;
5468+
word-break: break-word;
5469+
line-height: 1.4;
5470+
max-width: 100%;
5471+
overflow: hidden;
5472+
text-overflow: ellipsis;
5473+
display: -webkit-box;
5474+
-webkit-line-clamp: 2;
5475+
-webkit-box-orient: vertical;
5476+
margin-top: 4px;
5477+
}
5478+
53985479
.plupload-thumbs .thumb .thumbi {
53995480
position: absolute;
54005481
left: -10px;
@@ -13337,36 +13418,6 @@ input.directorist-toggle-input:checked + .directorist-toggle-input-label span.di
1333713418
.directorist-search-form__top .directorist-search-modal__input .directorist-select2-dropdown-close {
1333813419
display: none;
1333913420
}
13340-
.directorist-search-form__top .directorist-search-form__single-category {
13341-
cursor: not-allowed;
13342-
}
13343-
.directorist-search-form__top .directorist-search-form__single-category .directorist-category-select {
13344-
opacity: 0.6;
13345-
pointer-events: none;
13346-
}
13347-
.directorist-search-form__top .directorist-search-form__single-category .directorist-category-select ~ .select2-container {
13348-
opacity: 0.6;
13349-
pointer-events: none;
13350-
}
13351-
.directorist-search-form__top .directorist-search-form__single-category ~ .directorist-search-field__btn {
13352-
cursor: not-allowed;
13353-
pointer-events: none;
13354-
}
13355-
.directorist-search-form__top .directorist-search-form__single-location {
13356-
cursor: not-allowed;
13357-
}
13358-
.directorist-search-form__top .directorist-search-form__single-location .directorist-location-select {
13359-
opacity: 0.6;
13360-
pointer-events: none;
13361-
}
13362-
.directorist-search-form__top .directorist-search-form__single-location .directorist-location-select ~ .select2-container {
13363-
opacity: 0.6;
13364-
pointer-events: none;
13365-
}
13366-
.directorist-search-form__top .directorist-search-form__single-location ~ .directorist-search-field__btn {
13367-
cursor: not-allowed;
13368-
pointer-events: none;
13369-
}
1337013421
.directorist-search-form__top .directorist-search-field {
1337113422
-webkit-box-flex: 30%;
1337213423
-webkit-flex: 30%;
@@ -13983,6 +14034,36 @@ input.directorist-toggle-input:checked + .directorist-toggle-input-label span.di
1398314034
.directorist-search-form__top .directorist-form-group__with-prefix ~ .directorist-search-field__btn--clear {
1398414035
bottom: 12px;
1398514036
}
14037+
.directorist-search-form__single-category {
14038+
cursor: not-allowed;
14039+
}
14040+
.directorist-search-form__single-category .directorist-category-select {
14041+
opacity: 0.6;
14042+
pointer-events: none;
14043+
}
14044+
.directorist-search-form__single-category .directorist-category-select ~ .select2-container {
14045+
opacity: 0.6;
14046+
pointer-events: none;
14047+
}
14048+
.directorist-search-form__single-category ~ .directorist-search-field__btn {
14049+
cursor: not-allowed;
14050+
pointer-events: none;
14051+
}
14052+
.directorist-search-form__single-location {
14053+
cursor: not-allowed;
14054+
}
14055+
.directorist-search-form__single-location .directorist-location-select {
14056+
opacity: 0.6;
14057+
pointer-events: none;
14058+
}
14059+
.directorist-search-form__single-location .directorist-location-select ~ .select2-container {
14060+
opacity: 0.6;
14061+
pointer-events: none;
14062+
}
14063+
.directorist-search-form__single-location ~ .directorist-search-field__btn {
14064+
cursor: not-allowed;
14065+
pointer-events: none;
14066+
}
1398614067

1398714068
.directorist-search-form-action {
1398814069
display: -webkit-box;

assets/css/all-listings.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/public-main.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)