This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= render :partial => 'shared/item_info_panel', :locals => {:item => @file} %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.styleguide-horizontal-list{ | |
@include horizontal-list; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="has-dropdown"> | |
<li> | |
<a href="#">I am a dropdown</a> | |
<ul class="dropdown"> | |
<li>I am a dropdown option</li> | |
<li>I am a dropdown option</li> | |
<li>I am a dropdown option</li> | |
<li>I am a dropdown option</li> | |
<li>I am a dropdown option</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= render :partial => 'shared/item_info_panel', :locals => {:item => @file} %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% links = [{:title => 'Inbox', :path => ''}, | |
{:title => 'Exports', :path => ''}, | |
{:title => 'Notifications', :path => ''}] %> | |
<%= | |
vertical_tabs do |ui| | |
links.each do |tab| | |
ui.tab tab[:title], | |
tab.delete(:path) | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= list_table_for @team_members, :form_action => 'search' do |list| %> | |
<% list.empty 'There are no people to show at this time' %> | |
<% list.search 'Search for a Person', width: '300px' %> | |
<% list.row do |team_member| %> | |
<td class="mass-checkbox"></td> | |
<td class="list-item"> | |
<%= profile_picture(team_member) %> | |
<%= highlight_status({status: 'success', text: 'Approved'}, :class => 'right') %> | |
<div class="list-item-title with-pic"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= list_table_for @team_members, :form_action => 'search' do |list| %> | |
<% list.empty 'There are no people to show at this time' %> | |
<% list.search 'Search for a Person', width: '300px' %> | |
<%# list.sort [ | |
sort_button('Name', @sortable), | |
sort_button('ID', @sortable), | |
sort_button('Status', @sortable) | |
] %> | |
<% list.header do %> | |
<th class="mass-checkbox"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= list_table_for @team_members, :form_action => 'search' do |list| %> | |
<% list.empty 'There are no people to show at this time' %> | |
<% list.search 'Search for a Person', width: '300px' %> | |
<%# list.sort [ | |
sort_button('Name', @sortable), | |
sort_button('ID', @sortable), | |
sort_button('Status', @sortable) | |
] %> | |
<% list.row do |team_member| %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= list_table_for @team_members do |list| %> | |
<% list.empty 'There are no people to show at this time' %> | |
<% list.header do %> | |
<th>User</th> | |
<th>Email Address</th> | |
<th>God Name</th> | |
<% end %> | |
<% list.row do |team_member| %> |