From 6635d449a50b76fa83457bf98d188aec92f8a0b7 Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Wed, 7 Jul 2021 23:28:42 +0000 Subject: [PATCH] feat: history section --- assets/scss/styles.scss | 17 +- assets/scss/themes.scss | 2 +- components/app/Header.vue | 2 +- components/app/Section.vue | 2 +- components/app/Sidenav.vue | 44 +++-- components/button/Secondary.vue | 2 +- components/collections/graphql/Request.vue | 1 - components/collections/my/Collection.vue | 1 - components/collections/teams/Collection.vue | 1 - components/collections/teams/Folder.vue | 1 - components/history/graphql/Card.vue | 8 +- components/history/index.vue | 108 +++++-------- components/history/rest/Card.vue | 171 +++++--------------- components/smart/ConfirmModal.vue | 1 + components/smart/Tab.vue | 12 +- components/smart/Tabs.vue | 92 ++++++----- components/smart/__tests__/Tab.spec.js | 4 +- components/smart/__tests__/Tabs.spec.js | 8 +- lang/en-US.json | 3 +- layouts/default.vue | 8 +- pages/api.vue | 12 +- pages/enter.vue | 2 +- pages/graphql.vue | 4 +- windi.config.js | 1 + 24 files changed, 199 insertions(+), 308 deletions(-) diff --git a/assets/scss/styles.scss b/assets/scss/styles.scss index 0dfc67663..81058f050 100644 --- a/assets/scss/styles.scss +++ b/assets/scss/styles.scss @@ -33,6 +33,10 @@ @apply h-4; } +.hide-scrollbar::-webkit-scrollbar { + @apply hidden; +} + ::selection { @apply bg-accent; @apply text-primary; @@ -214,17 +218,8 @@ input[type="checkbox"] { } } -.error:not(input), -.disabled:not(input), -[disabled] { - @apply bg-error; - @apply text-secondaryLight; - @apply fill-current; - @apply cursor-not-allowed; -} - .info-response { - @apply text-yellow-400; + @apply text-pink-400; } .success-response { @@ -232,7 +227,7 @@ input[type="checkbox"] { } .redir-response { - @apply text-pink-400; + @apply text-yellow-400; } .cl-error-response { diff --git a/assets/scss/themes.scss b/assets/scss/themes.scss index 1347a0d9e..0537952e6 100644 --- a/assets/scss/themes.scss +++ b/assets/scss/themes.scss @@ -41,7 +41,7 @@ // Text color --secondary-color: theme("colors.gray.600"); // Light Text color - --secondary-light-color: theme("colors.gray.500"); + --secondary-light-color: theme("colors.gray.400"); // Dark Text color --secondary-dark-color: theme("colors.gray.700"); // Border color diff --git a/components/app/Header.vue b/components/app/Header.vue index 814e8641d..6de341137 100644 --- a/components/app/Header.vue +++ b/components/app/Header.vue @@ -1,5 +1,5 @@