Skip to content

Commit

Permalink
move inline css to css file
Browse files Browse the repository at this point in the history
  • Loading branch information
Neeraj Singh committed Nov 9, 2010
1 parent 00608bd commit 97cc48b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/admin_data/search/_search_base.html.erb
@@ -1,8 +1,8 @@
<div class="block" id="block-text">

<div>
<h1 style='float:left;font-weight:bold;font-size: 35px;'> Listing <%=klass.name%></h1>
<h3 style='float:left;margin:22px 0 0 10px;color:gray;'><%=total_records_info(klass)%></h3>
<h1 class='listing_klass'> Listing <%=klass.name%></h1>
<h3 class='total_records_info_klass'><%=total_records_info(klass)%></h3>
<div class='clear'></div>
</div>

Expand Down
12 changes: 12 additions & 0 deletions lib/css/base.css
Expand Up @@ -1094,3 +1094,15 @@ ul#subnav li a:hover {
font-weight:bold;
font-size: 35px;
}

.listing_klass {
float:left;
font-weight:bold;
font-size: 35px;
}

.total_records_info_klass {
float:left;
margin:22px 0 0 10px;
color:gray;
}

0 comments on commit 97cc48b

Please sign in to comment.