Skip to content

Commit 61699ee

Browse files
authored
Merge branch 'master' into fix-label
2 parents 658b80f + f466848 commit 61699ee

File tree

73 files changed

+954
-313
lines changed

Some content is hidden

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

73 files changed

+954
-313
lines changed

.github/workflows/slack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Slack Notify
22
on:
33
watch:
44
types: [started]
5+
issues:
6+
types: [labeled]
57
jobs:
68
star-notify:
79
if: github.event_name == 'watch'

assets/icons/puzzle-pieces.svg

Lines changed: 13 additions & 0 deletions
Loading

assets/scss/_landing_project.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,8 @@
214214

215215
.logo-container {
216216
width: 50px;
217-
margin-right: 8px;
217+
margin: auto;
218+
margin-right: .65rem;
218219
}
219220

220221
@media screen and (max-width: 768px) {

assets/scss/_nav.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
background: $primary;
2525
min-height: 4rem;
26-
margin: 0;
26+
margin: auto;
2727
z-index: 32;
2828

2929
.navbar-brand {
@@ -70,12 +70,11 @@
7070
.td-navbar-nav-scroll {
7171
max-width: fit-content;
7272
height: 3.5rem;
73-
overflow: hidden;
7473
font-size: 0.9rem;
7574
}
7675

7776
.navbar-brand {
78-
margin-right: 0;
77+
// margin-right: 0;
7978
}
8079

8180
.navbar-nav {

assets/scss/_styles_project.scss

Lines changed: 53 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
@import "_navbar_project.scss";
99
@import "tax_project.scss";
1010
@import "search_project.scss";
11-
@import "videos.scss";
11+
@import "_videos_project.scss";
1212
@import "subscription.scss";
13-
@import "video-landing.scss";
13+
@import "_video-landing_project.scss";
1414

1515
.navbar-dark {
1616
min-height: 5rem;
@@ -456,26 +456,66 @@ a:not([href]):not([class]):hover {
456456
}
457457
}
458458

459-
figure {
459+
figure,
460+
figure[style*="width"] {
461+
width: max-content !important;
462+
max-width: 70% !important;
463+
margin: 0 auto 2rem auto;
464+
460465
display: flex;
461466
flex-direction: column;
467+
align-items: center;
462468

463-
> img:hover { cursor: pointer; }
464469
> img {
465-
margin: 0 auto; // Center the image
466-
margin-bottom: 0px !important;
470+
width: auto !important;
471+
max-width: 100% !important;
472+
height: auto;
473+
object-fit: contain !important;
474+
display: block;
475+
margin: 0 auto;
467476
border-radius: .5rem .5rem 0rem 0rem !important;
468477
box-shadow: 0 0 0.5rem rgba(0, 179, 159, 0.4) !important;
478+
479+
&:hover {
480+
cursor: pointer;
481+
}
469482
}
470-
figcaption {
471-
color: $dark;
472-
background-color: rgba($lightslategray, 1);
473-
// font-style:italic;
483+
484+
> figcaption {
485+
width: 100% !important;
474486
text-align: center;
475-
margin: 0rem;
476-
padding: 0 0.45 0.45 0.45rem;
487+
padding: 0.5rem 1rem;
488+
background-color: rgba($lightslategray, 1);
489+
color: $dark;
477490
border-radius: 0 0 .5rem .5rem;
478-
box-sizing: border-box; // Include padding in width calculation
491+
box-sizing: border-box;
492+
}
493+
}
494+
495+
// Mobile: override for full-width content alignment
496+
@media (max-width: 600px) {
497+
figure,
498+
figure[style*="width"] {
499+
max-width: 100% !important;
500+
box-sizing: border-box;
501+
}
502+
}
503+
504+
.md__image img,
505+
img.md-image-responsive {
506+
width: auto;
507+
max-width: 70%;
508+
max-height: 80vh;
509+
height: auto;
510+
display: block;
511+
margin: 0 auto;
512+
object-fit: contain;
513+
514+
@media (max-width: 600px) {
515+
width: auto;
516+
max-width: 100%;
517+
padding: 0 1rem;
518+
box-sizing: border-box;
479519
}
480520
}
481521

assets/scss/_variables_project.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ $body-bg: #010101;
3232

3333
// Buttons
3434
$btn-line-height: 3rem;
35+
$btn-close-color: $white;
36+
// $btn-close-opacity: 1;
37+
// $btn-close-hover-opacity: .75;
38+
// $btn-close-focus-opacity: .5;
39+
3540

3641
// Lefthand sidebar with inter-page docs menu
3742

assets/scss/video-landing.scss renamed to assets/scss/_video-landing_project.scss

Lines changed: 38 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
border: none;
1515
}
1616
nav.scrolled {
17-
background-color: #121212 !important;
17+
background-color: $dark !important;
1818
border: 1px solid #333 !important;
1919
}
2020
}
@@ -63,6 +63,16 @@
6363
width: 90%;
6464
margin: 0 auto;
6565
}
66+
a#videoPageLink {
67+
padding: 0rem;
68+
color: $lightslategray;
69+
}
70+
a#videoPageLink:hover {
71+
color: $casper;
72+
}
73+
a#videoPageLink:focus {
74+
color: $white;
75+
}
6676

