Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/app/css/components.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ html {
body {
margin: 0;
min-height: 100%;
background-color: #fff;
background-color: transparent;
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 20px;
Expand Down Expand Up @@ -328,8 +328,8 @@ label {
width: 100%;
height: 38px;
padding: 8px 12px;
margin-bottom: 10px;
font-size: 14px;
/* margin-bottom: 10px; */
font-size: 16px;
line-height: 1.42857143;
color: #333333;
vertical-align: middle;
Expand Down
31 changes: 27 additions & 4 deletions site/app/css/sigma-dev-8020.css
Original file line number Diff line number Diff line change
Expand Up @@ -2973,7 +2973,9 @@ figure {
}

.section-hero {
background-image: linear-gradient(140deg, rgba(192, 149, 177, 0.15), rgba(47, 178, 175, 0.15));
/* background-image: linear-gradient(140deg, rgba(192, 149, 177, 0.15), rgba(47, 178, 175, 0.15)); */
background-color: transparent;
background-image: url(https://cdn.prod.website-files.com/666bbba4ff7240a20f4ccccf/685106838d461923ec10fc64_0ae8ba725281d3ce0757318ef80f6942_grid-fade.svg);
}

.section-hero.g-section-padding-medium.is-snowflake-page {
Expand Down Expand Up @@ -3420,11 +3422,11 @@ figure {
display: -ms-flexbox;
display: flex;
width: 100%;
max-width: 1248px;
/* max-width: 1248px; */
margin-right: auto;
margin-left: auto;
padding-right: 16px;
padding-left: 16px;
padding-right: 25px;
padding-left: 25px;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
Expand Down Expand Up @@ -71898,3 +71900,24 @@ a.buttons-wrapper .w-button {
background-color: #0000FF !important;
color: #FFFFFF !important;
}

/* Search placeholder styling */
#search::placeholder {
font-weight: 500;
color: #999;
}

#search::-webkit-input-placeholder {
font-weight: 500;
color: #999;
}

#search::-moz-placeholder {
font-weight: 500;
color: #999;
}

#search:-ms-input-placeholder {
font-weight: 500;
color: #999;
}
35 changes: 35 additions & 0 deletions site/app/data/featured-quickstarts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"recentQuickStarts": [
{
"title": "First Friday Features - November 2025",
"id": "11_2025_first_friday_features",
"category": "Administration",
"date": "Dec 9, 2025"
},
{
"title": "Popular Functions",
"id": "functions_popular_functions",
"category": "Functions",
"date": "Dec 3, 2025"
},
{
"title": "Connect Snowflake Intelligence to Sigma Workbook",
"id": "partners_snowflake_intelligence",
"category": "Functions",
"date": "Dec 3, 2025"
},
{
"title": "Plugin Use Case 01: Dashboard Builder (Embedding Series)",
"id": "embedding_plugin_useage_01_dashboard_builder",
"category": "Security",
"date": "Dec 3, 2025"
},
{
"title": "QuickStarts API Toolkit",
"id": "developers_quickstarts_api_tookit",
"category": "Developers",
"date": "Sep 17, 2025"
}
]
}

4 changes: 2 additions & 2 deletions site/app/styles/_app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ ul, li {

.site-width {
margin: 0 auto;
width: 90vw;
max-width: 1024px;
width: 95vw;
// max-width: 1024px; commented out by PB
}

#banner {
Expand Down
8 changes: 8 additions & 0 deletions site/app/styles/_categories.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ $catagory-colors: (
.#{$category}-icon {
background-image: url('/images/#{$icon}');
}

.#{$category}-bar {
background-color: $color;
color: #000;
border-radius: 0 !important;
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
}
}
}

Expand Down
36 changes: 27 additions & 9 deletions site/app/styles/_codelab-card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ $card-col-height: 200px; // column mode
#cards {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
// justify-content: space-evenly;
margin-bottom: $keyline * 1;
padding: 0 $keyline * 2 0 $keyline * 2;
// padding: 0 $keyline * 2 0 $keyline * 2;
}

.codelab-card {
Expand All @@ -37,7 +37,8 @@ $card-col-height: 200px; // column mode
margin: 0 $keyline * 2 $keyline * 4 $keyline * 2;
max-width: $card-width;
border-radius: 0;
border-bottom: 6px solid transparent;
border-bottom: 0;
overflow: hidden;

-webkit-box-shadow: 2px 4px 10px 0 rgba(0,0,0,.1);
box-shadow: 2px 4px 10px 0 rgba(0,0,0,.1);
Expand Down Expand Up @@ -82,20 +83,24 @@ $card-col-height: 200px; // column mode
}

.description {
padding: $keyline * 2 $keyline * 2 0 $keyline * 2;
flex: 1 0 auto;
padding: $keyline * 2;
color: #212121;
-webkit-font-smoothing: antialiased;
font-family: $lato-bold !important;
flex: 1;
}
}

.card-footer {
border-top: 0;
display: flex;
align-items: center;
justify-content: space-between;
padding: $keyline 2 * $keyline;
display: block;
padding: 0;
margin: 0;
margin-top: auto;
width: 100%;
position: relative;
left: 0;
right: 0;

paper-button {
@include md-font-button();
Expand All @@ -114,6 +119,19 @@ $card-col-height: 200px; // column mode
background-repeat: no-repeat;
background-position: 0 50%;
}

.category-bar {
width: 100%;
padding: 14px 16px;
text-align: center;
font-family: $lato-bold !important;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
border-radius: 0;
margin: 0;
display: block;
}
}

.card-pin {
Expand Down
14 changes: 11 additions & 3 deletions site/app/styles/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
Sigma specific category classes */
$color-administration: #000000;
$color-aiapps: #4CAF50;
$color-dataapps: #4CAF50;
$color-developers: #3F51B5;
$color-embedding: #06dbf7;
$color-fundamentals: #FFA726;
Expand All @@ -39,7 +38,6 @@ $color-templates: #EC407A;

$icon-administration: 'administration.svg';
$icon-aiapps: 'aiapps.svg';
$icon-dataapps: 'dataapps.svg';
$icon-developers: 'developers.svg';
$icon-embedding: 'embedding.svg';
$icon-fundamentals: 'Solutions_MarkAnal.svg';
Expand All @@ -52,7 +50,6 @@ $icon-templates: 'workbook-template.svg';

@include codelab-card(['administration'], $color-administration, $icon-administration);
@include codelab-card(['aiapps'], $color-aiapps, $icon-aiapps);
@include codelab-card(['dataapps'], $color-dataapps, $icon-dataapps);
@include codelab-card(['developers'], $color-developers, $icon-developers);
@include codelab-card(['embedding'], $color-embedding, $icon-embedding);
@include codelab-card(['fundamentals'], $color-fundamentals, $icon-fundamentals);
Expand All @@ -63,6 +60,17 @@ $icon-templates: 'workbook-template.svg';
@include codelab-card(['partners'], $color-partners, $icon-partners);
@include codelab-card(['templates'], $color-templates, $icon-templates);

// Special override for dark category bars - white text
.administration-bar,
.functions-bar,
.partners-bar,
.use-cases-bar,
.security-bar,
.aiapps-bar,
.developers-bar {
color: #fff !important;
}

/** Categories in Use (so far):
Administration
AI Apps
Expand Down
2 changes: 1 addition & 1 deletion site/app/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ $grey500: #9e9e9e;
$grey700: #616161;
$grey800: #424242;

$backgroundColor: #fff;
$backgroundColor: transparent;
$mainColor: $snowflake-blue;
$accentColor: $valencia-orange;

Expand Down
12 changes: 7 additions & 5 deletions site/app/styles/sigma-dev-8020.css
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ figure {

.g-section-padding-medium {
padding-top: 5rem;
padding-bottom: 5rem;
/* padding-bottom: 5rem; */
}

.g-section-padding-small {
Expand Down Expand Up @@ -2970,7 +2970,9 @@ figure {
}

.section-hero {
background-image: linear-gradient(140deg, rgba(192, 149, 177, 0.15), rgba(47, 178, 175, 0.15));
/* background-image: linear-gradient(140deg, rgba(192, 149, 177, 0.15), rgba(47, 178, 175, 0.15)); */
background-color: #f0f0f0;
background-image: url(https://cdn.prod.website-files.com/666bbba4ff7240a20f4ccccf/685106838d461923ec10fc64_0ae8ba725281d3ce0757318ef80f6942_grid-fade.svg);
}

.section-hero.g-section-padding-medium.is-snowflake-page {
Expand Down Expand Up @@ -3417,11 +3419,11 @@ figure {
display: -ms-flexbox;
display: flex;
width: 100%;
max-width: 1248px;
/* max-width: 1248px; commented out by PB */
margin-right: auto;
margin-left: auto;
padding-right: 16px;
padding-left: 16px;
padding-right: 25px;
padding-left: 25px;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
Expand Down
Loading