]> source.dussan.org Git - gitea.git/commitdiff
Fix hover color for last row of repo file list (#15018)
authorMike L <cl.jeremy@qq.com>
Thu, 18 Mar 2021 18:05:26 +0000 (19:05 +0100)
committerGitHub <noreply@github.com>
Thu, 18 Mar 2021 18:05:26 +0000 (18:05 +0000)
web_src/less/_repository.less

index 7cb71d8ba0442cd8f7ffb510db22ab1bdee25da2..cf510f6f0fff257b4bddc6587e25f189ce095fa6 100644 (file)
         cursor: default;
       }
 
+      tr:last-of-type {
+        td:first-child {
+          border-bottom-left-radius: var(--border-radius);
+        }
+
+        td:last-child {
+          border-bottom-right-radius: var(--border-radius);
+        }
+      }
+
       tr:hover {
         background-color: #ffffee;
       }