6777
.hero-video-container {
6878
border-radius: 12px;
@@ -86,7 +96,6 @@
8696
align-items: center;
8797
justify-content: center;
8898
box-shadow: 0 10px 30px rgba(0, 179, 159, 0.4);
89-
cursor: pointer;
9099
transition: all 0.3s ease;
91100
position: absolute;
92101
top: 50%;
@@ -95,25 +104,17 @@
95104
}
96105

97106
.video-btn-wrapper svg {
98-
width: 40px;
99-
height: 40px;
107+
margin-left:5px;
108+
width: 50px;
109+
height: 50px;
100110
}
101111

102112
.play-icon-svg-path {
103-
fill: #00b39f;
113+
fill: $primary;
104114
transition: fill 0.3s ease;
105115
}
106116

107-
.video-btn-wrapper:hover {
108-
background-color: #00b39f;
109-
.play-icon-svg-path {
110-
fill: #fff;
111-
}
112-
}
113117

114-
.video-btn-wrapper:hover .play-icon-path {
115-
fill: #fff;
116-
}
117118

118119
.video-tabs-container {
119120
background: linear-gradient(to right top, #3d3d3d, #343434, #2b2b2b, #222222, #1a1a1a, #181818, #161616, #141414, #181818, #1c1c1c, #212121, #252525);
@@ -160,7 +161,7 @@
160161
display: flex;
161162
align-items: center;
162163
gap: 0.75rem;
163-
flex: 0 0 auto;
164+
flex: 1 0 auto;
164165
white-space: nowrap;
165166
text-decoration: none;
166167
display: flex;
@@ -193,12 +194,12 @@
193194

194195
.category-tab.active {
195196
border-radius: 0;
196-
border-bottom: 2px solid #00b39f;
197+
border-bottom: 2px solid $primary;
197198
color: #fff;
198199
}
199200

200201
.category-tab.active .tab-icon {
201-
background-color: #00b39f;
202+
background-color: $primary;
202203
}
203204

204205
.category-tab.active .tab-icon i {
@@ -229,7 +230,7 @@
229230
}
230231

231232
.subcategory-btn.active {
232-
background-color: #00b39f;
233+
background-color: $primary;
233234
color: #fff;
234235
}
235236

@@ -251,6 +252,12 @@
251252
transform: translateY(-5px);
252253
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
253254
cursor: pointer;
255+
.video-info h3 {
256+
color: #fff;
257+
}
258+
p.video-description{
259+
color: $casper;
260+
}
254261
}
255262

256263
.video-thumbnail {
@@ -316,16 +323,17 @@
316323
margin-bottom: 0.5rem;
317324
font-size: 1.1rem;
318325
font-weight: 600;
326+
color: $casper;
319327
}
320328

321329
.video-duration {
322-
color: #00b39f;
330+
color: $primary;
323331
font-size: 0.875rem;
324332
margin-bottom: 0.45rem;
325333
}
326334

327335
.video-description {
328-
color: #666;
336+
color: $lightslategray;
329337
font-size: 0.9375rem;
330338
line-height: 1.5;
331339
margin-bottom: 0;
@@ -344,6 +352,16 @@
344352
z-index: 2;
345353
}
346354

355+
.video-overlay:hover{
356+
cursor: pointer;
357+
.video-btn-wrapper {
358+
background-color: $primary;
359+
.play-icon-svg-path {
360+
fill: #fff;
361+
}
362+
}
363+
}
364+
347365
.video-iframe-container {
348366
z-index: 1;
349367
display: none;

assets/scss/_videos.scss renamed to assets/scss/_videos_project.scss

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
margin-top: .5rem;
4747
font-style: italic;
4848
}
49-
related-videos {
49+
.related-videos {
5050
margin: 2rem 0;
5151
}
5252
.carousel-item {
@@ -77,4 +77,22 @@
7777
.carousel-indicators button.active {
7878
background-color: #fff;
7979
opacity: 1;
80+
}
81+
82+
.yt-embed-container {
83+
position: relative;
84+
padding-bottom: 56.25%;
85+
height: 0;
86+
overflow: hidden;
87+
margin: 2rem 0;
88+
89+
iframe {
90+
position: absolute;
91+
top: 0;
92+
left: 0;
93+
width: 100%;
94+
height: 100%;
95+
border:0;
96+
}
97+
8098
}

build/meshery-cloud.version

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

build/meshery-extensions.version

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

charts/index.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,26 @@ entries:
4747
- charts/kratos-0.39.1.tgz
4848
version: 0.39.1
4949
layer5-cloud:
50+
- apiVersion: v2
51+
appVersion: v0.8.213
52+
created: "2025-05-06T15:46:54.200583596Z"
53+
dependencies:
54+
- condition: kratos.enabled
55+
name: kratos
56+
repository: '@ory'
57+
version: 0.39.1
58+
- condition: ory/hydra.enabled
59+
name: hydra
60+
repository: '@ory'
61+
version: 0.24.2
62+
description: Layer5 Cloud is a collection of services that can be deployed on-premises.
63+
digest: 9f05174f3f0336b0ec3b77173bd7e81274df451db828a50d6042fd9157fdba25
64+
icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg==
65+
name: layer5-cloud
66+
type: application
67+
urls:
68+
- https://docs.layer5.io/charts/layer5-cloud-v0.8.213.tgz
69+
version: v0.8.213
5070
- apiVersion: v2
5171
appVersion: v0.8.210
5272
created: "2025-04-30T03:24:31.30744298Z"
@@ -5307,4 +5327,4 @@ entries:
53075327
urls:
53085328
- https://docs.layer5.io/charts/layer5-cloud-0.1.0.tgz
53095329
version: 0.1.0
5310-
generated: "2025-04-30T03:24:31.298980961Z"
5330+
generated: "2025-05-06T15:46:54.194293429Z"

charts/layer5-cloud-v0.8.213.tgz

52 KB
Binary file not shown.

content/en/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ onmouseover="changeImage('layer5', 'images/logos/layer5-light.svg')" onmouseout=
2121
<i class="fas fa-arrow-alt-circle-right ms-2"></i>
2222
</a>
2323
<a class="btn btn-lg btn-primary me-3 mb-4 l5btn" href="/kanvas" aria-label="Kanvas Docs"
24-
onmouseover="changeImage('Kanvas', 'images/logos/kanvas-light.svg')" onmouseout="restoreImage('Kanvas', 'images/logos/kanvas-alt.svg')">
25-
<img id="Kanvas" src="images/logos/kanvas-alt.svg" alt="Layer5 Kanvas Docs Logo" />
24+
onmouseover="changeImage('Kanvas', 'images/logos/kanvas-light.svg')" onmouseout="restoreImage('Kanvas', 'images/logos/kanvas-icon-color.svg')">
25+
<img id="Kanvas" src="images/logos/kanvas-icon-color.svg" alt="Layer5 Kanvas Docs Logo" />
2626
Kanvas Docs
2727
<i class="fas fa-arrow-alt-circle-right ms-2"></i>
2828
</a>

0 commit comments

Comments
 (0)