|
69 | 69 | <p>It looks like you accepted full disk access before but then revoked it.</p> |
70 | 70 | <p><strong>The app currently has no full disk access.</strong></p> |
71 | 71 | <p>If that was intentional, click "Deny" and the app won't bother you again.</p> |
72 | | - <p>If it <em>wasn't</em> intentional, consider allowing full disk access again.</p> |
73 | | - <p>Here are the pros and cons:</p> |
| 72 | + <p>If it <em>wasn't</em> intentional, consider allowing full disk access again. Here are the pros and cons:</p> |
74 | 73 | {:else} |
75 | | - <p>Would you like to give this app full disk access?</p> |
76 | | - <p>Here's what that means:</p> |
| 74 | + <p>Would you like to give this app full disk access? Here's what that means:</p> |
77 | 75 | {/if} |
78 | 76 |
|
79 | | - <ul class="pros-cons"> |
| 77 | + <ul class="bullets"> |
80 | 78 | <li> |
81 | 79 | <strong>Pro:</strong> The app will access your entire disk without nagging you for permissions to each folder |
82 | 80 | like Downloads, Documents, and Desktop. |
|
89 | 87 |
|
90 | 88 | <p>If you decide to allow:</p> |
91 | 89 |
|
92 | | - <ol> |
| 90 | + <ol class="steps"> |
93 | 91 | <li>Click <strong>Open System Settings</strong> below</li> |
94 | | - {#if isVenturaOrNewer} |
95 | | - <li> |
| 92 | + <li> |
| 93 | + {#if isVenturaOrNewer} |
96 | 94 | Find <strong>Cmdr</strong> in the list and toggle it on |
97 | | - <p class="step-tip"> |
98 | | - Tip: Is Cmdr not in the list? Click the "+" button at the bottom, and choose |
99 | | - <strong>Cmdr</strong> from your <strong>Applications</strong> folder. |
100 | | - </p> |
101 | | - </li> |
102 | | - {:else} |
103 | | - <li> |
| 95 | + {:else} |
104 | 96 | Find <strong>Cmdr</strong> at the end of the list and toggle it on |
105 | | - <p class="step-tip"> |
106 | | - Tip: Is Cmdr not in the list? Click the "+" button at the bottom, and choose |
107 | | - <strong>Cmdr</strong> from your <strong>Applications</strong> folder. |
108 | | - </p> |
109 | | - </li> |
110 | | - {/if} |
| 97 | + {/if} |
| 98 | + <p class="step-tip"> |
| 99 | + Tip: Is Cmdr not in the list? Click the "+" button at the bottom, and choose |
| 100 | + <strong>Cmdr</strong> from your <strong>Applications</strong> folder. |
| 101 | + </p> |
| 102 | + </li> |
111 | 103 | <li>Confirm and click <strong>Quit & Reopen</strong></li> |
112 | 104 | </ol> |
113 | 105 |
|
|
116 | 108 | <Button variant="danger" onclick={handleDeny}>Deny</Button> |
117 | 109 | </div> |
118 | 110 | {#if hasClickedOpenSettings} |
119 | | - <p class="post-allow-instructions">Great! Make sure to restart the app after you've enabled the access.</p> |
120 | | - <p>If you change your mind, you can still click "Deny" above.</p> |
| 111 | + <div class="post-action"> |
| 112 | + <p>Make sure to restart the app after you've enabled the access.</p> |
| 113 | + <p>If you change your mind, you can still click "Deny" above.</p> |
| 114 | + </div> |
121 | 115 | {/if} |
122 | 116 | </div> |
123 | 117 | </ModalDialog> |
|
127 | 121 | padding: 0 var(--spacing-xl) var(--spacing-xl); |
128 | 122 | font-size: var(--font-size-md); |
129 | 123 | color: var(--color-text-primary); |
130 | | - line-height: 1.6; |
| 124 | + line-height: 1.5; |
131 | 125 | } |
132 | 126 |
|
133 | 127 | .fda-body p { |
134 | 128 | margin: 0 0 var(--spacing-md) 0; |
135 | 129 | } |
136 | 130 |
|
137 | | - .post-allow-instructions { |
138 | | - font-weight: 500; |
| 131 | + .fda-body p:last-child { |
| 132 | + margin-bottom: 0; |
139 | 133 | } |
140 | 134 |
|
141 | | - .step-tip { |
142 | | - margin: var(--spacing-xs) 0 0 0; |
143 | | - color: var(--color-text-secondary); |
144 | | - font-size: var(--font-size-sm); |
| 135 | + .bullets, |
| 136 | + .steps { |
| 137 | + margin: 0 0 var(--spacing-lg) 0; |
| 138 | + padding-left: var(--spacing-xl); |
145 | 139 | } |
146 | 140 |
|
147 | | - .pros-cons { |
148 | | - margin: var(--spacing-lg) 0; |
| 141 | + .bullets li, |
| 142 | + .steps li { |
| 143 | + margin-bottom: var(--spacing-sm); |
149 | 144 | } |
150 | 145 |
|
151 | | - .pros-cons li { |
152 | | - margin-bottom: var(--spacing-md); |
| 146 | + .bullets li:last-child, |
| 147 | + .steps li:last-child { |
| 148 | + margin-bottom: 0; |
| 149 | + } |
| 150 | +
|
| 151 | + .step-tip { |
| 152 | + margin: var(--spacing-xs) 0 0 0; |
| 153 | + color: var(--color-text-secondary); |
153 | 154 | } |
154 | 155 |
|
155 | 156 | .buttons { |
156 | 157 | display: flex; |
157 | 158 | gap: var(--spacing-md); |
158 | 159 | justify-content: center; |
159 | | - margin: var(--spacing-xl) 0; |
| 160 | + margin-top: var(--spacing-lg); |
| 161 | + } |
| 162 | +
|
| 163 | + .post-action { |
| 164 | + margin-top: var(--spacing-lg); |
| 165 | + padding-top: var(--spacing-lg); |
| 166 | + border-top: 1px solid var(--color-border-subtle); |
| 167 | + color: var(--color-text-secondary); |
160 | 168 | } |
161 | 169 | </style> |
0 commit comments