public
Description: Gitorious aims to provide a great way of doing distributed opensource code collaboration.
Homepage: http://gitorious.org/projects/gitorious
Clone URL: git://github.com/dysinger/gitorious.git
Simplify rounded corners css, and add webkit support
js (author)
Mon Apr 28 12:19:34 -0700 2008
commit  5a6d1d4ec5cb93ed8c9dbaf71990f58281afb7e6
tree    e63f9712c8570d66678a6bc602b7d1737218df01
parent  35ad4575858b22e34b6a4426e6d933d7b0a0c9a9
...
51
52
53
54
 
55
56
57
58
 
59
60
61
...
51
52
53
 
54
55
56
57
 
58
59
60
61
0
@@ -51,11 +51,11 @@
0
     <ul id="submenu" class="<%= @content_for_submenu.blank? ? "white" : "" -%>">
0
       <li class="<%= submenu_selected_class_if_current?(:overview) -%>">
0
         <%= link_to "Project Overview",
0
- project_path(@project), :class => "round-tl-5 round-tr-5" -%>
0
+ project_path(@project), :class => "round-top-5" -%>
0
       </li>
0
       <li class="<%= submenu_selected_class_if_current?(:repositories) -%>">
0
         <%= link_to "Repositories",
0
- project_repositories_path(@project), :class => "round-tl-5 round-tr-5" -%>
0
+ project_repositories_path(@project), :class => "round-top-5" -%>
0
       </li>
0
     </ul>
0
     <% end -%>
...
277
278
279
280
281
282
283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
285
286
...
277
278
279
 
 
 
 
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
0
@@ -277,10 +277,22 @@ abbr {
0
 }
0
 
0
 /* Round corners */
0
-.round-tl-5 { -moz-border-radius-topleft: 5px; }
0
-.round-tr-5 { -moz-border-radius-topright: 5px; }
0
-.round-bl-5 { -moz-border-radius-bottomleft: 5px; }
0
-.round-br-5 { -moz-border-radius-bottomright: 5px; }
0
+.round-top-5 {
0
+ -moz-border-radius-topleft: 5px;
0
+ -moz-border-radius-topright: 5px;
0
+ -webkit-border-top-left-radius: 5px;
0
+ -webkit-border-top-right-radius: 5px;
0
+}
0
+.round-bottom-5 {
0
+ -moz-border-radius-bottomleft: 5px;
0
+ -moz-border-radius-bottomright: 5px;
0
+ -webkit-border-bottom-left-radius: 5px;
0
+ -webkit-border-bottom-right-radius: 5px;
0
+}
0
+.round-5 {
0
+ -moz-border-radius: 5px;
0
+ -webkit-border-radius: 5px;
0
+}
0
 
0
 
0
 /* submenu */

Comments

    No one has commented yet.