mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 17:16:26 +01:00
Default modal to light, add solid class instead
This commit is contained in:
parent
b79ce92aef
commit
6292557bc9
11 changed files with 17 additions and 29 deletions
|
@ -1352,7 +1352,6 @@ function RelatedActions({
|
||||||
</div>
|
</div>
|
||||||
{!!showTranslatedBio && (
|
{!!showTranslatedBio && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
setShowTranslatedBio(false);
|
setShowTranslatedBio(false);
|
||||||
}}
|
}}
|
||||||
|
@ -1366,7 +1365,6 @@ function RelatedActions({
|
||||||
)}
|
)}
|
||||||
{!!showAddRemoveLists && (
|
{!!showAddRemoveLists && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
setShowAddRemoveLists(false);
|
setShowAddRemoveLists(false);
|
||||||
}}
|
}}
|
||||||
|
@ -1379,7 +1377,6 @@ function RelatedActions({
|
||||||
)}
|
)}
|
||||||
{!!showPrivateNoteModal && (
|
{!!showPrivateNoteModal && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
setShowPrivateNoteModal(false);
|
setShowPrivateNoteModal(false);
|
||||||
}}
|
}}
|
||||||
|
@ -1571,7 +1568,6 @@ function AddRemoveListsSheet({ accountID, onClose }) {
|
||||||
</main>
|
</main>
|
||||||
{showListAddEditModal && (
|
{showListAddEditModal && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowListAddEditModal(false);
|
setShowListAddEditModal(false);
|
||||||
|
|
|
@ -1254,7 +1254,6 @@ function Compose({
|
||||||
</div>
|
</div>
|
||||||
{showEmoji2Picker && (
|
{showEmoji2Picker && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowEmoji2Picker(false);
|
setShowEmoji2Picker(false);
|
||||||
|
@ -1768,7 +1767,6 @@ function MediaAttachment({
|
||||||
</div>
|
</div>
|
||||||
{showModal && (
|
{showModal && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowModal(false);
|
setShowModal(false);
|
||||||
|
|
|
@ -32,7 +32,7 @@ export default memo(function KeyboardShortcutsHelp() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
!!snapStates.showKeyboardShortcutsHelp && (
|
!!snapStates.showKeyboardShortcutsHelp && (
|
||||||
<Modal class="light" onClose={onClose}>
|
<Modal onClose={onClose}>
|
||||||
<div id="keyboard-shortcuts-help-container" class="sheet" tabindex="-1">
|
<div id="keyboard-shortcuts-help-container" class="sheet" tabindex="-1">
|
||||||
<button type="button" class="sheet-close" onClick={onClose}>
|
<button type="button" class="sheet-close" onClick={onClose}>
|
||||||
<Icon icon="x" />
|
<Icon icon="x" />
|
||||||
|
|
|
@ -10,11 +10,17 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: var(--backdrop-color);
|
background-color: var(--backdrop-color);
|
||||||
animation: appear 0.5s var(--timing-function) both;
|
animation: appear 0.5s var(--timing-function) both;
|
||||||
}
|
|
||||||
#modal-container > div .sheet {
|
&.solid {
|
||||||
|
background-color: var(--backdrop-solid-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sheet {
|
||||||
transition: transform 0.3s var(--timing-function);
|
transition: transform 0.3s var(--timing-function);
|
||||||
transform-origin: center bottom;
|
transform-origin: center bottom;
|
||||||
}
|
}
|
||||||
#modal-container > div:has(~ div) .sheet {
|
|
||||||
|
&:has(~ div) .sheet {
|
||||||
transform: scale(0.975);
|
transform: scale(0.975);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,7 @@ export default function Modals() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{!!snapStates.showCompose && (
|
{!!snapStates.showCompose && (
|
||||||
<Modal>
|
<Modal class="solid">
|
||||||
<Compose
|
<Compose
|
||||||
replyToStatus={
|
replyToStatus={
|
||||||
typeof snapStates.showCompose !== 'boolean'
|
typeof snapStates.showCompose !== 'boolean'
|
||||||
|
@ -109,7 +109,6 @@ export default function Modals() {
|
||||||
)}
|
)}
|
||||||
{!!snapStates.showAccount && (
|
{!!snapStates.showAccount && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
states.showAccount = false;
|
states.showAccount = false;
|
||||||
}}
|
}}
|
||||||
|
@ -160,7 +159,6 @@ export default function Modals() {
|
||||||
)}
|
)}
|
||||||
{!!snapStates.showShortcutsSettings && (
|
{!!snapStates.showShortcutsSettings && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
states.showShortcutsSettings = false;
|
states.showShortcutsSettings = false;
|
||||||
}}
|
}}
|
||||||
|
@ -172,7 +170,6 @@ export default function Modals() {
|
||||||
)}
|
)}
|
||||||
{!!snapStates.showGenericAccounts && (
|
{!!snapStates.showGenericAccounts && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
states.showGenericAccounts = false;
|
states.showGenericAccounts = false;
|
||||||
}}
|
}}
|
||||||
|
@ -188,7 +185,6 @@ export default function Modals() {
|
||||||
)}
|
)}
|
||||||
{!!snapStates.showMediaAlt && (
|
{!!snapStates.showMediaAlt && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClose={(e) => {
|
onClose={(e) => {
|
||||||
states.showMediaAlt = false;
|
states.showMediaAlt = false;
|
||||||
}}
|
}}
|
||||||
|
@ -204,6 +200,7 @@ export default function Modals() {
|
||||||
)}
|
)}
|
||||||
{!!snapStates.showEmbedModal && (
|
{!!snapStates.showEmbedModal && (
|
||||||
<Modal
|
<Modal
|
||||||
|
class="solid"
|
||||||
onClose={() => {
|
onClose={() => {
|
||||||
states.showEmbedModal = false;
|
states.showEmbedModal = false;
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -144,7 +144,6 @@ export default memo(function NotificationService() {
|
||||||
const { id, account, notification, sameInstance } = showNotificationSheet;
|
const { id, account, notification, sameInstance } = showNotificationSheet;
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
onClose();
|
onClose();
|
||||||
|
|
|
@ -457,7 +457,6 @@ function ShortcutsSettings({ onClose }) {
|
||||||
</main>
|
</main>
|
||||||
{showForm && (
|
{showForm && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowForm(false);
|
setShowForm(false);
|
||||||
|
@ -481,7 +480,6 @@ function ShortcutsSettings({ onClose }) {
|
||||||
)}
|
)}
|
||||||
{showImportExport && (
|
{showImportExport && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowImportExport(false);
|
setShowImportExport(false);
|
||||||
|
|
|
@ -1985,7 +1985,6 @@ function Status({
|
||||||
</div>
|
</div>
|
||||||
{!!showEdited && (
|
{!!showEdited && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowEdited(false);
|
setShowEdited(false);
|
||||||
|
@ -2008,7 +2007,6 @@ function Status({
|
||||||
)}
|
)}
|
||||||
{!!showEmbed && (
|
{!!showEmbed && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowEmbed(false);
|
setShowEmbed(false);
|
||||||
|
@ -2953,7 +2951,6 @@ function FilteredStatus({
|
||||||
</article>
|
</article>
|
||||||
{!!showPeek && (
|
{!!showPeek && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowPeek(false);
|
setShowPeek(false);
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
--outline-color: rgba(128, 128, 128, 0.2);
|
--outline-color: rgba(128, 128, 128, 0.2);
|
||||||
--outline-hover-color: rgba(128, 128, 128, 0.7);
|
--outline-hover-color: rgba(128, 128, 128, 0.7);
|
||||||
--divider-color: rgba(0, 0, 0, 0.1);
|
--divider-color: rgba(0, 0, 0, 0.1);
|
||||||
--backdrop-color: rgba(0, 0, 0, 0.05);
|
--backdrop-color: rgba(0, 0, 0, 0.1);
|
||||||
--backdrop-darker-color: rgba(0, 0, 0, 0.25);
|
--backdrop-darker-color: rgba(0, 0, 0, 0.25);
|
||||||
--backdrop-solid-color: #eee;
|
--backdrop-solid-color: #eee;
|
||||||
--img-bg-color: rgba(128, 128, 128, 0.2);
|
--img-bg-color: rgba(128, 128, 128, 0.2);
|
||||||
|
|
|
@ -143,7 +143,6 @@ function List(props) {
|
||||||
/>
|
/>
|
||||||
{showListAddEditModal && (
|
{showListAddEditModal && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowListAddEditModal(false);
|
setShowListAddEditModal(false);
|
||||||
|
@ -167,7 +166,6 @@ function List(props) {
|
||||||
)}
|
)}
|
||||||
{showManageMembersModal && (
|
{showManageMembersModal && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowManageMembersModal(false);
|
setShowManageMembersModal(false);
|
||||||
|
|
|
@ -108,7 +108,6 @@ function Lists() {
|
||||||
</div>
|
</div>
|
||||||
{showListAddEditModal && (
|
{showListAddEditModal && (
|
||||||
<Modal
|
<Modal
|
||||||
class="light"
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (e.target === e.currentTarget) {
|
if (e.target === e.currentTarget) {
|
||||||
setShowListAddEditModal(false);
|
setShowListAddEditModal(false);
|
||||||
|
|
Loading…
Reference in a new issue