Skip to content

Commit ccea8fa

Browse files
author
Vivek Vishal
authored
Merge branch 'master' into fix/searchbar-click
2 parents e69290a + ca466d9 commit ccea8fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+33285
-87
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
![image](https://github.com/user-attachments/assets/926e71c4-4f1b-4188-8540-6f951c173710)# Layer5 Product Documentation
2-
1+
<div>
2+
<a href="https://meshery.io/community"><img alt="Layer5 Community" src=".github/readme/images//community.svg" style="margin-right:8px;padding-top:9px;" width="140px" align="left" /></a>
3+
<p>
4+
✔️ <em><strong>Join</strong></em> any or all of the weekly meetings on <a href="https://calendar.google.com/calendar/b/1?cid=bGF5ZXI1LmlvX2VoMmFhOWRwZjFnNDBlbHZvYzc2MmpucGhzQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20">community calendar</a>.<br />
5+
✔️ <em><strong>Watch</strong></em> community <a href="https://www.youtube.com/Layer5io?sub_confirmation=1">meeting recordings</a>.<br />
6+
✔️ <em><strong>Access</strong></em> the <a href="https://drive.google.com/drive/u/4/folders/0ABH8aabN4WAKUk9PVA">Community Drive</a> by completing a community <a href="https://layer5.io/newcomer">Member Form</a>.<br />
7+
✔️ <em><strong>Discuss</strong></em> in the <a href="https://discuss.layer5.io">Community Forum</a>.<br />
8+
✔️ <em><strong>Explore more</strong></em> in the <a href="https://layer5.io/community/handbook">Community Handbook</a>.<br />
9+
</p>
10+
</div>
311
Explore tutorials and documentation by product in the docs.layer5.io website; documentation and developer resources of Layer5 products.
412

513
## Contributions Welcome
@@ -197,7 +205,7 @@ Find out more on the <a href="https://layer5.io/community">Layer5 community</a>.
197205
<img alt="Shows an illustrated light mode meshery logo in light color mode and a dark mode meshery logo dark color mode." src=".github/readme/images//slack-128.png" width="110px" align="right" style="margin-left:10px;padding-top:13px;">
198206
</picture>
199207
</a>
200-
<div class="flex">
208+
<div>
201209
<a href="https://meshery.io/community"><img alt="Layer5 Community" src=".github/readme/images//community.svg" style="margin-right:8px;padding-top:9px;" width="140px" align="left" /></a>
202210
<p>
203211
✔️ <em><strong>Join</strong></em> any or all of the weekly meetings on <a href="https://calendar.google.com/calendar/b/1?cid=bGF5ZXI1LmlvX2VoMmFhOWRwZjFnNDBlbHZvYzc2MmpucGhzQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20">community calendar</a>.<br />

assets/scss/_nav.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
@include media-breakpoint-down(lg) {
7070
.td-navbar-nav-scroll {
71-
max-width: 100%;
71+
max-width: fit-content;
7272
height: 2.5rem;
7373
overflow: hidden;
7474
font-size: 0.9rem;

assets/scss/_navbar_project.scss

Lines changed: 54 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,39 +10,48 @@
1010
color: $primary !important;
1111
}
1212

13-
@media (min-width: 768px) {
14-
&:hover {
15-
.dropdown-menu {
16-
display: block;
17-
}
18-
.dropdown-menu {
19-
transform: translate(-15%, 0rem);
20-
}
21-
}
22-
}
13+
// @media (min-width: 768px) {
14+
// &:hover {
15+
// .dropdown-menu {
16+
// transform: translate(-15%, 0rem);
17+
// }
18+
// }
19+
// }
2320
.dropdown-menu {
24-
padding: 0;
21+
display: flex;
22+
flex-direction: row;
23+
flex-wrap: wrap;
24+
width: 180px;
25+
justify-content: center;
26+
padding: 0.5rem .2rem;
27+
// padding: 0;
2528
transform: translate(-15%, 2.5rem);
26-
border-radius: 0;
29+
border-radius: 0.75rem;
30+
&::after{
31+
content: "";
32+
width: 5rem;
33+
}
2734
.dropdown-item {
2835
height: 5rem;
29-
width: 20rem;
36+
width: 5rem;
3037
display: flex;
38+
flex-direction: column;
3139
align-items: center;
40+
border-radius: 0.75rem;
3241
.logo-container {
3342
height: 2rem;
3443
width: 2rem;
35-
margin: 1rem 0;
44+
margin: 0.5rem 0;
3645
display: flex;
3746
align-items: center;
3847
justify-content: center;
3948
img {
4049
width: 100%;
4150
}
4251
}
43-
span {
44-
margin-left: 1rem;
45-
}
52+
// span {
53+
// margin-left: 1rem;
54+
// }
4655
&:hover {
4756
color: $black;
4857
img {
@@ -55,3 +64,31 @@
5564
.dropdown{
5665
position: static;
5766
}
67+
68+
.avatar-container {
69+
cursor: pointer;
70+
width: 2.5rem;
71+
height: 2.5rem;
72+
display: flex;
73+
align-items: center;
74+
border-radius: 50%;
75+
background-color: #c5c5c5;
76+
overflow: hidden;
77+
border: 2px solid rgb(60, 73, 79);
78+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
79+
&:hover {
80+
background-color: #ebebeb;
81+
border: 2px solid rgb(0, 179, 159);
82+
}
83+
}
84+
.avatar-container a img {
85+
width: 100%;
86+
height: 100%;
87+
object-fit: cover;
88+
}
89+
img.grid-icon {
90+
transition: filter 0.15s ease-in-out;
91+
&:hover {
92+
filter: invert(.6);
93+
}
94+
}

assets/scss/_search_project.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
background-color: $body-bg !important;
132132

133133
.td-navbar-nav-scroll {
134-
max-width: fit-content;
134+
// max-width: fit-content;
135135
@media (max-width: 991.98px){
136136
padding-bottom: 3rem;
137137
}

build/meshery-cloud.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.8.34
1+
v0.8.41

build/meshery-extensions.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.7.124-2
1+
v0.7.128-1
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: v0.8.35
3+
date: 2024-10-22T21:46:47Z
4+
tag: v0.8.35
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
## 🔤 General
10+
## 🖥 Cloud UI
11+
12+
- Add next Head to include meta descriptions @sudhanshutech (#2853)
13+
- Use sistent svgs for catalog and remove the old svgs. @amitamrutiya (#2846)
14+
15+
## 💻 Server
16+
17+
- [feat] add anonymous user role and kanvas permissions @dragon-slayer875 (#2792)
18+
19+
## 🦴 Infrastructure
20+
21+
- [feat] add anonymous user role and kanvas permissions @dragon-slayer875 (#2792)
22+
23+
## 👨🏽‍💻 Contributors
24+
25+
Thank you to our contributors for making this release possible:
26+
@MUzairS15, @aabidsofi19, @amitamrutiya, @dragon-slayer875, @l5io and @sudhanshutech
27+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: v0.8.36
3+
date: 2024-10-23T13:27:19Z
4+
tag: v0.8.36
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
## 🔤 General
10+
## 🖥 Cloud UI
11+
12+
- fix search author bug in catalog @sudhanshutech (#2859)
13+
- fix bug download token @sudhanshutech (#2856)
14+
15+
## 💻 Server
16+
17+
- fix comment notifications @aabidsofi19 (#2855)
18+
19+
## ☁️ Api Specifications
20+
21+
- fix comment notifications @aabidsofi19 (#2855)
22+
23+
## 🐛 Bug Fixes
24+
25+
- fix search author bug in catalog @sudhanshutech (#2859)
26+
27+
## 👨🏽‍💻 Contributors
28+
29+
Thank you to our contributors for making this release possible:
30+
@MUzairS15, @aabidsofi19, @l5io, @leecalcote and @sudhanshutech
31+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: v0.8.37
3+
date: 2024-10-24T08:42:01Z
4+
tag: v0.8.37
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
## 🔤 General
10+
- bump schemas @aabidsofi19 (#2862)
11+
12+
## 🖥 Cloud UI
13+
14+
- Fix spaces/overview nav menu not redirect issue @amitamrutiya (#2860)
15+
16+
## 👨🏽‍💻 Contributors
17+
18+
Thank you to our contributors for making this release possible:
19+
@MUzairS15, @aabidsofi19, @amitamrutiya and @l5io
20+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: v0.8.38
3+
date: 2024-10-24T12:21:23Z
4+
tag: v0.8.38
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
## 🔤 General
10+
- chore: add test id for login page @jerensl (#2863)
11+
12+
## 🖥 Cloud UI
13+
14+
- Add missing api for ui crash @sudhanshutech (#2864)
15+
- create new workspace activity widget @amitamrutiya (#2857)
16+
17+
## 👨🏽‍💻 Contributors
18+
19+
Thank you to our contributors for making this release possible:
20+
@amitamrutiya, @jerensl, @l5io and @sudhanshutech
21+

0 commit comments

Comments
 (0)