File tree Expand file tree Collapse file tree 2 files changed +1
-30
lines changed Expand file tree Collapse file tree 2 files changed +1
-30
lines changed Original file line number Diff line number Diff line change @@ -166,34 +166,6 @@ li.repo h2 {
166166 overflow : hidden;
167167}
168168
169- li .repo h3 {
170- font-size : 11px ;
171- margin-top : 2px ;
172- margin-bottom : 15px ;
173- color : # 999 ;
174- }
175-
176- .repo : after {
177- content : '' ;
178- position : absolute;
179- right : 0 ;
180- top : 0 ;
181- width : 0 ;
182- height : 0 ;
183- border-bottom : 30px solid transparent;
184- border-left : 30px solid transparent;
185- border-right : 30px solid # 0080B0 ;
186- pointer-events : none;
187- }
188-
189- .repo .javascript : after {
190- border-right-color : # 333 ;
191- }
192-
193- .repo .python : after {
194- border-right-color : # 6aad2d ;
195- }
196-
197169h2 .fork {
198170 background : url (fork.png) no-repeat center left;
199171 padding : 0 0 0 20px ;
Original file line number Diff line number Diff line change 5151
5252 function addRepo ( repo , target ) {
5353 if ( target ) {
54- var $item = $ ( "<li>" ) . addClass ( "repo grid-1 " + ( repo . language || '' ) . toLowerCase ( ) ) ;
54+ var $item = $ ( "<li>" ) . addClass ( "repo grid-1" ) ;
5555 var $link = $ ( "<a>" ) . attr ( "href" , repoUrl ( repo ) ) . appendTo ( $item ) ;
5656 if ( repo . fork ) {
5757 $link . append ( $ ( '<h2 class="fork">' ) . text ( repo . name ) ) ;
5858 } else {
5959 $link . append ( $ ( "<h2>" ) . text ( repo . name ) ) ;
6060 }
61- $link . append ( $ ( "<h3>" ) . text ( repo . language ) ) ;
6261 $link . append ( $ ( "<p>" ) . text ( repoDescription ( repo ) ) ) ;
6362 $item . appendTo ( target ) ;
6463 }
You can’t perform that action at this time.
0 commit comments