You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/05/26 01:23:18 UTC

[GitHub] [airflow] ryanahamilton commented on a change in pull request #16073: Add close/open indicator for import dag errors

ryanahamilton commented on a change in pull request #16073:
URL: https://github.com/apache/airflow/pull/16073#discussion_r639337386



##########
File path: airflow/www/static/css/flash.css
##########
@@ -48,3 +49,25 @@
 .expanded-error {
   height: 100%;
 }
+
+.dag-import-error::after {
+  /* symbol for "opening" panels */
+  font-family: FontAwesome;/* stylelint-disable-line font-family-no-missing-generic-family-keyword */
+  content: "\f078";
+  float: right;
+  color: #e43921;
+  position: absolute;
+  top: 0;
+  right: 0;
+}
+
+.dag-import-error.expanded-error::after {
+  /* symbol for "closing" panels */
+  font-family: FontAwesome;/* stylelint-disable-line font-family-no-missing-generic-family-keyword */
+  content: "\f054";
+  float: right;
+  color: #e43921;
+  position: absolute;
+  top: 0;
+  right: 0;

Review comment:
       Seems like most of this would already be inherited from `.dag-import-error`?
   ```suggestion
     content: "\f054";
   ```




-- 
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:
users@infra.apache.org