debian-mirror-gitlab/app/views/projects/_md_preview.html.haml

42 lines
2 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
.md-area
2016-06-02 11:05:42 +05:30
.md-header
%ul.nav-links.clearfix
2015-09-11 14:41:01 +05:30
%li.active
2016-06-02 11:05:42 +05:30
%a.js-md-write-button{ href: "#md-write-holder", tabindex: -1 }
2015-09-11 14:41:01 +05:30
Write
%li
2016-06-02 11:05:42 +05:30
%a.js-md-preview-button{ href: "#md-preview-holder", tabindex: -1 }
2015-09-11 14:41:01 +05:30
Preview
- if defined?(@issue) && @issue.confidential?
%li.confidential-issue-warning
= icon('warning')
%span This is a confidential issue. Your comment will not be visible to the public.
2016-08-24 12:49:21 +05:30
2016-06-02 11:05:42 +05:30
%li.pull-right
2016-08-24 12:49:21 +05:30
.toolbar-group
= markdown_toolbar_button({icon: "bold fw", data: { "md-tag" => "**" }, title: "Add bold text" })
= markdown_toolbar_button({icon: "italic fw", data: { "md-tag" => "*" }, title: "Add italic text" })
= markdown_toolbar_button({icon: "quote-right fw", data: { "md-tag" => "> ", "md-prepend" => true }, title: "Insert a quote" })
= markdown_toolbar_button({icon: "code fw", data: { "md-tag" => "`", "md-block" => "```" }, title: "Insert code" })
= markdown_toolbar_button({icon: "list-ul fw", data: { "md-tag" => "* ", "md-prepend" => true }, title: "Add a bullet list" })
= markdown_toolbar_button({icon: "list-ol fw", data: { "md-tag" => "1. ", "md-prepend" => true }, title: "Add a numbered list" })
= markdown_toolbar_button({icon: "check-square-o fw", data: { "md-tag" => "* [ ] ", "md-prepend" => true }, title: "Add a task list" })
.toolbar-group
%button.toolbar-btn.js-zen-enter.has-tooltip.hidden-xs{ type: "button", tabindex: -1, aria: { label: "Go full screen" }, title: "Go full screen", data: { container: "body" } }
=icon("arrows-alt fw")
2015-09-11 14:41:01 +05:30
2016-06-02 11:05:42 +05:30
.md-write-holder
= yield
.md.md-preview-holder.js-md-preview.hide{class: (preview_class if defined?(preview_class))}
2015-12-23 02:04:40 +05:30
- if defined?(referenced_users) && referenced_users
%div.referenced-users.hide
%span
2016-08-24 12:49:21 +05:30
= icon("exclamation-triangle")
2015-09-11 14:41:01 +05:30
You are about to add
%strong
%span.js-referenced-users-count 0
2015-09-25 12:07:36 +05:30
people
2015-09-11 14:41:01 +05:30
to the discussion. Proceed with caution.