Initial commit
This commit is contained in:
53
styles/layout/_animation.scss
Normal file
53
styles/layout/_animation.scss
Normal file
@@ -0,0 +1,53 @@
|
||||
@keyframes px-mask-in {
|
||||
from {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
to {
|
||||
background-color: var(--maskbg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes px-scalein {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scaleY(0.8);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes px-fadein {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes px-fadeout {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.px-scalein {
|
||||
animation: px-scalein .12s cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.px-fadein {
|
||||
animation: px-fadein .15s linear;
|
||||
}
|
||||
|
||||
.px-fadeout {
|
||||
animation: px-fadeout .15s linear;
|
||||
}
|
||||
97
styles/layout/_breadcrumb.scss
Normal file
97
styles/layout/_breadcrumb.scss
Normal file
@@ -0,0 +1,97 @@
|
||||
.layout-breadcrumb {
|
||||
ol {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
gap: 1rem;
|
||||
flex-wrap: wrap;
|
||||
color: var(--text-color-secondary);
|
||||
|
||||
li {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
.breadcrumb-menu {
|
||||
margin: 0;
|
||||
padding: 0 1.15rem 0 0.85rem;
|
||||
padding-right: 0;
|
||||
list-style: none;
|
||||
flex-grow: 1;
|
||||
color: var(--topbar-item-text-color);
|
||||
margin-right: -2rem;
|
||||
|
||||
li {
|
||||
margin-left: 1.5rem;
|
||||
.breadcrumb-search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
margin-left: 0rem;
|
||||
|
||||
.breadcrumb-searchbutton {
|
||||
display: flex;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.search-input-wrapper {
|
||||
position: relative;
|
||||
width: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
|
||||
|
||||
span {
|
||||
width: 100%;
|
||||
|
||||
.p-inputtext {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
border-radius: 40px;
|
||||
padding: 9px;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 18px;
|
||||
margin-top: -9px;
|
||||
margin-right: 9px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.breadcrumb-search-active {
|
||||
.breadcrumb-searchbutton {
|
||||
opacity: 0;
|
||||
display: none;
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.search-input-wrapper {
|
||||
width: 100%;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
border-radius: var(--border-radius);
|
||||
i {
|
||||
display: block;
|
||||
}
|
||||
.p-input-icon-right {
|
||||
input {
|
||||
border-radius: var(--border-radius);
|
||||
width: 100%;
|
||||
background: var(--surface-ground);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content-breadcrumb {
|
||||
margin-bottom: 2rem;
|
||||
padding: 0 0.5rem;
|
||||
}
|
||||
44
styles/layout/_config.scss
Normal file
44
styles/layout/_config.scss
Normal file
@@ -0,0 +1,44 @@
|
||||
.layout-wrapper {
|
||||
.layout-config-button {
|
||||
display: block;
|
||||
position: fixed;
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
line-height: 3rem;
|
||||
background: var(--primary-color);
|
||||
color: var(--primary-color-text);
|
||||
text-align: center;
|
||||
top: 50%;
|
||||
right: 0;
|
||||
margin-top: -1.5rem;
|
||||
border-top-left-radius: var(--border-radius);
|
||||
border-bottom-left-radius: var(--border-radius);
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
transition: background-color var(--transition-duration);
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
z-index: 999;
|
||||
box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);
|
||||
|
||||
i {
|
||||
font-size: 2rem;
|
||||
line-height: inherit;
|
||||
transform: rotate(0deg);
|
||||
transition: transform 1s;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: var(--primary-400);
|
||||
}
|
||||
}
|
||||
|
||||
.layout-config-sidebar {
|
||||
&.p-sidebar {
|
||||
.p-sidebar-content {
|
||||
padding-left: 2rem;
|
||||
padding-right: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
3
styles/layout/_content.scss
Normal file
3
styles/layout/_content.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
.layout-content-wrapper {
|
||||
padding: 2rem;
|
||||
}
|
||||
28
styles/layout/_fonts.scss
Normal file
28
styles/layout/_fonts.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
/* poppins-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local(''), url('./fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./fonts/poppins-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
/* poppins-500 - latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local(''), url('./fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./fonts/poppins-v20-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
/* poppins-600 - latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: local(''), url('./fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./fonts/poppins-v20-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
/* poppins-700 - latin */
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local(''), url('./fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('./fonts/poppins-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
12
styles/layout/_layout_dark.scss
Normal file
12
styles/layout/_layout_dark.scss
Normal file
@@ -0,0 +1,12 @@
|
||||
$breakpoint: 992px !default;
|
||||
$scale: 14px !default;
|
||||
|
||||
.layout-dark {
|
||||
--sidebar-shadow: none;
|
||||
--sidebar-border: 1px solid var(--surface-border);
|
||||
--card-shadow: none;
|
||||
--body-bg: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
|
||||
--body-image: url('/layout/images/pages/effect-ondark.png');
|
||||
--root-menu-item-hover-bg: rgba(255, 255, 255, 0.05);
|
||||
--exception-pages-image: url('/layout/images/pages/exception-ondark.png');
|
||||
}
|
||||
12
styles/layout/_layout_light.scss
Normal file
12
styles/layout/_layout_light.scss
Normal file
@@ -0,0 +1,12 @@
|
||||
$breakpoint: 992px !default;
|
||||
$scale: 14px !default;
|
||||
|
||||
.layout-light {
|
||||
--sidebar-shadow: 0px 4px 50px #d9ddfc;
|
||||
--sidebar-border: 1px solid transparent;
|
||||
--card-shadow: 0px 4px 30px rgba(221, 224, 255, 0.54);
|
||||
--body-bg: linear-gradient(180deg, #f6f9fc 0%, #ececf9 100%);
|
||||
--body-image: url('/layout/images/pages/effect-onlight.png');
|
||||
--root-menu-item-hover-bg: rgba(68, 72, 109, 0.07);
|
||||
--exception-pages-image: url('/layout/images/pages/exception-onlight.png');
|
||||
}
|
||||
48
styles/layout/_main.scss
Normal file
48
styles/layout/_main.scss
Normal file
@@ -0,0 +1,48 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
min-height: 100%;
|
||||
color: var(--text-color);
|
||||
font-family: var(--font-family);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.layout-container {
|
||||
background: var(--body-bg);
|
||||
min-height: 100vh;
|
||||
&:before {
|
||||
min-height: 100vh;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
content: "";
|
||||
z-index: 0;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-image: var(--body-image);
|
||||
background-repeat: no-repeat;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
}
|
||||
10
styles/layout/_profile.scss
Normal file
10
styles/layout/_profile.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.layout-profile-sidebar {
|
||||
&.p-sidebar {
|
||||
width: 25rem;
|
||||
|
||||
.p-sidebar-content {
|
||||
padding-left: 2rem;
|
||||
padding-right: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
134
styles/layout/_responsive.scss
Normal file
134
styles/layout/_responsive.scss
Normal file
@@ -0,0 +1,134 @@
|
||||
@media screen and (min-width: 992px) {
|
||||
.layout-container {
|
||||
&.layout-static {
|
||||
.layout-sidebar {
|
||||
transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 22rem;
|
||||
transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-static-inactive {
|
||||
.layout-sidebar {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-overlay {
|
||||
.layout-content-wrapper {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
z-index: 999;
|
||||
transform: translateX(-100%);
|
||||
transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
background: var(--surface-ground);
|
||||
}
|
||||
|
||||
&.layout-overlay-active {
|
||||
.layout-sidebar {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content-breadcrumb {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 991px) {
|
||||
.blocked-scroll {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.layout-topbar {
|
||||
.topbar-menu {
|
||||
margin-right: 0rem !important;
|
||||
}
|
||||
.right-panel-button{
|
||||
position: absolute !important;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-container {
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 0;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
z-index: 999;
|
||||
transform: translateX(-100%);
|
||||
transition: transform var(--transition-duration);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&.layout-mobile-active {
|
||||
.layout-sidebar {
|
||||
transform: translateX(0);
|
||||
background: var(--surface-ground);
|
||||
}
|
||||
|
||||
.layout-mask {
|
||||
display: block;
|
||||
animation: fadein var(--transition-duration);
|
||||
}
|
||||
}
|
||||
|
||||
.layout-mask {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 998;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: var(--maskbg);
|
||||
}
|
||||
|
||||
.topbar-breadcrumb {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.content-breadcrumb {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1960px) {
|
||||
.layout-content, .landing-wrapper {
|
||||
width: 1504px;
|
||||
margin-left: auto !important;
|
||||
margin-right: auto !important;
|
||||
}
|
||||
|
||||
.layout-topbar {
|
||||
width: 1504px;
|
||||
margin-left: auto !important;
|
||||
margin-right: auto !important;
|
||||
.topbar-menu {
|
||||
margin-right: 0rem !important;
|
||||
}
|
||||
|
||||
.right-panel-button{
|
||||
position: absolute !important;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
283
styles/layout/_sidebar_drawer.scss
Normal file
283
styles/layout/_sidebar_drawer.scss
Normal file
@@ -0,0 +1,283 @@
|
||||
@media screen and (min-width: 992px) {
|
||||
.layout-container {
|
||||
&.layout-drawer {
|
||||
.layout-topbar {
|
||||
.topbar-menubutton {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
height: 100%;
|
||||
top: 0;
|
||||
transition: width 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
width: 6rem;
|
||||
z-index: 999;
|
||||
background: var(--surface-ground);
|
||||
padding-bottom: 3rem;
|
||||
.layout-menu-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
padding: 1.5rem 0rem;
|
||||
height: 5.71rem;
|
||||
.app-logo {
|
||||
text-align: center;
|
||||
.app-logo-small {
|
||||
display: inline;
|
||||
order: 1;
|
||||
}
|
||||
|
||||
.app-logo-normal {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 0;
|
||||
transition: width 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
transition-delay: 50ms;
|
||||
max-width: 0;
|
||||
height: 0;
|
||||
img {
|
||||
width: 0;
|
||||
transition: width 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
transition-delay: 50ms;
|
||||
max-width: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar-anchor {
|
||||
display: none;
|
||||
width: 1.388rem;
|
||||
height: 1.25rem;
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--primary-color);
|
||||
background-color: transparent;
|
||||
transition: background-color var(--transition-duration), transform 0.3s;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-menu-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
transition: all 0.4s;
|
||||
padding: 0 1rem;
|
||||
.layout-root-menuitem {
|
||||
> .layout-menuitem-root-text {
|
||||
opacity: 0;
|
||||
white-space: nowrap;
|
||||
transition: all 0.1s;
|
||||
|
||||
> span {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.layout-menuitem-icon {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
> .layout-menuitem-root-icon {
|
||||
display: block;
|
||||
margin-right: 0.125rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
width: 3rem;
|
||||
a {
|
||||
border: none;
|
||||
width: 3rem;
|
||||
padding: 0.5rem 1rem;
|
||||
span {
|
||||
opacity: 0;
|
||||
white-space: nowrap;
|
||||
transition: all 0.1s;
|
||||
}
|
||||
|
||||
.layout-menuitem-icon {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-drawer {
|
||||
.layout-content-wrapper {
|
||||
margin-left: 5.25rem;
|
||||
transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
overflow-x: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-sidebar-active {
|
||||
.layout-sidebar {
|
||||
width: 22rem;
|
||||
padding-bottom: 0rem;
|
||||
.layout-menu-container {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
padding: 1.5rem 2rem;
|
||||
justify-content: space-between;
|
||||
height: 5.71rem;
|
||||
.app-logo {
|
||||
text-align: left;
|
||||
.app-logo-normal {
|
||||
height: auto;
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
img {
|
||||
&:first-child {
|
||||
width: 32px;
|
||||
max-width: none;
|
||||
}
|
||||
&:last-child {
|
||||
width: 142px;
|
||||
max-width: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.app-logo-small {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar-anchor {
|
||||
display: block;
|
||||
animation: px-fadein 0.15s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
padding: 0 1rem;
|
||||
|
||||
li {
|
||||
border-radius: 8px;
|
||||
a {
|
||||
border-left: 8px solid transparent;
|
||||
}
|
||||
}
|
||||
li.active-menuitem {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
> a {
|
||||
border-left-color: var(--primary-color);
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
.layout-submenu-toggler {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
a {
|
||||
user-select: none;
|
||||
|
||||
&.active-menuitem {
|
||||
> .layout-submenu-toggler {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
.layout-root-menuitem {
|
||||
> div {
|
||||
padding-left: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 12px;
|
||||
opacity: 1;
|
||||
> .layout-menuitem-text {
|
||||
font-size: 0.857rem;
|
||||
opacity: 1;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
width: auto;
|
||||
li {
|
||||
width: auto;
|
||||
}
|
||||
a {
|
||||
width: auto;
|
||||
|
||||
.layout-submenu-toggler {
|
||||
display: block;
|
||||
}
|
||||
|
||||
span {
|
||||
opacity: 1;
|
||||
white-space: nowrap;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
overflow: hidden;
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 4rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 5.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-sidebar-anchored {
|
||||
.sidebar-header {
|
||||
.layout-sidebar-anchor {
|
||||
background-color: var(--primary-color);
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 22rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
174
styles/layout/_sidebar_horizontal.scss
Normal file
174
styles/layout/_sidebar_horizontal.scss
Normal file
@@ -0,0 +1,174 @@
|
||||
@media screen and (min-width: 992px) {
|
||||
.layout-container {
|
||||
&.layout-horizontal {
|
||||
.layout-topbar {
|
||||
.topbar-menubutton {
|
||||
display: none;
|
||||
}
|
||||
.layout-topbar-menu-section {
|
||||
width: calc(100% - 320px);
|
||||
}
|
||||
.topbar-breadcrumb {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
width: auto;
|
||||
height: auto;
|
||||
top: 0;
|
||||
z-index: 999;
|
||||
overflow: visible;
|
||||
flex-direction: row;
|
||||
position: static;
|
||||
|
||||
.layout-menu-container {
|
||||
overflow: auto;
|
||||
padding-bottom: 0;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
padding: 0;
|
||||
.app-logo {
|
||||
.app-logo-normal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.app-logo-small {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
padding: 0 1rem;
|
||||
> li {
|
||||
margin-bottom: 0rem;
|
||||
&:first-child {
|
||||
margin-top: 0rem;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
li.active-menuitem {
|
||||
> ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-root-menuitem {
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
> .layout-menuitem-root-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
> a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0.75rem;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
color: var(--text-color);
|
||||
transition: background-color var(--transition-duration);
|
||||
|
||||
.layout-submenu-toggler {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.layout-menuitem-icon {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.layout-menuitem-text {
|
||||
font-size: 0.875rem;
|
||||
display: block;
|
||||
margin-left: 0.75rem;
|
||||
margin-right: 0.75rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--menuitem-hover-bg-color);
|
||||
}
|
||||
}
|
||||
|
||||
> ul {
|
||||
position: absolute;
|
||||
left: auto;
|
||||
top: 5rem;
|
||||
min-width: 15rem;
|
||||
background: var(--surface-overlay);
|
||||
box-shadow: var(--sidebar-shadow);
|
||||
padding: 0.8rem;
|
||||
border-radius: var(--border-radius);
|
||||
max-height: 20rem;
|
||||
overflow: auto;
|
||||
z-index: 999;
|
||||
|
||||
a {
|
||||
padding-right: 0.5rem;
|
||||
color: var(--text-color);
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
&:hover {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
201
styles/layout/_sidebar_reveal.scss
Normal file
201
styles/layout/_sidebar_reveal.scss
Normal file
@@ -0,0 +1,201 @@
|
||||
@media screen and (min-width: 992px) {
|
||||
.layout-container {
|
||||
&.layout-reveal {
|
||||
.layout-topbar {
|
||||
.topbar-menubutton {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
height: 100%;
|
||||
top: 0;
|
||||
transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
transform: translateX(-15.5rem);
|
||||
z-index: 999;
|
||||
background: var(--surface-ground);
|
||||
padding-bottom: 3rem;
|
||||
.sidebar-header {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
padding: 1.5rem 1rem;
|
||||
height: 5.71rem;
|
||||
.app-logo {
|
||||
text-align: right;
|
||||
.app-logo-small {
|
||||
display: inline;
|
||||
order: 1;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.app-logo-normal {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar-anchor {
|
||||
display: none;
|
||||
width: 1.388rem;
|
||||
height: 1.25rem;
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--primary-color);
|
||||
background-color: transparent;
|
||||
transition: background-color var(--transition-duration), transform 0.3s;
|
||||
}
|
||||
}
|
||||
.layout-menu-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
.layout-root-menuitem {
|
||||
> .layout-menuitem-root-text {
|
||||
> span {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
> .layout-menuitem-root-icon {
|
||||
display: block;
|
||||
margin-right: 0.125rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
|
||||
a {
|
||||
padding: 0.5rem 1rem;
|
||||
.layout-menuitem-text {
|
||||
order: 1;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.layout-submenu-toggler {
|
||||
order: 2;
|
||||
display: none;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.layout-menuitem-icon {
|
||||
order: 3;
|
||||
margin-right: 0;
|
||||
font-size: 1rem;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-reveal {
|
||||
.layout-content-wrapper {
|
||||
margin-left: 4.25rem;
|
||||
transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-sidebar-active {
|
||||
.layout-sidebar {
|
||||
padding-bottom: 0rem;
|
||||
transform: translateX(0);
|
||||
.layout-menu-container {
|
||||
overflow: auto;
|
||||
}
|
||||
.sidebar-header {
|
||||
padding: 1.5rem 2rem;
|
||||
justify-content: space-between;
|
||||
.app-logo {
|
||||
text-align: left;
|
||||
.app-logo-normal {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.app-logo-small {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.layout-sidebar-anchor {
|
||||
display: block;
|
||||
animation: px-fadein 0.15s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
.layout-root-menuitem {
|
||||
> .layout-menuitem-root-text {
|
||||
> .layout-menuitem-root-icon {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
a {
|
||||
.layout-submenu-toggler {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
overflow: hidden;
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 4rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 5.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.layout-sidebar-anchored {
|
||||
.sidebar-header {
|
||||
.layout-sidebar-anchor {
|
||||
background-color: var(--primary-color);
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 22rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
169
styles/layout/_sidebar_slim.scss
Normal file
169
styles/layout/_sidebar_slim.scss
Normal file
@@ -0,0 +1,169 @@
|
||||
@media screen and (min-width: 992px) {
|
||||
.layout-container {
|
||||
&.layout-slim {
|
||||
.layout-topbar {
|
||||
.topbar-menubutton {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
padding: 1.7rem 0;
|
||||
.app-logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.app-logo-normal {
|
||||
display: none;
|
||||
img {
|
||||
height: 1.714rem;
|
||||
}
|
||||
}
|
||||
|
||||
.app-logo-small {
|
||||
display: inline;
|
||||
img {
|
||||
height: 2.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
width: 5.857rem;
|
||||
overflow: visible;
|
||||
z-index: 999;
|
||||
.layout-menu-container {
|
||||
overflow: auto;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 5.857rem;
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
padding: 0 1rem;
|
||||
|
||||
ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
li.active-menuitem {
|
||||
background-color: unset;
|
||||
> ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-root-menuitem {
|
||||
> .layout-menuitem-root-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
> a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 12px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
transition: background-color var(--transition-duration);
|
||||
margin: 0px;
|
||||
padding: 8px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 0 auto 1rem auto;
|
||||
|
||||
.layout-submenu-toggler {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layout-menuitem-icon {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.layout-menuitem-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: (--primary-color-text);
|
||||
background-color: var(--primary-color);
|
||||
}
|
||||
}
|
||||
|
||||
> ul {
|
||||
position: absolute;
|
||||
left: 5.857rem;
|
||||
top: 0;
|
||||
min-width: 15rem;
|
||||
background: var(--surface-ground);
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: var(--sidebar-shadow);
|
||||
padding: 0.5rem;
|
||||
max-height: 20rem;
|
||||
overflow: auto;
|
||||
z-index: 999;
|
||||
|
||||
a {
|
||||
padding-right: 0.5rem;
|
||||
color: var(--text-color);
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
.layout-menuitem-icon {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
167
styles/layout/_sidebar_slim_plus.scss
Normal file
167
styles/layout/_sidebar_slim_plus.scss
Normal file
@@ -0,0 +1,167 @@
|
||||
@media screen and (min-width: 992px) {
|
||||
.layout-container {
|
||||
&.layout-slim-plus {
|
||||
.layout-topbar {
|
||||
.topbar-menubutton {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
justify-content: center;
|
||||
padding: 1.7rem 0;
|
||||
.app-logo {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
.app-logo-normal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.app-logo-small {
|
||||
display: inline;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-sidebar {
|
||||
width: 8rem;
|
||||
overflow: visible;
|
||||
z-index: 999;
|
||||
.layout-menu-container {
|
||||
overflow: auto;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-content-wrapper {
|
||||
margin-left: 8rem;
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
padding: 0 1rem;
|
||||
ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
li.active-menuitem {
|
||||
> ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-root-menuitem {
|
||||
> .layout-menuitem-root-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
> a {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 12px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
outline: none;
|
||||
transition: background-color var(--transition-duration);
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0 auto 1rem auto;
|
||||
padding: 8px;
|
||||
|
||||
.layout-submenu-toggler {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layout-menuitem-icon {
|
||||
font-size: 1.5rem;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
.layout-menuitem-text {
|
||||
font-size: 0.875rem;
|
||||
display: block;
|
||||
margin-top: 0.25rem;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
|
||||
&:hover {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
}
|
||||
}
|
||||
|
||||
> ul {
|
||||
position: absolute;
|
||||
left: 8rem;
|
||||
top: 0;
|
||||
min-width: 15rem;
|
||||
background: var(--surface-ground);
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: var(--sidebar-shadow);
|
||||
padding: 0.5rem;
|
||||
max-height: 20rem;
|
||||
overflow: auto;
|
||||
z-index: 999;
|
||||
|
||||
a {
|
||||
padding-right: 0.5rem;
|
||||
color: var(--text-color);
|
||||
border-radius: var(--border-radius);
|
||||
|
||||
.layout-menuitem-icon {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
182
styles/layout/_sidebar_vertical.scss
Normal file
182
styles/layout/_sidebar_vertical.scss
Normal file
@@ -0,0 +1,182 @@
|
||||
.layout-sidebar {
|
||||
position: fixed;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 21rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 0px 40px 40px 0px;
|
||||
|
||||
.sidebar-header {
|
||||
padding: 1.7rem 1.57rem 0.5rem 2.42rem;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
|
||||
.app-logo {
|
||||
width: 100%;
|
||||
.app-logo-normal {
|
||||
display: inline;
|
||||
img {
|
||||
height: 1.714rem;
|
||||
border: 0 none;
|
||||
}
|
||||
}
|
||||
.app-logo-small {
|
||||
img {
|
||||
height: 2.5rem;
|
||||
border: 0 none;
|
||||
}
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-menu-container {
|
||||
overflow: auto;
|
||||
flex: 1;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
.layout-menu {
|
||||
margin: 0;
|
||||
padding: 0 1.5rem;
|
||||
list-style-type: none;
|
||||
|
||||
> li {
|
||||
margin-bottom: 2.25rem;
|
||||
&:first-child {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
li {
|
||||
border-radius: 8px;
|
||||
a {
|
||||
border-left: 8px solid transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-root-menuitem {
|
||||
> div {
|
||||
padding-left: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 12px;
|
||||
|
||||
> .layout-menuitem-text {
|
||||
font-size: 0.857rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
> a {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
user-select: none;
|
||||
|
||||
&.active-menuitem {
|
||||
> .layout-submenu-toggler {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
li.active-menuitem {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
> a {
|
||||
border-left-color: var(--primary-color);
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
.layout-submenu-toggler {
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
}
|
||||
> ul {
|
||||
max-height: 1000px;
|
||||
transition: max-height 1s ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
|
||||
a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
outline: 0 none;
|
||||
color: var(--text-color);
|
||||
cursor: pointer;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
transition: background-color var(--transition-duration), box-shadow var(--transition-duration);
|
||||
|
||||
.layout-menuitem-icon {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.layout-submenu-toggler {
|
||||
font-size: 75%;
|
||||
margin-left: auto;
|
||||
transition: transform var(--transition-duration);
|
||||
}
|
||||
|
||||
&.active-route {
|
||||
border-left-color: var(--primary-color);
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--root-menu-item-hover-bg);
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
overflow: hidden;
|
||||
border-radius: var(--border-radius);
|
||||
max-height: 0;
|
||||
transition: max-height 0.45s cubic-bezier(0.86, 0, 0.07, 1);
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 2.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 3.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 4rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 5.5rem;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
padding-left: 5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
178
styles/layout/_topbar.scss
Normal file
178
styles/layout/_topbar.scss
Normal file
@@ -0,0 +1,178 @@
|
||||
.layout-rightmenu-button {
|
||||
background: linear-gradient(271.89deg, rgba(70,82,104,1), rgba(115,130,161,1));
|
||||
border-radius: 6px 0px 0px 6px;
|
||||
border-color: transparent;
|
||||
border-left: 0 none;
|
||||
box-shadow: 0px 0px 10px rgb(15 139 253 / 25%);
|
||||
right: 0;
|
||||
color: #fff;
|
||||
span {
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
&:enabled:hover {
|
||||
background: linear-gradient(271.89deg, rgba(70,82,104,0.5), rgba(115,130,161,0.5));
|
||||
border-color: transparent;
|
||||
}
|
||||
}
|
||||
.layout-topbar {
|
||||
margin-bottom: 2rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
.topbar-start {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 999;
|
||||
.topbar-menubutton {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 2rem;
|
||||
border-radius: var(--border-radius);
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
flex-shrink: 0;
|
||||
transition: background-color var(--transition-duration);
|
||||
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
color: var(--text-color);
|
||||
transition: color var(--transition-duration);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--primary-color);
|
||||
|
||||
i {
|
||||
color: var(--primary-color-text);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.topbar-menu {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0 1.15rem 0 0.85rem;
|
||||
padding-right: 0;
|
||||
list-style: none;
|
||||
flex-grow: 1;
|
||||
color: var(--topbar-item-text-color);
|
||||
margin-right: -2rem;
|
||||
|
||||
li {
|
||||
margin-left: 1.5rem;
|
||||
&.topbar-item {
|
||||
margin-left: 1.5rem;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
|
||||
img {
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 50%;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
transition: box-shadow var(--transition-duration);
|
||||
|
||||
&:focus {
|
||||
box-shadow: var(--focus-ring);
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
position: absolute;
|
||||
bottom: -9.4rem;
|
||||
right: 0;
|
||||
display: none;
|
||||
color: var(--text-color);
|
||||
background: var(--surface-ground);
|
||||
box-shadow: var(--box-shadow);
|
||||
&.active-topbar-menu {
|
||||
display: block;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
.topbar-search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
.topbar-searchbutton {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.search-input-wrapper {
|
||||
position: relative;
|
||||
width: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
|
||||
|
||||
span {
|
||||
width: 100%;
|
||||
|
||||
.p-inputtext {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
border-radius: 40px;
|
||||
padding: 9px;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 18px;
|
||||
margin-top: -9px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.topbar-search-active {
|
||||
.topbar-searchbutton {
|
||||
opacity: 0;
|
||||
display: none;
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
transition: opacity .1s;
|
||||
transition-delay: .1s;
|
||||
}
|
||||
|
||||
.search-input-wrapper {
|
||||
width: 190px;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
border-radius: var(--border-radius);
|
||||
i {
|
||||
display: block;
|
||||
}
|
||||
input{
|
||||
border-radius: var(--border-radius);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
span {
|
||||
color: var(--item-text-color);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
62
styles/layout/_typography.scss
Normal file
62
styles/layout/_typography.scss
Normal file
@@ -0,0 +1,62 @@
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 1.5rem 0 1rem 0;
|
||||
font-family: inherit;
|
||||
font-weight: 600;
|
||||
line-height: 1.2;
|
||||
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
mark {
|
||||
background: #FFF8E1;
|
||||
padding: .25rem .4rem;
|
||||
border-radius: var(--border-radius);
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1rem 0;
|
||||
padding: 0 2rem;
|
||||
border-left: 4px solid #90A4AE;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-top: solid var(--surface-border);
|
||||
border-width: 1px 0 0 0;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 1rem 0;
|
||||
line-height: 1.5;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
30
styles/layout/_utils.scss
Normal file
30
styles/layout/_utils.scss
Normal file
@@ -0,0 +1,30 @@
|
||||
.card {
|
||||
border-radius: 8px;
|
||||
background: var(--surface-card);
|
||||
padding: 16px;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 16px;
|
||||
|
||||
.card-header {
|
||||
font-weight: 500;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.card-subtitle {
|
||||
color: var(--text-color-secondary);
|
||||
font-size: 0.857rem;
|
||||
font-weight: 500;
|
||||
margin: -1rem 0 1rem 0;
|
||||
}
|
||||
}
|
||||
|
||||
.p-toast {
|
||||
&.p-toast-top-right,
|
||||
&.p-toast-top-left,
|
||||
&.p-toast-top-center {
|
||||
top: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
BIN
styles/layout/fonts/poppins-v20-latin-500.woff
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-500.woff
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-500.woff2
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-500.woff2
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-600.woff
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-600.woff
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-600.woff2
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-600.woff2
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-700.woff
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-700.woff
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-700.woff2
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-700.woff2
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-regular.woff
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-regular.woff
Normal file
Binary file not shown.
BIN
styles/layout/fonts/poppins-v20-latin-regular.woff2
Normal file
BIN
styles/layout/fonts/poppins-v20-latin-regular.woff2
Normal file
Binary file not shown.
1478
styles/layout/layout.css
Normal file
1478
styles/layout/layout.css
Normal file
File diff suppressed because it is too large
Load Diff
23
styles/layout/layout.scss
Normal file
23
styles/layout/layout.scss
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
$breakpoint:992px !default;
|
||||
$scale:14px !default;
|
||||
|
||||
@use './_fonts';
|
||||
@use './_animation';
|
||||
@use './_layout_light';
|
||||
@use './layout_dark';
|
||||
@use './_main';
|
||||
@use './_sidebar_vertical';
|
||||
@use './_sidebar_slim';
|
||||
@use './_sidebar_slim_plus';
|
||||
@use './_sidebar_horizontal';
|
||||
@use './_sidebar_reveal';
|
||||
@use './_sidebar_drawer';
|
||||
@use './_responsive';
|
||||
@use './_topbar';
|
||||
@use './_breadcrumb';
|
||||
@use './_profile';
|
||||
@use './_config';
|
||||
@use './_content';
|
||||
@use './_typography';
|
||||
@use './_utils';
|
||||
Reference in New Issue
Block a user