allura
リビジョン | 27ccecbd2adb5fc6242d643654ec0de19812cfd8 (tree) |
---|---|
日時 | 2011-08-26 03:24:57 |
作者 | Dave Brondsema <dbrondsema@geek...> |
コミッター | Dave Brondsema |
[#2380] <strong> instead of inline style
Signed-off-by: Dave Brondsema <dbrondsema@geek.net>
@@ -101,7 +101,7 @@ class RepositoryApp(Application): | ||
101 | 101 | repo_path_parts = self.repo.upstream_repo.name.strip('/').split('/') |
102 | 102 | links += [ |
103 | 103 | SitemapEntry('Clone of'), |
104 | - SitemapEntry('%s / <span style="font-weight:600">%s</span>' % | |
104 | + SitemapEntry('%s / <strong>%s</strong>' % | |
105 | 105 | (repo_path_parts[1], repo_path_parts[-1]), |
106 | 106 | self.repo.upstream_repo.name, |
107 | 107 | className='nav_child') |
@@ -147,7 +147,7 @@ class RepositoryApp(Application): | ||
147 | 147 | for f in self.repo.forks: |
148 | 148 | repo_path_parts = f.url().strip('/').split('/') |
149 | 149 | links.append(SitemapEntry( |
150 | - '%s / <span style="font-weight:600">%s</span>' % | |
150 | + '%s / <strong>%s</strong>' % | |
151 | 151 | (repo_path_parts[1], repo_path_parts[-1]), |
152 | 152 | f.url(), className='nav_child')) |
153 | 153 | return links |