daeed3fdf3
* Introduce 2 color links: black and blue * Use black color link for UI elements like lists * Refactor lists to use .title nested under li * Make all lists (events, todos, activity, projects etc) use style * List colorschema is now 333 for links and 555 for text Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
21 lines
696 B
Text
21 lines
696 B
Text
%li.snippet-row
|
|
= image_tag avatar_icon(snippet.author_email), class: "avatar s40 hidden-xs", alt: ''
|
|
|
|
.title
|
|
= link_to reliable_snippet_path(snippet) do
|
|
= truncate(snippet.title, length: 60)
|
|
- if snippet.private?
|
|
%span.label.label-gray
|
|
= icon('lock')
|
|
private
|
|
%span.monospace.pull-right
|
|
= snippet.file_name
|
|
|
|
%small.pull-right.cgray
|
|
- if snippet.project_id?
|
|
= link_to snippet.project.name_with_namespace, namespace_project_path(snippet.project.namespace, snippet.project)
|
|
|
|
.snippet-info
|
|
= link_to user_snippets_path(snippet.author) do
|
|
= snippet.author_name
|
|
authored #{time_ago_with_tooltip(snippet.created_at)}
|