misc_pterodactyl-panel/resources/assets/styles/components/navigation.css

97 lines
2.2 KiB
CSS
Raw Normal View History

.nav {
2019-02-04 01:45:22 +00:00
@apply .bg-blue-dark .border-b .border-t .border-blue-darkest;
2018-09-12 03:08:01 +00:00
height: 56px;
& .logo {
@apply .mr-8 .font-sans .font-thin .text-3xl .text-white .inline-block;
& a {
color: inherit;
text-decoration: none;
}
@screen xsx {
2018-09-12 04:25:02 +00:00
@apply .hidden;
}
}
& .search-box {
@apply .mr-2;
2018-09-12 04:25:02 +00:00
& > .search-input {
@apply .text-sm .p-2 .ml-8 .rounded .border .border-blue-darker .bg-grey-lightest .text-grey-darkest .w-96;
opacity: 0.9;
2018-09-12 04:25:02 +00:00
transition: ease-in-out opacity 150ms;
&:focus {
@apply .border-blue-darkest;
opacity: 1;
}
&.has-search-results {
@apply .border-b-0 .rounded-b-none;
opacity: 1 !important;
}
}
& .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;
2018-09-12 04:25:02 +00:00
2018-09-12 04:32:01 +00:00
& a {
2018-09-12 04:25:02 +00:00
@apply .block .no-underline .p-2 .rounded;
&:hover {
@apply .bg-grey-lighter;
}
}
}
}
& .menu {
@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;
&:hover {
@apply .bg-blue-dark;
}
}
}
2018-06-03 06:31:30 +00:00
}
2019-02-04 01:27:19 +00:00
.sidenav {
a {
@apply .block .no-underline .text-grey-darker .py-2;
transition: color 75ms ease-in;
&:hover {
@apply .text-grey;
}
&.router-link-exact-active {
@apply .font-medium;
}
}
}
/*
.sidenav {
2018-08-04 04:30:06 +00:00
@apply .py-2;
a {
2018-08-04 04:30:06 +00:00
@apply .block .py-3 .px-6 .text-grey-darkest .no-underline .border .border-transparent;
2018-08-04 04:30:06 +00:00
&:hover, &.router-link-exact-active {
@apply .border-grey-light .bg-grey-lightest;
2018-08-04 04:30:06 +00:00
border-left: 1px solid transparent;
border-right: 1px solid transparent;
}
&.router-link-exact-active + a:hover {
border-top: 1px solid transparent;
}
}
}
2019-02-04 01:27:19 +00:00
*/