diff --git a/assets/scss/styles.scss b/assets/scss/styles.scss index a31cb78de..b83d84651 100644 --- a/assets/scss/styles.scss +++ b/assets/scss/styles.scss @@ -35,11 +35,6 @@ @apply text-primary; } -::placeholder { - @apply text-secondaryLight; - @apply opacity-25; -} - html { scroll-behavior: smooth; } @@ -162,6 +157,7 @@ hr { @apply text-secondaryDark text-lg; } +.textarea, .input, .select { @apply flex flex-1; @@ -189,7 +185,7 @@ pre.ace_editor { @apply z-0; } -select { +.select { @apply appearance-none; @apply cursor-pointer; @@ -323,7 +319,6 @@ input[type="checkbox"] { .splitpanes__splitter { @apply relative; @apply bg-primaryLight; - @apply transition; } .splitpanes--vertical > .splitpanes__splitter { @@ -339,7 +334,7 @@ input[type="checkbox"] { @apply inset-0; @apply bg-dividerLight; @apply opacity-0; - @apply z-1; + @apply z-30; @apply transition; content: ""; @@ -348,7 +343,7 @@ input[type="checkbox"] { .splitpanes__splitter::after { @apply absolute; @apply inset-0; - @apply z-1; + @apply z-30; @apply transition; @apply flex; @apply items-center; diff --git a/assets/scss/themes.scss b/assets/scss/themes.scss index 2ea5c590e..ff45ef176 100644 --- a/assets/scss/themes.scss +++ b/assets/scss/themes.scss @@ -16,17 +16,17 @@ // Light Text color --secondary-light-color: theme("colors.true-gray.500"); // Dark Text color - --secondary-dark-color: theme("colors.white"); + --secondary-dark-color: theme("colors.true-gray.100"); // Border color --divider-color: theme("colors.true-gray.700"); // Light Border color - --divider-light-color: theme("colors.true-gray.800"); + --divider-light-color: theme("colors.dark.600"); // Dark Border color - --divider-dark-color: theme("colors.true-gray.600"); + --divider-dark-color: theme("colors.dark.200"); // Error color - --error-color: theme("colors.true-gray.600"); + --error-color: theme("colors.dark.800"); // Tooltip color - --tooltip-color: theme("colors.true-gray.200"); + --tooltip-color: theme("colors.true-gray.100"); // Editor theme --editor-theme: "merbivore_soft"; } @@ -62,25 +62,25 @@ // Background color --primary-color: theme("colors.dark.900"); // Light Background color - --primary-light-color: theme("colors.dark.700"); + --primary-light-color: theme("colors.dark.800"); // Dark Background color - --primary-dark-color: theme("colors.dark.800"); + --primary-dark-color: theme("colors.true-gray.900"); // Text color --secondary-color: theme("colors.true-gray.400"); // Light Text color - --secondary-light-color: theme("colors.true-gray.600"); + --secondary-light-color: theme("colors.true-gray.500"); // Dark Text color --secondary-dark-color: theme("colors.true-gray.100"); // Border color - --divider-color: theme("colors.dark.800"); + --divider-color: theme("colors.true-gray.800"); // Light Border color - --divider-light-color: theme("colors.dark.700"); + --divider-light-color: theme("colors.true-gray.900"); // Dark Border color - --divider-dark-color: theme("colors.dark.600"); + --divider-dark-color: theme("colors.dark.200"); // Error color --error-color: theme("colors.dark.800"); // Tooltip color - --tooltip-color: theme("colors.true-gray.200"); + --tooltip-color: theme("colors.true-gray.100"); // Editor theme --editor-theme: "vibrant_ink"; } diff --git a/components/button/Secondary.vue b/components/button/Secondary.vue index 4da793f61..c23475a45 100644 --- a/components/button/Secondary.vue +++ b/components/button/Secondary.vue @@ -11,11 +11,12 @@ items-center justify-center focus:outline-none + hover:bg-primaryDark " :class="[ color ? `text-${color}-400 hover:text-${color}-600 focus:text-${color}-600` - : 'text-secondary hover:text-secondaryDark hover:bg-primaryDark focus:text-secondaryDark', + : 'text-secondary hover:text-secondaryDark focus:text-secondaryDark', label ? 'px-3' : 'px-2', rounded ? 'rounded-full' : 'rounded', { 'opacity-75 cursor-not-allowed': disabled }, diff --git a/components/collections/ChooseType.vue b/components/collections/ChooseType.vue index 20c1db591..2fe0d42f1 100644 --- a/components/collections/ChooseType.vue +++ b/components/collections/ChooseType.vue @@ -27,6 +27,7 @@ py-3 px-4 focus:outline-none + select " @change="updateSelectedTeam(myTeams[$event.target.value])" > diff --git a/components/collections/graphql/Collection.vue b/components/collections/graphql/Collection.vue index 2078a1a42..d159a3076 100644 --- a/components/collections/graphql/Collection.vue +++ b/components/collections/graphql/Collection.vue @@ -88,6 +88,7 @@ /> diff --git a/components/environments/Environment.vue b/components/environments/Environment.vue index 2a82e3b19..25c5219d8 100644 --- a/components/environments/Environment.vue +++ b/components/environments/Environment.vue @@ -58,6 +58,7 @@ /> diff --git a/components/history/graphql/Card.vue b/components/history/graphql/Card.vue index ce4a653c4..0b07e38a9 100644 --- a/components/history/graphql/Card.vue +++ b/components/history/graphql/Card.vue @@ -25,9 +25,9 @@