diff --git a/README.md b/README.md index 937a64238..f9936711b 100644 --- a/README.md +++ b/README.md @@ -36,14 +36,14 @@

Hoppscotch Hoppscotch diff --git a/packages/hoppscotch-app/assets/scss/styles.scss b/packages/hoppscotch-app/assets/scss/styles.scss index 85bcef67b..4b213b6ac 100644 --- a/packages/hoppscotch-app/assets/scss/styles.scss +++ b/packages/hoppscotch-app/assets/scss/styles.scss @@ -185,7 +185,7 @@ a { @apply flex flex-1; } -[interactive]>div { +[interactive] > div { @apply flex flex-1; @apply h-full; } @@ -232,7 +232,7 @@ button { @apply hidden; } -.floating-input~label { +.floating-input ~ label { @apply absolute; @apply px-2 py-0.5; @apply m-2; @@ -241,8 +241,8 @@ button { @apply origin-top-left; } -.floating-input:focus-within~label, -.floating-input:not(:placeholder-shown)~label { +.floating-input:focus-within ~ label, +.floating-input:not(:placeholder-shown) ~ label { @apply bg-primary; @apply transform; @apply origin-top-left; @@ -250,7 +250,7 @@ button { @apply translate-x-1 -translate-y-4; } -.floating-input:focus-within~label { +.floating-input:focus-within ~ label { @apply text-secondaryDark; } @@ -336,6 +336,7 @@ pre.ace_editor { @apply font-semibold; @apply leading-body; @apply tracking-normal; + @apply rounded; @apply last: ml-4; @apply sm: ml-8; @apply before: absolute; @@ -397,7 +398,7 @@ pre.ace_editor { @apply bg-primaryLight; } -.smart-splitter.splitpanes--vertical>.splitpanes__splitter { +.smart-splitter.splitpanes--vertical > .splitpanes__splitter { @apply w-1; @apply before: -left-0.5; @apply before: -right-0.5; @@ -405,7 +406,7 @@ pre.ace_editor { @apply after: content-["\e5d4"]; } -.smart-splitter.splitpanes--horizontal>.splitpanes__splitter { +.smart-splitter.splitpanes--horizontal > .splitpanes__splitter { @apply h-1; @apply before: -top-0.5; @apply before: -bottom-0.5; @@ -413,19 +414,19 @@ pre.ace_editor { @apply after: content-["\e5d3"]; } -.no-splitter.splitpanes--vertical>.splitpanes__splitter { +.no-splitter.splitpanes--vertical > .splitpanes__splitter { @apply w-0.5; @apply pointer-events-none; } -.no-splitter.splitpanes--horizontal>.splitpanes__splitter { +.no-splitter.splitpanes--horizontal > .splitpanes__splitter { @apply h-0.5; @apply pointer-events-none; } .cm-focused { @apply select-auto; - @apply outline-none; + @apply outline-none #{!important}; .cm-activeLine { @apply bg-primaryLight; diff --git a/packages/hoppscotch-app/src/components/app/DeveloperOptions.vue b/packages/hoppscotch-app/src/components/app/DeveloperOptions.vue index e18e05967..02d4f8ea4 100644 --- a/packages/hoppscotch-app/src/components/app/DeveloperOptions.vue +++ b/packages/hoppscotch-app/src/components/app/DeveloperOptions.vue @@ -6,16 +6,17 @@ @close="hideModal" > @@ -65,29 +66,3 @@ const hideModal = () => { emit("hide-modal") } - - diff --git a/packages/hoppscotch-app/src/components/app/Footer.vue b/packages/hoppscotch-app/src/components/app/Footer.vue index 5e37b064a..1bc0cd77e 100644 --- a/packages/hoppscotch-app/src/components/app/Footer.vue +++ b/packages/hoppscotch-app/src/components/app/Footer.vue @@ -139,7 +139,12 @@ />

{{ `${t("app.name")} v${version}` }}
@@ -271,7 +276,6 @@ const chatWithUs = () => { const showDeveloperOptionModal = () => { if (currentUser.value) { showDeveloperOptions.value = true - options.value.tippy().hide() } } diff --git a/packages/hoppscotch-app/src/components/app/Shortcuts.vue b/packages/hoppscotch-app/src/components/app/Shortcuts.vue index fe60e7abe..7d8af1ba9 100644 --- a/packages/hoppscotch-app/src/components/app/Shortcuts.vue +++ b/packages/hoppscotch-app/src/components/app/Shortcuts.vue @@ -13,7 +13,7 @@ v-model="filterText" type="search" autocomplete="off" - class="flex px-4 py-2 border rounded bg-primaryLight border-dividerLight focus-visible:border-divider" + class="flex px-4 py-2 border rounded bg-primaryContrast border-dividerLight focus-visible:border-divider" :placeholder="`${t('action.search')}`" /> diff --git a/packages/hoppscotch-app/src/components/app/SlideOver.vue b/packages/hoppscotch-app/src/components/app/SlideOver.vue index d8b833005..2ba7b25e1 100644 --- a/packages/hoppscotch-app/src/components/app/SlideOver.vue +++ b/packages/hoppscotch-app/src/components/app/SlideOver.vue @@ -7,7 +7,7 @@ @keydown.esc="close()" >
diff --git a/packages/hoppscotch-app/src/components/collections/Add.vue b/packages/hoppscotch-app/src/components/collections/Add.vue index 76bab2de4..d11d0fdc0 100644 --- a/packages/hoppscotch-app/src/components/collections/Add.vue +++ b/packages/hoppscotch-app/src/components/collections/Add.vue @@ -23,13 +23,19 @@ diff --git a/packages/hoppscotch-app/src/components/collections/AddFolder.vue b/packages/hoppscotch-app/src/components/collections/AddFolder.vue index d763b5e6a..0a1c7f797 100644 --- a/packages/hoppscotch-app/src/components/collections/AddFolder.vue +++ b/packages/hoppscotch-app/src/components/collections/AddFolder.vue @@ -23,13 +23,19 @@ diff --git a/packages/hoppscotch-app/src/components/collections/AddRequest.vue b/packages/hoppscotch-app/src/components/collections/AddRequest.vue index 6073613be..68f76c892 100644 --- a/packages/hoppscotch-app/src/components/collections/AddRequest.vue +++ b/packages/hoppscotch-app/src/components/collections/AddRequest.vue @@ -21,13 +21,19 @@ diff --git a/packages/hoppscotch-app/src/components/collections/Edit.vue b/packages/hoppscotch-app/src/components/collections/Edit.vue index b38128a9a..803838281 100644 --- a/packages/hoppscotch-app/src/components/collections/Edit.vue +++ b/packages/hoppscotch-app/src/components/collections/Edit.vue @@ -23,13 +23,19 @@ diff --git a/packages/hoppscotch-app/src/components/collections/EditFolder.vue b/packages/hoppscotch-app/src/components/collections/EditFolder.vue index 1dba663cc..659986fc3 100644 --- a/packages/hoppscotch-app/src/components/collections/EditFolder.vue +++ b/packages/hoppscotch-app/src/components/collections/EditFolder.vue @@ -23,13 +23,19 @@ diff --git a/packages/hoppscotch-app/src/components/collections/EditRequest.vue b/packages/hoppscotch-app/src/components/collections/EditRequest.vue index 0e9c4981b..22ab6df3b 100644 --- a/packages/hoppscotch-app/src/components/collections/EditRequest.vue +++ b/packages/hoppscotch-app/src/components/collections/EditRequest.vue @@ -23,13 +23,19 @@ diff --git a/packages/hoppscotch-app/src/components/collections/SaveRequest.vue b/packages/hoppscotch-app/src/components/collections/SaveRequest.vue index 83689346e..9fb8f08b5 100644 --- a/packages/hoppscotch-app/src/components/collections/SaveRequest.vue +++ b/packages/hoppscotch-app/src/components/collections/SaveRequest.vue @@ -43,9 +43,18 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/Add.vue b/packages/hoppscotch-app/src/components/collections/graphql/Add.vue index 038d962b7..85566f8eb 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/Add.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/Add.vue @@ -23,12 +23,17 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/AddFolder.vue b/packages/hoppscotch-app/src/components/collections/graphql/AddFolder.vue index ce5106e8f..5d080fb54 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/AddFolder.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/AddFolder.vue @@ -23,9 +23,14 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/AddRequest.vue b/packages/hoppscotch-app/src/components/collections/graphql/AddRequest.vue index 45698d563..9d918169e 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/AddRequest.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/AddRequest.vue @@ -23,9 +23,14 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/Edit.vue b/packages/hoppscotch-app/src/components/collections/graphql/Edit.vue index 732a2ba35..3058d6d55 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/Edit.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/Edit.vue @@ -23,9 +23,18 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/EditFolder.vue b/packages/hoppscotch-app/src/components/collections/graphql/EditFolder.vue index e6e5ea73d..0de42b604 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/EditFolder.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/EditFolder.vue @@ -23,9 +23,18 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/EditRequest.vue b/packages/hoppscotch-app/src/components/collections/graphql/EditRequest.vue index 509340141..9771a339a 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/EditRequest.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/EditRequest.vue @@ -23,9 +23,18 @@ diff --git a/packages/hoppscotch-app/src/components/collections/graphql/index.vue b/packages/hoppscotch-app/src/components/collections/graphql/index.vue index eb0f220c6..6a0a30cdc 100644 --- a/packages/hoppscotch-app/src/components/collections/graphql/index.vue +++ b/packages/hoppscotch-app/src/components/collections/graphql/index.vue @@ -73,6 +73,7 @@ diff --git a/packages/hoppscotch-app/src/components/collections/index.vue b/packages/hoppscotch-app/src/components/collections/index.vue index 9eb2d5963..83cabf2fe 100644 --- a/packages/hoppscotch-app/src/components/collections/index.vue +++ b/packages/hoppscotch-app/src/components/collections/index.vue @@ -128,12 +128,14 @@ :label="t('add.new')" class="mb-4" filled + outline /> diff --git a/packages/hoppscotch-app/src/components/environments/Details.vue b/packages/hoppscotch-app/src/components/environments/Details.vue index 1d7c13490..5cb8ff41d 100644 --- a/packages/hoppscotch-app/src/components/environments/Details.vue +++ b/packages/hoppscotch-app/src/components/environments/Details.vue @@ -101,12 +101,18 @@ diff --git a/packages/hoppscotch-app/src/components/environments/index.vue b/packages/hoppscotch-app/src/components/environments/index.vue index 7bedd0b8d..6eb67f990 100644 --- a/packages/hoppscotch-app/src/components/environments/index.vue +++ b/packages/hoppscotch-app/src/components/environments/index.vue @@ -109,6 +109,7 @@ :label="`${t('add.new')}`" filled class="mb-4" + outline @click="displayModalAdd(true)" /> diff --git a/packages/hoppscotch-app/src/components/http/CodegenModal.vue b/packages/hoppscotch-app/src/components/http/CodegenModal.vue index abe371b3d..01741fbbd 100644 --- a/packages/hoppscotch-app/src/components/http/CodegenModal.vue +++ b/packages/hoppscotch-app/src/components/http/CodegenModal.vue @@ -34,7 +34,7 @@ v-model="searchQuery" type="search" autocomplete="off" - class="flex w-full p-4 py-2 !bg-popover input" + class="flex w-full p-4 py-2 input !bg-primaryContrast" :placeholder="`${t('action.search')}`" /> @@ -94,13 +94,19 @@ diff --git a/packages/hoppscotch-app/src/components/http/ImportCurl.vue b/packages/hoppscotch-app/src/components/http/ImportCurl.vue index 96f664cf9..19f88dba8 100644 --- a/packages/hoppscotch-app/src/components/http/ImportCurl.vue +++ b/packages/hoppscotch-app/src/components/http/ImportCurl.vue @@ -14,19 +14,26 @@ diff --git a/packages/hoppscotch-app/src/components/http/Request.vue b/packages/hoppscotch-app/src/components/http/Request.vue index c7db4975c..606859df5 100644 --- a/packages/hoppscotch-app/src/components/http/Request.vue +++ b/packages/hoppscotch-app/src/components/http/Request.vue @@ -132,80 +132,84 @@ - - - - - - + + + + diff --git a/packages/hoppscotch-app/src/components/smart/ConfirmModal.vue b/packages/hoppscotch-app/src/components/smart/ConfirmModal.vue index 1b667746e..f327db6ff 100644 --- a/packages/hoppscotch-app/src/components/smart/ConfirmModal.vue +++ b/packages/hoppscotch-app/src/components/smart/ConfirmModal.vue @@ -13,14 +13,20 @@ diff --git a/packages/hoppscotch-app/src/components/smart/Modal.vue b/packages/hoppscotch-app/src/components/smart/Modal.vue index 901bdbc1d..0a6be9332 100644 --- a/packages/hoppscotch-app/src/components/smart/Modal.vue +++ b/packages/hoppscotch-app/src/components/smart/Modal.vue @@ -18,7 +18,7 @@ @mousedown="!dialog ? close() : null" >
diff --git a/packages/hoppscotch-app/src/components/teams/Add.vue b/packages/hoppscotch-app/src/components/teams/Add.vue index fe8a835dc..488635f62 100644 --- a/packages/hoppscotch-app/src/components/teams/Add.vue +++ b/packages/hoppscotch-app/src/components/teams/Add.vue @@ -18,13 +18,19 @@ diff --git a/packages/hoppscotch-app/src/components/teams/Edit.vue b/packages/hoppscotch-app/src/components/teams/Edit.vue index 772494a4d..35788dd56 100644 --- a/packages/hoppscotch-app/src/components/teams/Edit.vue +++ b/packages/hoppscotch-app/src/components/teams/Edit.vue @@ -176,13 +176,19 @@ diff --git a/packages/hoppscotch-app/src/components/teams/Invite.vue b/packages/hoppscotch-app/src/components/teams/Invite.vue index c24784da0..da7d663c4 100644 --- a/packages/hoppscotch-app/src/components/teams/Invite.vue +++ b/packages/hoppscotch-app/src/components/teams/Invite.vue @@ -294,8 +294,8 @@ v-if="sendInvitesResult.length" class="flex justify-between flex-1 text-secondaryLight" > - -

- - - + + +