Skip to content

Commit

Permalink
Merge branch 'layer5io:master' into patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
Manvendra2000 authored Oct 22, 2024
2 parents c74f6c5 + 8f85129 commit dbea57e
Show file tree
Hide file tree
Showing 36 changed files with 1,255 additions and 139 deletions.
2 changes: 1 addition & 1 deletion assets/scss/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

@include media-breakpoint-down(lg) {
.td-navbar-nav-scroll {
max-width: 100%;
max-width: fit-content;
height: 2.5rem;
overflow: hidden;
font-size: 0.9rem;
Expand Down
71 changes: 54 additions & 17 deletions assets/scss/_navbar_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,48 @@
color: $primary !important;
}

@media (min-width: 768px) {
&:hover {
.dropdown-menu {
display: block;
}
.dropdown-menu {
transform: translate(-15%, 0rem);
}
}
}
// @media (min-width: 768px) {
// &:hover {
// .dropdown-menu {
// transform: translate(-15%, 0rem);
// }
// }
// }
.dropdown-menu {
padding: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 200px;
justify-content: space-around;
padding: 0.5rem .2rem;
// padding: 0;
transform: translate(-15%, 2.5rem);
border-radius: 0;
border-radius: 0.75rem;
&::after{
content: "";
width: 5rem;
}
.dropdown-item {
height: 5rem;
width: 20rem;
width: 5rem;
display: flex;
flex-direction: column;
align-items: center;
border-radius: 0.75rem;
.logo-container {
height: 2rem;
width: 2rem;
margin: 1rem 0;
margin: 0.5rem 0;
display: flex;
align-items: center;
justify-content: center;
img {
width: 100%;
}
}
span {
margin-left: 1rem;
}
// span {
// margin-left: 1rem;
// }
&:hover {
color: $black;
img {
Expand All @@ -55,3 +64,31 @@
.dropdown{
position: static;
}

.avatar-container {
cursor: pointer;
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
border-radius: 50%;
background-color: #c5c5c5;
overflow: hidden;
border: 2px solid rgb(60, 73, 79);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
&:hover {
background-color: #ebebeb;
border: 2px solid rgb(0, 179, 159);
}
}
.avatar-container a img {
width: 100%;
height: 100%;
object-fit: cover;
}
img.grid-icon {
transition: filter 0.15s ease-in-out;
&:hover {
filter: invert(.6);
}
}
2 changes: 1 addition & 1 deletion assets/scss/_search_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
background-color: $body-bg !important;

.td-navbar-nav-scroll {
max-width: fit-content;
// max-width: fit-content;
@media (max-width: 991.98px){
padding-bottom: 3rem;
}
Expand Down
141 changes: 81 additions & 60 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,10 @@
.nav-link.active {
border-width: 1px;
border-style: solid;
border-image: linear-gradient(
to bottom,
border-image: linear-gradient(to bottom,
rgba($dark, 0.2) 30%,
rgba($primary, 0.3) 60%,
$primary 90% 100%
)
1;
$primary 90% 100%) 1;
padding-bottom: 0.3rem;
align-items: center;
justify-content: center;
Expand Down Expand Up @@ -83,7 +80,7 @@ body {

// Inline code
p code,
li > code,
li>code,
table code {
color: inherit;
padding: 0.2em 0.4em;
Expand All @@ -104,7 +101,7 @@ body {
background-color: $gray-900;
padding: $spacer;

> code {
>code {
background-color: inherit !important;
padding: 0;
margin: 0;
Expand Down Expand Up @@ -205,14 +202,12 @@ a:not([href]):not([class]):hover {
}

.td-sidebar {
background-image: linear-gradient(
to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000
);
background-image: linear-gradient(to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000);
position: sticky;
height: calc(100vh - 5.5rem);
top: 5.5rem;
Expand Down Expand Up @@ -282,20 +277,14 @@ a:not([href]):not([class]):hover {
&.active:not(.tree-root) {
border-width: 1px;
border-style: solid;
border-image: linear-gradient(
to left,
border-image: linear-gradient(to left,
rgba($dark, 0) 30%,
rgba($primary, 0.3) 60%,
$primary 90% 100%
)
1;
background-image: linear-gradient(
to left,
$primary 90% 100%) 1;
background-image: linear-gradient(to left,
rgba($dark, 0.2) 30%,
rgba($primary, 0.3) 60%,
$primary 90% 100%
)
1;
$primary 90% 100%) 1;
padding: 0.25rem;
padding-left: 0.5rem !important;
// background-image: linear-gradient(to left, rgba($dark,.33),rgba($dark,.5),rgba($dark,.75),#1e2117, #31412b, #3b6447, #378b6d, #00b39f);
Expand All @@ -317,14 +306,12 @@ a:not([href]):not([class]):hover {
.td-sidebar-toc {
line-height: 1.25rem;
border-left: 1px solid $border-color;
background-image: linear-gradient(
to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000
);
background-image: linear-gradient(to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000);

@supports (position: sticky) {
position: sticky;
Expand Down Expand Up @@ -381,6 +368,50 @@ a:not([href]):not([class]):hover {
border-color: #00b39f;
}

// front-matter
.matterinfo {
font-weight: $font-weight-medium;
background: $black;
font-family: "Open Sans";
border-style: solid;
margin: 2rem auto;
padding: 1rem;
border-color: #00b39f;
border-radius: 10px;
}

.heading {
font-size: 1.2rem;
color: #00b39f;
}

.matterheader {
font-size: 1.2rem;
color: #00b39f;
}

.matterinfo .plan-support {
display: flex;
align-items: center;
}

.matterinfo .plan-support .support-icon {
width: 20px;
height: 20px;
margin-right: 10px;
}

.plan-icon {
display: inline-block;
}

.tier {
color: #00b39f;
font-weight: bold;
padding: 0 5px;
}


// Style alert boxes.

.alert {
Expand All @@ -407,12 +438,12 @@ a:not([href]):not([class]):hover {
transition: color 0.8s;
transition: background-color 0.8s;

> img {
>img {
width: 2rem;
margin-right: 0.5rem;
}

> img:hover {
>img:hover {
filter: brightness(0) invert(1);
}

Expand All @@ -426,21 +457,15 @@ a:not([href]):not([class]):hover {
margin-bottom: 4rem;
font-size: 5rem;
text-align: left;
background: linear-gradient(
217deg,
background: linear-gradient(217deg,
rgba(249, 245, 13, 0.26),
rgba(223, 255, 219, 0.57) 9.03%
),
linear-gradient(
127deg,
rgba(223, 255, 219, 0.57) 9.03%),
linear-gradient(127deg,
rgba(249, 245, 13, 0.7),
rgba(223, 225, 199, 0.1) 41.12%
),
linear-gradient(
336deg,
rgba(223, 225, 199, 0.1) 41.12%),
linear-gradient(336deg,
rgba(249, 245, 13, 0.1),
rgba(239, 239, 251, 0.81) 0%
);
rgba(239, 239, 251, 0.81) 0%);
background-position:
0% 0%,
0% 0%;
Expand All @@ -465,11 +490,9 @@ a:not([href]):not([class]):hover {
transform: rotate(-55.68deg);
flex-shrink: 0;
overflow: hidden;
background-image: linear-gradient(
180deg,
rgba(0, 179, 115, 0) 0%,
rgba(0, 179, 159, 0.3) 100%
);
background-image: linear-gradient(180deg,
rgba(0, 179, 115, 0) 0%,
rgba(0, 179, 159, 0.3) 100%);
position: absolute;
top: -18rem;
right: -32rem;
Expand Down Expand Up @@ -498,15 +521,13 @@ a:not([href]):not([class]):hover {
left: -24rem;
overflow: hidden;

> .dash-ircle {
>.dash-ircle {
width: 74.125rem;
height: 74.125rem;
flex-shrink: 0;
background: radial-gradient(
50% 50% at 50% 50%,
rgba(0, 179, 159, 0.2) 0%,
rgba(0, 179, 159, 0) 100%
);
background: radial-gradient(50% 50% at 50% 50%,
rgba(0, 179, 159, 0.2) 0%,
rgba(0, 179, 159, 0) 100%);
position: absolute;
overflow: hidden;
background-clip: border-box;
Expand Down Expand Up @@ -643,7 +664,7 @@ a:not([href]):not([class]):hover {
gap: 3rem;
}

.tab-content > .active {
.tab-content>.active {
display: flex;
}

Expand All @@ -653,4 +674,4 @@ a:not([href]):not([class]):hover {

.csvtable {
width: 100%;
}
}
2 changes: 1 addition & 1 deletion build/meshery-cloud.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.8.30
v0.8.34
2 changes: 1 addition & 1 deletion build/meshery-extensions.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.7.121-7
v0.7.125-1
Loading

0 comments on commit dbea57e

Please sign in to comment.