2022-09-24 00:06:55 +00:00
@footer-height: 254px;
2020-12-02 20:48:03 +00:00
@container-md-max-width: 1100px;
[v-cloak] { display: none; }
html, body {
height: 100%;
margin: 0;
}
2023-02-11 00:33:12 +00:00
2023-07-12 00:54:05 +00:00
2020-12-02 20:48:03 +00:00
[purpose='page-wrap'] {
height: 100%;
2021-03-23 09:36:35 +00:00
height: auto !important;//lesshint-disable-line importantRule,duplicateProperty
2020-12-02 20:48:03 +00:00
min-height: 100%;
position: relative;
padding-bottom: @footer-height;
2023-05-30 23:43:53 +00:00
background: linear-gradient(180deg, #E8F1F6 0%, #FFFFFF 200px);
background-position: center 40px;
2020-12-02 20:48:03 +00:00
}
2022-08-10 03:23:14 +00:00
2023-10-05 21:20:08 +00:00
[purpose='header-background'] {
2023-02-11 00:33:12 +00:00
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(15px);
2023-02-14 22:26:23 +00:00
-webkit-backdrop-filter: blur(15px);
2023-10-05 21:20:08 +00:00
}
// Styles for the page header
[purpose='header-container'] {
box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08);
border-bottom: 1px solid #FFFFFF;
// rules for sticky nav transitions
2023-02-11 00:33:12 +00:00
left: 0;
right: 0;
2023-07-12 00:54:05 +00:00
z-index: 199;
2023-02-11 00:33:12 +00:00
position: sticky;
2023-03-16 16:43:09 +00:00
position: -webkit-sticky; //lesshint-disable-line duplicateProperty
2023-02-11 00:33:12 +00:00
top: 0;
2023-12-02 00:19:20 +00:00
transition-property: transform, bottom;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 500ms;
2023-02-11 00:33:12 +00:00
}
2022-12-12 20:19:11 +00:00
[purpose='header-ribbon-cta'] {
2023-05-15 16:29:25 +00:00
background-color: #7487C2;
2022-08-10 03:23:14 +00:00
p {
font-size: 14px;
line-height: 20px;
2022-12-12 20:19:11 +00:00
color: #fff;
2022-08-10 03:23:14 +00:00
}
a {
font-size: 14px;
line-height: 20px;
2023-04-27 17:07:05 +00:00
font-weight: 700;
text-decoration: underline;
2023-05-15 16:29:25 +00:00
color: #fff;
2022-08-10 03:23:14 +00:00
}
}
2020-12-02 20:48:03 +00:00
2022-03-01 19:47:36 +00:00
[purpose='page-header'] {
2023-02-11 00:33:12 +00:00
max-width: 1200px;
height: 80px;
[purpose='header-logo'] {
max-width: 118px;
img {
height: 41px;
width: 118px;
}
}
[purpose='glass-header-btn'] {
color: #FFFFFF;
height: 32px;
position: relative;
font-size: 14px;
font-weight: 700;
padding: 16px;
box-shadow: 1px 1px 2px rgba(25, 33, 71, 0.24);
border-radius: 4px;
background-color: @core-vibrant-red;
2023-10-05 16:03:53 +00:00
overflow: hidden;
2023-02-11 00:33:12 +00:00
}
Implement sticky nav for fleetdm.com (#5298)
* feat: implement sticky nav for fleetdm except the homepage
* feat: add sticky nav to homepage
* Add note for v 4.13 to fleetctl docs (#5274)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* License dispenser query strings (#5321)
Co-authored-by: Tim Kern <tim@fleetdm.com>
* chore(test): rewritten query side panel test using rtl (#5189)
* Update get started (fleetctl preview) instructions on website (#5312)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* update customer layout (#5329)
* Handbook: Rename Slack channel, suggest DRI for #help-golang (#5157)
* Handbook: Rename Slack channel, suggest DRI for #help-golang
* Deleted #help-golang and #help-frontend
This is based on the call Zach and I had today about eliminating the extra "Help" channels, now that there are development groups where more focused conversation can happen without blasting every engineer in the company.
FYI I checked and #help-frontend is actively used, whereas #help-golang is much less active.
* Editor pass - Added and renamed the Rituals section (#5300)
Editor pass for: https://github.com/fleetdm/fleet/pull/5183
I added and renamed the Rituals section with a link for consistency.
This PR is related to: https://github.com/fleetdm/fleet/pull/5299
* Unified text for private IP address (#5301)
* unified text for private ip address
* updated capitalization
* Added utm_source tracking to calendly link (#5281)
Will allow us to track schedule demo submissions from pricing page by adding utm_source
* Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components
* component clean up
* removed redux from routes
* rename file
* moved useDeepEffect hook with others
* removed redux, fleet, app_constants dirs; added types to utilities
* style cleanup
* typo fix
* removed unused ts-ignore comments
* removed redux packages!!!
* formatting
* fixed typing for simple search function
* updated frontend readme
* Website add articles page. (#5243)
* create '/articles' and add 4 test articles
* update build-static-content script for '/articles'
* article pages
* Validate article page metaData
* add articles linked from header, remove test articles
* update article styles
* comment out /articles route, update blog post links
* Move article category page to different branch for future PR
* Update build-static-content.js
* remove pagescript
* Update deploying-fleet-on-render.md
* update meta tags
* lint fixes
* Style & Markdown updates
Made a couple of fixes to the styling and markdown.
* update view action, replace route with regex, update links
* authorsGitHubUserName -> authorGitHubUsername, authorsFullName -> authorFullName
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
* Add slack notif when integration test fails (#5332)
* Editor pass - Registering in a new state w/ Gusto (#5305)
Editor pass for: https://github.com/fleetdm/fleet/pull/5237
* Editor pass - Creating a consulting agreement (#5304)
* Editor pass - Creating a consulting agreement
Editor pass for: https://github.com/fleetdm/fleet/pull/5273/files
* Update people.md
Co-authored-by: Eric <eashaw@sailsjs.com>
* Fix handbook index (#5341)
* fix: review request changes
* fix: revert to using window.innerHeigh for logic to hide the header
* Update layout.ejs
I don't know if this is good syntax, but I want the masthead to stay in position for a little longer.
* feat: format if logic
* fix: rename handler function to windowScrolled
Co-authored-by: Katheryn Satterlee <me@ksatter.com>
Co-authored-by: Eric <eashaw@sailsjs.com>
Co-authored-by: Tim Kern <tim@fleetdm.com>
Co-authored-by: Tharun Rajendran <rajendrantharun@live.com>
Co-authored-by: Zach Wasserman <zach@fleetdm.com>
Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
Co-authored-by: Desmi-Dizney <99777687+Desmi-Dizney@users.noreply.github.com>
Co-authored-by: Martavis Parker <47053705+martavis@users.noreply.github.com>
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
2022-04-25 12:02:15 +00:00
2023-02-11 00:33:12 +00:00
[purpose='glass-header-btn']::before {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
opacity: 1;
content: ' ';
position: absolute;
top: 0;
left: -5px;
width: 60%;
height: 100%;
transform: skew(-10deg);
transition: left 0.5s ease-in, opacity 0.50s ease-in, width 0.5s ease-in;
}
[purpose='glass-header-btn']:hover:before {
opacity: 0;
left: 160px;
width: 110%;
}
[purpose='mobile-nav-toggle-btn'] {
color: #192147;
cursor: unset;
font-size: 16px;
text-decoration: none;
font-family: @navigation-font;
font-weight: @bold;
2023-03-16 16:43:09 +00:00
height: 100%;
2023-02-11 00:33:12 +00:00
img {
width: 16px;
}
}
2022-03-01 19:47:36 +00:00
[purpose='mobile-nav'] {
2023-02-11 00:33:12 +00:00
[purpose='mobile-header-logo'] {
img {
height: 92px;
width: 162px;
}
}
2021-03-31 23:08:36 +00:00
position: fixed;
2023-02-11 00:33:12 +00:00
min-height: 100vh;
2021-03-31 23:08:36 +00:00
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
background-color: #ffffff;
2022-03-01 19:47:36 +00:00
a:not(.btn) {
width: 100%;
padding: 8px 24px 8px 0px;
margin-bottom: 4px;
font-weight: 700;
color: #212529;
cursor: pointer;
}
hr {
margin-top: 4px;
margin-bottom: 8px;
}
2023-02-11 00:33:12 +00:00
[purpose='mobile-nav-close-btn'] {
font-size: 16px;
text-decoration: none;
img {
width: 16px;
}
}
2022-03-01 19:47:36 +00:00
[purpose='mobile-dropdown-toggle'] {
font-weight: 700;
color: @core-fleet-black;
margin-bottom: 0px;
&[aria-expanded='true'] {
color: #6a67fe;
outline: none;
margin-bottom: 4px;
2021-05-07 18:54:29 +00:00
}
}
2023-02-11 00:33:12 +00:00
[purpose='mobile-nav-btn'] {
text-decoration: none;
font-weight: 700;
}
2022-03-01 19:47:36 +00:00
[purpose='mobile-dropdown'] {
2023-02-11 00:33:12 +00:00
[purpose='beta-label'] {
2023-02-14 17:19:04 +00:00
background: linear-gradient(90deg, #FF5C83 0%, #6A67FE 100%);
2023-02-11 00:33:12 +00:00
display: inline-block;
2023-02-14 17:19:04 +00:00
padding: 1px 6px;
2023-02-11 00:33:12 +00:00
text-transform: uppercase;
color: #FFF;
font-weight: 700;
font-size: 11px;
line-height: 20px;
margin-left: 8px;
vertical-align: middle;
}
2022-03-01 19:47:36 +00:00
span {
display: inline-flex;
font-weight: bold;
font-size: 12px;
line-height: 24px;
color: @core-fleet-black-50;
margin-bottom: 4px;
}
a {
display: inline-flex;
width: 100%;
padding: 8px 24px 8px 0px;
font-weight: 400;
color: #212529;
white-space: nowrap;
background-color: transparent;
}
a:hover {
color: #6a67fe;
text-decoration: none;
2021-05-07 18:54:29 +00:00
}
2023-01-11 17:29:38 +00:00
[purpose='beta-label'] {
color: #FFF;
font-weight: 700;
font-size: 11px;
line-height: 20px;
margin-bottom: 0px;
}
2021-05-07 18:54:29 +00:00
}
}
2022-03-01 19:47:36 +00:00
[purpose='header-nav'] {
2023-02-11 00:33:12 +00:00
[purpose='glass-header-btn'] {
color: #FFFFFF;
height: 32px;
position: relative;
font-size: 14px;
font-weight: 700;
padding: 16px;
box-shadow: 1px 1px 2px rgba(25, 33, 71, 0.24);
border-radius: 4px;
background-color: @core-vibrant-red;
text-decoration: none;
}
[purpose='header-nav-btn'][aria-expanded='true'] {
font-weight: 700;
2022-03-01 19:47:36 +00:00
outline: none;
2023-08-18 00:01:08 +00:00
color: #192147;
2022-03-01 19:47:36 +00:00
}
2023-02-11 00:33:12 +00:00
[purpose='header-nav-btn']:before {
display: block;
content: attr(button-text);
font-weight: bold;
height: 0;
overflow: hidden;
visibility: hidden;
}
[purpose='header-nav-btn'] {
color: #192147;
font-weight: 400;
cursor: pointer;
display: inline-block;
}
2023-08-18 00:01:08 +00:00
[purpose='header-nav-btn']:hover {
font-weight: 700;
2022-03-01 19:47:36 +00:00
text-decoration: none;
}
2023-02-11 00:33:12 +00:00
&:focus {
2022-03-01 19:47:36 +00:00
outline-color: none;
}
2023-02-11 00:33:12 +00:00
.current-section {
font-weight: 700;
svg {
path {
fill: #6a67fe;
}
}
}
[purpose='logout-btn'] {
color: @core-fleet-black;
text-decoration: none;
line-height: 23px;
}
&:hover {
font-weight: 700;
}
2022-03-01 19:47:36 +00:00
[purpose='header-dropdown'] {
box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.4);
border-radius: 8px;
a {
color: @core-fleet-black;
font-weight: 400;
line-height: 20px;
}
a:hover {
color: #6a67fe;
text-decoration: none;
}
2023-02-11 00:33:12 +00:00
[purpose='beta-label'] {
2023-02-14 17:19:04 +00:00
background: linear-gradient(90deg, #FF5C83 0%, #6A67FE 100%);
2023-02-11 00:33:12 +00:00
display: inline-block;
2023-02-14 17:19:04 +00:00
padding: 1px 6px;
2023-02-11 00:33:12 +00:00
text-transform: uppercase;
color: #FFF;
font-weight: 700;
font-size: 11px;
line-height: 20px;
margin-left: 8px;
vertical-align: middle;
2021-03-31 23:08:36 +00:00
}
}
2021-03-23 08:56:15 +00:00
}
}
2023-08-04 23:32:00 +00:00
[purpose='admin-nav'] {
justify-content: center;
a {
margin-left: 30px;
margin-right: 30px;
color: @core-fleet-black-75;
&:hover {
color: @core-fleet-black;
}
}
span {
color: @core-fleet-black;
font-weight: 600;
margin-right: 30px;
}
}
2021-03-23 08:56:15 +00:00
2022-03-01 19:47:36 +00:00
// Footer styles
2020-12-02 20:48:03 +00:00
[purpose='page-footer'] {
2023-04-11 13:50:58 +00:00
background-color: #FFF;
color: #515774;
2020-12-02 20:48:03 +00:00
height: @footer-height;
width: 100%;
position: absolute;
left: 0px;
bottom: 0px;
2021-07-01 23:06:14 +00:00
a {
2023-04-11 13:50:58 +00:00
color: #515774;
2023-02-11 00:33:12 +00:00
}
[purpose='footer-logo'] {
width: 118px;
2023-04-11 13:50:58 +00:00
height: 41px;
2020-12-02 20:48:03 +00:00
}
2021-10-04 04:28:20 +00:00
[purpose='footer-container'] {
padding-left: 40px;
padding-right: 40px;
2021-10-29 00:53:20 +00:00
padding-bottom: 32px;
padding-top: 40px;
2023-02-11 00:33:12 +00:00
max-width: 1248px;
}
[purpose='footer-nav'] {
display: flex;
flex-direction: row;
2021-10-29 00:53:20 +00:00
}
[purpose='footer-bottom'] {
2023-04-11 13:50:58 +00:00
background-color: #FFF;
2021-10-29 00:53:20 +00:00
padding-left: 40px;
padding-right: 70px;
2021-10-04 04:28:20 +00:00
}
2023-02-11 00:33:12 +00:00
[purpose='legal-and-social-nav'] {
max-width: 1248px;
[purpose='legal-section'] {
font-size: 11px;
line-height: 18px;
img {
width: 80px;
height: 15px;
}
[purpose='legal-links'] {
a {
padding-left: 16px;
display: inline;
font-size: 11px;
line-height: 18px;
text-decoration: underline;
}
}
}
[purpose='footer-socials'] {
img {
height: 20px;
width: auto;
margin-top: 2px;
}
}
2021-10-04 04:28:20 +00:00
}
2021-10-29 00:53:20 +00:00
2023-02-11 00:33:12 +00:00
2020-12-02 20:48:03 +00:00
}
2022-04-13 06:12:56 +00:00
// Landing page footer styles
[purpose='landing-footer'] {
2023-02-11 00:33:12 +00:00
position: absolute;
bottom: 0px;
width: 100%;
color: #FFFF;
background-color: #182147;
2022-04-13 06:12:56 +00:00
height: 60px;
}
2020-12-02 20:48:03 +00:00
body.detected-mobile {
// Above and beyond the media queries below, this selector (which relies on
// `parasails` automatically attaching this class, if appropriate) contains
// styles intended to be activated specifically when loaded from a recognized
// mobile device, regardless of viewport dimensions. This includes tablet
// devices (like the iPad) as well as handset devices (like the iPhone).
// …
}
2022-08-10 03:23:14 +00:00
@media (max-width: 992px) {
.homepage-cta-banner+.homepage-header-top {
top: 72px;
}
}
2020-12-02 20:48:03 +00:00
2021-10-29 00:53:20 +00:00
@media (max-width: 767px) {
2020-12-02 20:48:03 +00:00
[purpose='page-wrap'] {
2021-10-29 00:53:20 +00:00
padding-bottom: 264px;
2021-10-04 04:28:20 +00:00
2020-12-02 20:48:03 +00:00
[purpose='page-footer'] {
2021-10-29 00:53:20 +00:00
height: 264px;
2020-12-02 20:48:03 +00:00
}
}
}
2022-08-10 03:23:14 +00:00
@media (max-width: 605px) {
.homepage-cta-banner + .homepage-header-top {
top: 92px;
}
}
2021-10-29 00:53:20 +00:00
@media (max-width: 575px) {
2022-06-21 16:12:21 +00:00
[purpose='page-wrap'] {
padding-bottom: 371px;
[purpose='page-footer'] {
height: 371px;
}
2020-12-02 20:48:03 +00:00
}
2023-12-22 00:19:25 +00:00
// For hiding the hubspot chat widget on mobile devices.
#hubspot-messages-iframe-container iframe[aria-label='Chat Widget'] {
display: none !important;//lesshint-disable-line importantRule
}
html.hs-messages-widget-open, html.hs-messages-mobile.hs-messages-widget-open {// Shows the hubspot chat widget when the widget is opened from a "Talk to an expert" button.
#hubspot-messages-iframe-container iframe[aria-label='Chat Widget'] {
display: initial !important;//lesshint-disable-line importantRule
}
}
2020-12-02 20:48:03 +00:00
}
2021-10-29 00:53:20 +00:00
@media (max-width: 490px) {
2023-04-21 17:44:42 +00:00
[purpose='header-ribbon-cta'] {
2023-04-27 17:07:05 +00:00
p {
2023-04-21 17:44:42 +00:00
width: 220px;
}
}
2021-10-04 04:28:20 +00:00
[purpose='page-wrap'] {
2021-10-29 00:53:20 +00:00
padding-bottom: 581px;
2021-10-04 04:28:20 +00:00
[purpose='page-footer'] {
2021-10-29 00:53:20 +00:00
height: 581px;
2021-10-04 04:28:20 +00:00
[purpose='footer-nav'] {
display: block;
}
2021-10-29 00:53:20 +00:00
[purpose='legal-nav'] {
padding-left: 0px;
display: block;
}
2021-10-04 04:28:20 +00:00
}
2022-04-13 06:12:56 +00:00
// Landing page footer styles
[purpose='landing-footer'] {
height: 80px;
}
2020-12-02 20:48:03 +00:00
}
}
2022-08-10 03:23:14 +00:00
@media (max-width: 393px) {
.homepage-cta-banner + .homepage-header-top {
top: 112px;
}
}
@media (max-width: 330px) {
.homepage-cta-banner + .homepage-header-top {
top: 132px;
}
}
Implement sticky nav for fleetdm.com (#5298)
* feat: implement sticky nav for fleetdm except the homepage
* feat: add sticky nav to homepage
* Add note for v 4.13 to fleetctl docs (#5274)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* License dispenser query strings (#5321)
Co-authored-by: Tim Kern <tim@fleetdm.com>
* chore(test): rewritten query side panel test using rtl (#5189)
* Update get started (fleetctl preview) instructions on website (#5312)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* update customer layout (#5329)
* Handbook: Rename Slack channel, suggest DRI for #help-golang (#5157)
* Handbook: Rename Slack channel, suggest DRI for #help-golang
* Deleted #help-golang and #help-frontend
This is based on the call Zach and I had today about eliminating the extra "Help" channels, now that there are development groups where more focused conversation can happen without blasting every engineer in the company.
FYI I checked and #help-frontend is actively used, whereas #help-golang is much less active.
* Editor pass - Added and renamed the Rituals section (#5300)
Editor pass for: https://github.com/fleetdm/fleet/pull/5183
I added and renamed the Rituals section with a link for consistency.
This PR is related to: https://github.com/fleetdm/fleet/pull/5299
* Unified text for private IP address (#5301)
* unified text for private ip address
* updated capitalization
* Added utm_source tracking to calendly link (#5281)
Will allow us to track schedule demo submissions from pricing page by adding utm_source
* Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components
* component clean up
* removed redux from routes
* rename file
* moved useDeepEffect hook with others
* removed redux, fleet, app_constants dirs; added types to utilities
* style cleanup
* typo fix
* removed unused ts-ignore comments
* removed redux packages!!!
* formatting
* fixed typing for simple search function
* updated frontend readme
* Website add articles page. (#5243)
* create '/articles' and add 4 test articles
* update build-static-content script for '/articles'
* article pages
* Validate article page metaData
* add articles linked from header, remove test articles
* update article styles
* comment out /articles route, update blog post links
* Move article category page to different branch for future PR
* Update build-static-content.js
* remove pagescript
* Update deploying-fleet-on-render.md
* update meta tags
* lint fixes
* Style & Markdown updates
Made a couple of fixes to the styling and markdown.
* update view action, replace route with regex, update links
* authorsGitHubUserName -> authorGitHubUsername, authorsFullName -> authorFullName
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
* Add slack notif when integration test fails (#5332)
* Editor pass - Registering in a new state w/ Gusto (#5305)
Editor pass for: https://github.com/fleetdm/fleet/pull/5237
* Editor pass - Creating a consulting agreement (#5304)
* Editor pass - Creating a consulting agreement
Editor pass for: https://github.com/fleetdm/fleet/pull/5273/files
* Update people.md
Co-authored-by: Eric <eashaw@sailsjs.com>
* Fix handbook index (#5341)
* fix: review request changes
* fix: revert to using window.innerHeigh for logic to hide the header
* Update layout.ejs
I don't know if this is good syntax, but I want the masthead to stay in position for a little longer.
* feat: format if logic
* fix: rename handler function to windowScrolled
Co-authored-by: Katheryn Satterlee <me@ksatter.com>
Co-authored-by: Eric <eashaw@sailsjs.com>
Co-authored-by: Tim Kern <tim@fleetdm.com>
Co-authored-by: Tharun Rajendran <rajendrantharun@live.com>
Co-authored-by: Zach Wasserman <zach@fleetdm.com>
Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
Co-authored-by: Desmi-Dizney <99777687+Desmi-Dizney@users.noreply.github.com>
Co-authored-by: Martavis Parker <47053705+martavis@users.noreply.github.com>
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
2022-04-25 12:02:15 +00:00
2023-12-14 23:06:51 +00:00
// Some utilities for the sticky nav behaviour.
// Note: this will not be applied if a navigation menu open.
2023-12-15 16:00:41 +00:00
.translate-y-0 {
2023-12-14 23:06:51 +00:00
transform: translateY(-235px);
Implement sticky nav for fleetdm.com (#5298)
* feat: implement sticky nav for fleetdm except the homepage
* feat: add sticky nav to homepage
* Add note for v 4.13 to fleetctl docs (#5274)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* License dispenser query strings (#5321)
Co-authored-by: Tim Kern <tim@fleetdm.com>
* chore(test): rewritten query side panel test using rtl (#5189)
* Update get started (fleetctl preview) instructions on website (#5312)
Co-authored-by: Kelvin Oghenerhoro Omereshone <kelvin@fleetdm.com>
* update customer layout (#5329)
* Handbook: Rename Slack channel, suggest DRI for #help-golang (#5157)
* Handbook: Rename Slack channel, suggest DRI for #help-golang
* Deleted #help-golang and #help-frontend
This is based on the call Zach and I had today about eliminating the extra "Help" channels, now that there are development groups where more focused conversation can happen without blasting every engineer in the company.
FYI I checked and #help-frontend is actively used, whereas #help-golang is much less active.
* Editor pass - Added and renamed the Rituals section (#5300)
Editor pass for: https://github.com/fleetdm/fleet/pull/5183
I added and renamed the Rituals section with a link for consistency.
This PR is related to: https://github.com/fleetdm/fleet/pull/5299
* Unified text for private IP address (#5301)
* unified text for private ip address
* updated capitalization
* Added utm_source tracking to calendly link (#5281)
Will allow us to track schedule demo submissions from pricing page by adding utm_source
* Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components
* component clean up
* removed redux from routes
* rename file
* moved useDeepEffect hook with others
* removed redux, fleet, app_constants dirs; added types to utilities
* style cleanup
* typo fix
* removed unused ts-ignore comments
* removed redux packages!!!
* formatting
* fixed typing for simple search function
* updated frontend readme
* Website add articles page. (#5243)
* create '/articles' and add 4 test articles
* update build-static-content script for '/articles'
* article pages
* Validate article page metaData
* add articles linked from header, remove test articles
* update article styles
* comment out /articles route, update blog post links
* Move article category page to different branch for future PR
* Update build-static-content.js
* remove pagescript
* Update deploying-fleet-on-render.md
* update meta tags
* lint fixes
* Style & Markdown updates
Made a couple of fixes to the styling and markdown.
* update view action, replace route with regex, update links
* authorsGitHubUserName -> authorGitHubUsername, authorsFullName -> authorFullName
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
* Add slack notif when integration test fails (#5332)
* Editor pass - Registering in a new state w/ Gusto (#5305)
Editor pass for: https://github.com/fleetdm/fleet/pull/5237
* Editor pass - Creating a consulting agreement (#5304)
* Editor pass - Creating a consulting agreement
Editor pass for: https://github.com/fleetdm/fleet/pull/5273/files
* Update people.md
Co-authored-by: Eric <eashaw@sailsjs.com>
* Fix handbook index (#5341)
* fix: review request changes
* fix: revert to using window.innerHeigh for logic to hide the header
* Update layout.ejs
I don't know if this is good syntax, but I want the masthead to stay in position for a little longer.
* feat: format if logic
* fix: rename handler function to windowScrolled
Co-authored-by: Katheryn Satterlee <me@ksatter.com>
Co-authored-by: Eric <eashaw@sailsjs.com>
Co-authored-by: Tim Kern <tim@fleetdm.com>
Co-authored-by: Tharun Rajendran <rajendrantharun@live.com>
Co-authored-by: Zach Wasserman <zach@fleetdm.com>
Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
Co-authored-by: Desmi-Dizney <99777687+Desmi-Dizney@users.noreply.github.com>
Co-authored-by: Martavis Parker <47053705+martavis@users.noreply.github.com>
Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
Co-authored-by: Lucas Manuel Rodriguez <lucas@fleetdm.com>
2022-04-25 12:02:15 +00:00
}