openhands openhands commited on
Commit
ccae857
·
1 Parent(s): 24ff7a3

Fix Winners by Category borders: dark between categories, light within

Browse files

- Light border (1px #eee) between score and model name within same category
- Dark border (2px #999) between different categories

Co-authored-by: openhands <openhands@all-hands.dev>

Files changed (1) hide show
  1. content.py +4 -2
content.py CHANGED
@@ -1071,10 +1071,12 @@ h3 .header-link-icon {
1071
  color: var(--color-primary-dark);
1072
  padding-left: 12px;
1073
  min-width: 50px;
 
1074
  }
1075
 
1076
  .dark .winners-unified-table .score-cell {
1077
  color: var(--color-primary-accent);
 
1078
  }
1079
 
1080
  .winners-unified-table .model-cell {
@@ -1082,12 +1084,12 @@ h3 .header-link-icon {
1082
  color: var(--color-text-dark);
1083
  font-weight: 500;
1084
  padding-right: 12px;
1085
- border-right: 1px solid #eee;
1086
  }
1087
 
1088
  .dark .winners-unified-table .model-cell {
1089
  color: #fff;
1090
- border-right-color: var(--color-neutral-700);
1091
  }
1092
 
1093
  .winners-unified-table td:nth-last-child(1) {
 
1071
  color: var(--color-primary-dark);
1072
  padding-left: 12px;
1073
  min-width: 50px;
1074
+ border-right: 1px solid #eee;
1075
  }
1076
 
1077
  .dark .winners-unified-table .score-cell {
1078
  color: var(--color-primary-accent);
1079
+ border-right-color: var(--color-neutral-700);
1080
  }
1081
 
1082
  .winners-unified-table .model-cell {
 
1084
  color: var(--color-text-dark);
1085
  font-weight: 500;
1086
  padding-right: 12px;
1087
+ border-right: 2px solid #999;
1088
  }
1089
 
1090
  .dark .winners-unified-table .model-cell {
1091
  color: #fff;
1092
+ border-right-color: var(--color-neutral-500);
1093
  }
1094
 
1095
  .winners-unified-table td:nth-last-child(1) {