Convert color schema, begin migrating old classes (finishes grey & red)
This commit is contained in:
parent
6c7a5d5bb9
commit
32b43cff9a
35 changed files with 186 additions and 166 deletions
|
@ -19,7 +19,7 @@
|
|||
@apply .mr-2;
|
||||
|
||||
& > .search-input {
|
||||
@apply .text-sm .p-2 .ml-8 .rounded .border .border-blue-darker .bg-grey-lightest .text-grey-darkest .w-96;
|
||||
@apply .text-sm .p-2 .ml-8 .rounded .border .border-blue-darker .bg-neutral-50 .text-neutral-900 .w-96;
|
||||
opacity: 0.9;
|
||||
transition: ease-in-out opacity 150ms;
|
||||
|
||||
|
@ -35,13 +35,13 @@
|
|||
}
|
||||
|
||||
& .search-results {
|
||||
@apply .absolute .bg-grey-lightest .border .border-blue-darkest .border-t-0 .rounded .rounded-t-none .p-2 .ml-8 .z-50 .w-96;
|
||||
@apply .absolute .bg-neutral-50 .border .border-blue-darkest .border-t-0 .rounded .rounded-t-none .p-2 .ml-8 .z-50 .w-96;
|
||||
|
||||
& a {
|
||||
@apply .block .no-underline .p-2 .rounded;
|
||||
|
||||
&:hover {
|
||||
@apply .bg-grey-lighter;
|
||||
@apply .bg-neutral-100;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -51,7 +51,7 @@
|
|||
@apply .flex .h-full .items-center;
|
||||
|
||||
& > a {
|
||||
@apply .block .flex .self-stretch .items-center .no-underline .text-grey-lighter .font-light .text-sm .px-5;
|
||||
@apply .block .flex .self-stretch .items-center .no-underline .text-neutral-100 .font-light .text-sm .px-5;
|
||||
|
||||
&:hover {
|
||||
@apply .bg-blue-dark;
|
||||
|
@ -61,16 +61,24 @@
|
|||
}
|
||||
|
||||
.sidenav {
|
||||
a {
|
||||
@apply .block .no-underline .text-grey-darker .py-2;
|
||||
transition: color 75ms ease-in;
|
||||
ul {
|
||||
@apply .list-reset;
|
||||
|
||||
&:hover {
|
||||
@apply .text-grey;
|
||||
}
|
||||
& li {
|
||||
@apply .block;
|
||||
|
||||
&.router-link-exact-active {
|
||||
@apply .font-medium;
|
||||
& > a {
|
||||
transition: border-left-color 250ms linear, color 250ms linear;
|
||||
@apply .block .px-4 .py-3 .border-l-3 .border-neutral-100 .no-underline .text-neutral-400 .font-medium;
|
||||
|
||||
&:hover, &.router-link-exact-active {
|
||||
@apply .text-neutral-800;
|
||||
}
|
||||
|
||||
&.router-link-exact-active {
|
||||
@apply .border-blue .cursor-default;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -79,10 +87,10 @@
|
|||
@apply .py-2;
|
||||
|
||||
a {
|
||||
@apply .block .py-3 .px-6 .text-grey-darkest .no-underline .border .border-transparent;
|
||||
@apply .block .py-3 .px-6 .text-neutral-900 .no-underline .border .border-transparent;
|
||||
|
||||
&:hover, &.router-link-exact-active {
|
||||
@apply .border-grey-light .bg-grey-lightest;
|
||||
@apply .border-neutral-400 .bg-neutral-50;
|
||||
|
||||
border-left: 1px solid transparent;
|
||||
border-right: 1px solid transparent;
|
||||
|
|
Reference in a new issue