Skip to content

Commit 1db4542

Browse files
chore: review
1 parent a5a8447 commit 1db4542

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

css/settings.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,6 @@
111111
vertical-align: super;
112112
}
113113

114-
.fz-pro-disabled-item {
115-
opacity: 0.6;
116-
}
117-
118114
.post-type-feedzy_imports:not(.edit-post) .wrap div#side-sortables{
119115
display: none;
120116
}
@@ -2216,6 +2212,7 @@ li.draggable-item .components-panel__body-toggle.components-button{
22162212
}
22172213
.popover-action-list ul li.fz-action-disabled {
22182214
cursor: not-allowed !important;
2215+
color: #757575;
22192216
}
22202217

22212218
.fz-action-panel .fz-chat-cpt-action .fz-notice-wrap,

js/ActionPopup/index.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,9 @@ const ActionModal = () => {
391391
<Fragment>
392392
{isOpen && (
393393
<Modal
394-
isDismissible={false} onRequestClose={ closeModal } className="fz-action-popup"
394+
isDismissible={false}
395+
onRequestClose={closeModal}
396+
className="fz-action-popup"
395397
overlayClassName="fz-popup-wrap"
396398
>
397399
<div className="fz-action-content">
@@ -505,7 +507,7 @@ const ActionModal = () => {
505507
) : (
506508
<li
507509
key="action-1-disabled"
508-
className="pro-disabled-item"
510+
className="fz-action-disabled"
509511
>
510512
{__(
511513
'Generate with OpenAI',
@@ -555,7 +557,7 @@ const ActionModal = () => {
555557
) : (
556558
<li
557559
key="action-3-disabled"
558-
className="pro-disabled-item"
560+
className="fz-action-disabled"
559561
>
560562
{__(
561563
'Translate with Feedzy',
@@ -604,7 +606,7 @@ const ActionModal = () => {
604606
) : (
605607
<li
606608
key="action-5-disabled"
607-
className="pro-disabled-item"
609+
className="fz-action-disabled"
608610
>
609611
{__(
610612
'Modify Links',
@@ -644,7 +646,7 @@ const ActionModal = () => {
644646
) : (
645647
<li
646648
key="action-6-disabled"
647-
className="pro-disabled-item"
649+
className="fz-action-disabled"
648650
>
649651
{__(
650652
'Paraphrase with Feedzy',
@@ -681,7 +683,7 @@ const ActionModal = () => {
681683
) : (
682684
<li
683685
key="action-7-disabled"
684-
className="pro-disabled-item"
686+
className="fz-action-disabled"
685687
>
686688
{__(
687689
'Spin using SpinnerChief',
@@ -718,7 +720,7 @@ const ActionModal = () => {
718720
) : (
719721
<li
720722
key="action-8-disabled"
721-
className="pro-disabled-item"
723+
className="fz-action-disabled"
722724
>
723725
{__(
724726
'Spin using WordAI',
@@ -758,7 +760,7 @@ const ActionModal = () => {
758760
) : (
759761
<li
760762
key="action-9-disabled"
761-
className="pro-disabled-item"
763+
className="fz-action-disabled"
762764
>
763765
{__(
764766
'Rewrite with AI',

0 commit comments

Comments
 (0)