This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-3-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit e4521ef46250ace1b393a28ab6852e881106b6c8 Author: Brent Bovenzi <[email protected]> AuthorDate: Wed May 4 15:01:51 2022 -0400 Visually distinguish task group summarys (#23488) Bold task groups names and darken their bottom row border. (cherry picked from commit 0fde90d92ae306f37041831f5514e9421eee676b) --- airflow/www/static/js/tree/TaskName.jsx | 1 + airflow/www/static/js/tree/renderTaskRows.jsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/airflow/www/static/js/tree/TaskName.jsx b/airflow/www/static/js/tree/TaskName.jsx index d2f57ff95e..34736842d8 100644 --- a/airflow/www/static/js/tree/TaskName.jsx +++ b/airflow/www/static/js/tree/TaskName.jsx @@ -35,6 +35,7 @@ const TaskName = ({ mr={4} width="100%" alignItems="center" + fontWeight={isGroup || isMapped ? 'bold' : 'normal'} > <Text display="inline" diff --git a/airflow/www/static/js/tree/renderTaskRows.jsx b/airflow/www/static/js/tree/renderTaskRows.jsx index 8713c3801d..9c4f6d7690 100644 --- a/airflow/www/static/js/tree/renderTaskRows.jsx +++ b/airflow/www/static/js/tree/renderTaskRows.jsx @@ -132,7 +132,7 @@ const Row = (props) => { <Tr bg={isSelected && 'blue.100'} borderBottomWidth={isFullyOpen ? 1 : 0} - borderBottomColor="gray.200" + borderBottomColor={isGroup && isOpen ? 'gray.400' : 'gray.200'} role="group" _hover={!isSelected && { bg: hoverBlue }} transition="background-color 0.2s"
