Skip to content
Snippets Groups Projects
Verified Commit 322643e7 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray
Browse files

Hide toolbar in markdown preview mode

parent f7a9ced2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -72,7 +72,8 @@
Preview
</a>
</li>
<li class="md-header-toolbar">
<li class="md-header-toolbar"
:class="{ active: !previewMarkdown }">
<toolbar-button
tag="**"
button-title="Add bold text"
Loading
Loading
Loading
Loading
@@ -82,19 +82,27 @@
}
}
 
.md-header-toolbar {
margin-left: auto;
.nav-links {
li.md-header-toolbar {
margin-left: auto;
display: none;
 
@media(max-width: $screen-xs-max) {
flex: none;
display: flex;
justify-content: center;
width: 100%;
padding-top: $gl-padding-top;
padding-bottom: $gl-padding-top;
&.active {
display: block;
}
@media(max-width: $screen-xs-max) {
flex: none;
display: flex;
justify-content: center;
width: 100%;
padding-top: $gl-padding-top;
padding-bottom: $gl-padding-top;
}
}
}
 
.referenced-users {
color: $gl-text-color;
padding-top: 10px;
Loading
Loading
Loading
Loading
@@ -6,7 +6,7 @@ module WithPerformanceBar
end
 
def peek_enabled?
return true if Rails.env.development?
# return true if Rails.env.development?
return false unless Gitlab::PerformanceBar.enabled?(current_user)
 
if RequestStore.active?
Loading
Loading
---
title: Hide markdown toolbar in preview mode
merge_request:
author:
type: changed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment