52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
<style type="text/css">
|
|
.element{
|
|
background: #FFF;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #DDD;
|
|
}
|
|
.detail{
|
|
padding: 10px;
|
|
min-height: 250px;
|
|
}
|
|
.totle{
|
|
margin-bottom: 25px;
|
|
}
|
|
.totle span{
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
|
|
<div class="row">
|
|
<div class="element span4">
|
|
<div class="detail w-a h-a">
|
|
<p class="totle">
|
|
<a class="btn btn-small btn-primary pull-right" href="<%= new_admin_project_type_path %>#project_type_modal" data-toggle="modal" data-remote="true"><i class="icon-plus"></i> <%= t('add')%></a>
|
|
<span><%= t("personal_project.project_category") %></span>
|
|
</p>
|
|
<div class="detal-list my_scroll">
|
|
<div class="scrollbar">
|
|
<div class="track">
|
|
<div class="thumb">
|
|
<div class="end"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="viewport">
|
|
<div class="overview">
|
|
<table id="project_types" class="table table-striped">
|
|
<tbody>
|
|
<%= render :partial => 'list_project_type', :collection => @project_types %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="project_type_qe">
|
|
<div style="display:none;" class="modal" id="project_type_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|
</div>
|
|
</div> |