TheNeuralBit commented on a change in pull request #13871:
URL: https://github.com/apache/beam/pull/13871#discussion_r570433614



##########
File path: website/www/site/assets/scss/_navbar-desktop.scss
##########
@@ -0,0 +1,196 @@
+/*!
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+
+@import "media";
+
+.navigation-bar-mobile {
+  display: none;
+  .arrow-icon {
+    display: flex;
+    align-items: baseline;
+    margin-left: 10px;
+  }
+}
+.nav-tabs {
+  border-bottom: none;
+}
+.navigation-bar-desktop {
+  display: flex;
+  height: 96px;
+  width: 100%;
+  align-items: center;
+  margin-bottom: 30px;
+  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
+  background-color: $color-white;
+  z-index: 10000; // just to make sure that navbar always on top of other 
elements
+
+  #iconsBar {
+    display: flex;
+  }
+
+  a {
+    @extend .component-text;
+    font-weight: 500;
+    color: $color-dark-gray;
+    letter-spacing: 0.2px;
+    line-height: 1.63;
+    margin-right: 39px;
+    text-decoration: none;
+    cursor: pointer;
+  }
+
+  .navbar-logo {
+    margin-left: 58px;
+    margin-bottom: 4px;
+    img {
+      width: 88px;
+    }
+  }
+  .navbar-bar-left {
+    display: flex;
+    justify-content: space-between;
+    width: 100%;
+  }
+  .navbar-links {
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    z-index: 10000;
+    :last-child {
+      margin-right: 0;
+    }
+
+    .navbar-link {
+      display: inline-block;
+      position: relative;
+      margin-bottom: 2px;
+    }
+
+    .navbar-link::before {
+      transition: 0.3;
+      content: "";
+      position: absolute;
+      background-color: $color-sun;
+      height: 0%;
+      width: 100%;
+      bottom: 0px;
+      border-radius: 5px;
+    }
+
+    .navbar-link:hover::before {
+      height: 2px;
+    }
+
+    .navbar-dropdown-documentation {
+      list-style-type: none;
+
+      .dropdown-toggle {
+        margin: 0;

Review comment:
       @Jakub-Sadowski I'm pretty sure this is the cause of the navbar bug
   
   It's overriding the `margin-right: 39px` in `.navigation-bar-desktop a`. 
When I turn it off in developer tools the navbar looks like I'd expect:
   
![image](https://user-images.githubusercontent.com/675055/106935300-0818b600-66d0-11eb-8778-437abf06c83d.png)
   
   Can we try removing this before the final merge? 

##########
File path: website/www/site/assets/scss/_navbar-desktop.scss
##########
@@ -0,0 +1,196 @@
+/*!
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+
+@import "media";
+
+.navigation-bar-mobile {
+  display: none;
+  .arrow-icon {
+    display: flex;
+    align-items: baseline;
+    margin-left: 10px;
+  }
+}
+.nav-tabs {
+  border-bottom: none;
+}
+.navigation-bar-desktop {
+  display: flex;
+  height: 96px;
+  width: 100%;
+  align-items: center;
+  margin-bottom: 30px;
+  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
+  background-color: $color-white;
+  z-index: 10000; // just to make sure that navbar always on top of other 
elements
+
+  #iconsBar {
+    display: flex;
+  }
+
+  a {
+    @extend .component-text;
+    font-weight: 500;
+    color: $color-dark-gray;
+    letter-spacing: 0.2px;
+    line-height: 1.63;
+    margin-right: 39px;
+    text-decoration: none;
+    cursor: pointer;
+  }
+
+  .navbar-logo {
+    margin-left: 58px;
+    margin-bottom: 4px;
+    img {
+      width: 88px;
+    }
+  }
+  .navbar-bar-left {
+    display: flex;
+    justify-content: space-between;
+    width: 100%;
+  }
+  .navbar-links {
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    z-index: 10000;
+    :last-child {
+      margin-right: 0;
+    }
+
+    .navbar-link {
+      display: inline-block;
+      position: relative;
+      margin-bottom: 2px;
+    }
+
+    .navbar-link::before {
+      transition: 0.3;
+      content: "";
+      position: absolute;
+      background-color: $color-sun;
+      height: 0%;
+      width: 100%;
+      bottom: 0px;
+      border-radius: 5px;
+    }
+
+    .navbar-link:hover::before {
+      height: 2px;
+    }
+
+    .navbar-dropdown-documentation {
+      list-style-type: none;
+
+      .dropdown-toggle {
+        margin: 0;

Review comment:
       @Jakub-Sadowski I'm pretty sure this is the cause of the navbar bug I'm 
seeing.
   
   It's overriding the `margin-right: 39px` in `.navigation-bar-desktop a`. 
When I turn it off in developer tools the navbar looks like I'd expect:
   
![image](https://user-images.githubusercontent.com/675055/106935300-0818b600-66d0-11eb-8778-437abf06c83d.png)
   
   Can we try removing this before the final merge? 

##########
File path: website/www/site/data/en/pillars.yaml
##########
@@ -12,7 +12,13 @@
 
 - title: Unified
   body: Use a single programming model for both batch and streaming use cases.
-- title: Portable
-  body: Execute pipelines on multiple execution environments.
+  icon: icons/unified-icon.svg 
 - title: Extensible
   body: Write and share new SDKs, IO connectors, and transformation libraries.
+  icon: icons/extensive-icon.svg

Review comment:
       ```suggestion
     icon: icons/extensible-icon.svg
   ```
   
   This icon isn't rendering. I think this is the problem

##########
File path: website/www/site/i18n/home/hero/en.yaml
##########
@@ -0,0 +1,20 @@
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+- id: home-hero-title
+  translation: Introducing Apache Beam
+- id: home-hero-heading
+  translation: An advanced unified programming model
+- id: home-hero-subheading
+  translation: Implement batch and streaming data processing jobs that run on 
any execution engine.
+- id: home-hero-button
+  translation: Install Beam

Review comment:
       This hero header doesn't seem to be rendering correctly on mobile
   
   
![image](https://user-images.githubusercontent.com/675055/106960386-da903480-66f0-11eb-9063-6a3101d37772.png)
   

##########
File path: website/www/site/i18n/home/hero/en.yaml
##########
@@ -0,0 +1,20 @@
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+- id: home-hero-title
+  translation: Introducing Apache Beam
+- id: home-hero-heading
+  translation: An advanced unified programming model
+- id: home-hero-subheading
+  translation: Implement batch and streaming data processing jobs that run on 
any execution engine.
+- id: home-hero-button
+  translation: Install Beam

Review comment:
       The footer with the quickstarts looks off too:
   
![image](https://user-images.githubusercontent.com/675055/106960516-0ca19680-66f1-11eb-9ff6-ddf38acb7784.png)
   




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to