loociano commented on pull request #8912:
URL: https://github.com/apache/airflow/pull/8912#issuecomment-879806435


   An alternative fix that does not use `user-select:none; -moz-user-select: 
auto;` would be to remove the `<div>` that wraps the headings used for DAG name 
and schedule.
   
   Before:
   ```
   <div>
     <h3> ...DAG name code... </h3>
     <h4> ...Schedule code... </h4>
   <div>
   <div class="clearfix"></div>
   ```
   
   After:
   ```
   <h3> ...DAG name code... </h3>
   <h4> ...Schedule code... </h4>
   <div class="clearfix"></div>
   ```


-- 
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.

To unsubscribe, e-mail: [email protected]

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


Reply via email to