Skip to content

Commit

Permalink
Merge branch 'development' into lz-api-restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
dbreseman committed Sep 19, 2024
2 parents f1258ae + 9aeb69e commit 007ae78
Show file tree
Hide file tree
Showing 646 changed files with 6,690 additions and 12,572 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ hugo.exe
# Legacy for users who still have leftovers from previous Docs Stack
/_site/
/.vscode/
/.idea/
bin
data/asset*.json
data/history.yml
Expand Down
60 changes: 0 additions & 60 deletions .idea/workspace.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ os: linux # optional, this is default
dist: jammy # or bionic | xenial | trusty | precise with xenial as default - Recommended here: https://docs.travis-ci.com/user/reference/overview/#deprecated-virtualization-environments

git:
depth: 20000 # We're cloning a max of xxx commits, so the author date is correct
depth: 20000 # We're cloning this many commits as it is roughly covering the last 4 years of commits, thus letting us show the last changed date on the documentation pages.
quiet: true # prevent commit numbers appearing in the log and being flagged as potential security leaks.
submodules: false # turn off submodules

Expand Down
2 changes: 0 additions & 2 deletions .vscode/spellright.dict

This file was deleted.

42 changes: 42 additions & 0 deletions assets/scss/_badge.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// Styling for badges (enabled in the frontmatter)
// Badge styling mimics the PDS guidelines: https://designsystem.mendix.com/doc/p/Components/Badge/5b0de933-d909-4269-b957-276f16f71341
// For guidance on how to use these, see https://mendix.atlassian.net/wiki/spaces/RNDHB/pages/2757787839/Front+Matter+Metadata#For-Badges

.badge-pill {
border-radius: 4px;
padding: 4px 4px 3px 4px;
margin-left: 2px;
}

.badge-draft {
background-color: $warning-9;
}

.badge-beta {
color: $gray-900;
background-color: $gray-500;
}

.badge-lts {
background-color: $success-9;
}

.badge-mts {
background-color: $info-8;
}

.badge-deprecated {
background-color: $gray-100;
border: solid 1px $gray-500;
color: $gray-900;
}

.badge-recommended {
border: solid 1px $success-9;
color: $success-9;
}

.badge-react {
background-color: $info-1;
color: $info-7;
}
64 changes: 64 additions & 0 deletions assets/scss/_font-face.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@font-face { // LZ - Added for MxDock by request 2024-01-30
font-family: "noto-sans";
src: local("noto-sans"), url("/fonts/noto-sans/noto-sans-400.woff2") format("woff2");
font-style: normal;
font-weight: 400;
font-display: swap;
}

@font-face {
font-family: "noto-sans";
src: local("noto-sans"), url("/fonts/noto-sans/noto-sans-400-italic.woff2") format("woff2");
font-style: italic;
font-weight: 400;
font-display: swap;
}

@font-face {
font-family: "noto-sans";
src: local("noto-sans"), url("/fonts/noto-sans/noto-sans-600.woff2") format("woff2");
font-style: normal;
font-weight: 600;
font-display: swap;
}

@font-face {
font-family: "noto-sans";
src: local("noto-sans"), url("/fonts/noto-sans/noto-sans-600-italic.woff2") format("woff2");
font-style: italic;
font-weight: 600;
font-display: swap;
}

/* Medium */
@font-face {
font-family: "Patron";
font-style: normal;
font-weight: 500;
font-display: swap;
src: local("Patron Medium"), local("Patron-Medium"),
url("/fonts/patron/PatronWEB-Medium.woff2") format("woff2");
}

/* Light */
@font-face {
font-family: "Patron";
font-style: normal;
font-weight: 300;
font-display: swap;
src: local("Patron Light"), local("Patron-Light"),
url("/fonts/patron/PatronWEB-Light.woff2") format("woff2");
}

/* The main font is Noto Sans */
body {
font-family: "noto-sans", sans-serif;
font-weight: 400;
line-height: 1.5; // LZ - line height 1.5 (Regular) according to PDS
}

/* Page Title H1 use Patron Medium. The rest of headings on your page should use Noto Sans */
.page-title {
font-family: "Patron", "noto-sans", sans-serif;
font-weight: 500;
}
Loading

0 comments on commit 007ae78

Please sign in to comment.