Commit a037304a authored by Clement Ho's avatar Clement Ho

Merge branch 'ce-to-ee-2018-11-21' into 'master'

CE upstream - 2018-11-21 02:21 UTC

Closes gitlab-ce#53571

See merge request gitlab-org/gitlab-ee!8542
parents 60f7a037 4a917169
...@@ -242,7 +242,7 @@ js-autosize markdown-area js-vue-issue-note-form js-vue-textarea qa-reply-input" ...@@ -242,7 +242,7 @@ js-autosize markdown-area js-vue-issue-note-form js-vue-textarea qa-reply-input"
<button <button
:disabled="isDisabled" :disabled="isDisabled"
type="button" type="button"
class="js-vue-issue-save btn btn-success js-comment-button" class="js-vue-issue-save btn btn-success js-comment-button "
@click="handleUpdate();" @click="handleUpdate();"
> >
{{ saveButtonTitle }} {{ saveButtonTitle }}
......
...@@ -97,6 +97,9 @@ export default { ...@@ -97,6 +97,9 @@ export default {
<template> <template>
<div :class="blockClass" class="block"> <div :class="blockClass" class="block">
<div class="issuable-sidebar-header">
<toggle-sidebar :collapsed="collapsed" @toggle="toggleSidebar" />
</div>
<collapsed-calendar-icon :text="collapsedText" class="sidebar-collapsed-icon" /> <collapsed-calendar-icon :text="collapsedText" class="sidebar-collapsed-icon" />
<div class="title"> <div class="title">
{{ label }} {{ label }}
...@@ -130,7 +133,7 @@ export default { ...@@ -130,7 +133,7 @@ export default {
- -
<button <button
type="button" type="button"
class="btn-blank btn-link btn-default-hover-link" class="btn-blank btn-link btn-secondary-hover-link"
@click="newDateSelected(null);" @click="newDateSelected(null);"
> >
remove remove
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
margin-right: 10px; margin-right: 10px;
color: $white-light; color: $white-light;
font-size: $gl-font-size; font-size: $gl-font-size;
line-height: 25px; line-height: $gl-line-height-24;
&.status-box-closed, &.status-box-closed,
&.status-box-mr-closed { &.status-box-mr-closed {
......
...@@ -272,6 +272,7 @@ $context-header-height: 60px; ...@@ -272,6 +272,7 @@ $context-header-height: 60px;
$breadcrumb-min-height: 48px; $breadcrumb-min-height: 48px;
$project-title-row-height: 24px; $project-title-row-height: 24px;
$gl-line-height: 16px; $gl-line-height: 16px;
$gl-line-height-24: 24px;
// EE-only CSS variables START // EE-only CSS variables START
$system-header-height: 35px; $system-header-height: 35px;
......
...@@ -6,19 +6,16 @@ ...@@ -6,19 +6,16 @@
.issuable-warning-icon { .issuable-warning-icon {
background-color: $orange-100; background-color: $orange-100;
border-radius: $border-radius-default; border-radius: $border-radius-default;
margin: 0 $btn-side-margin 0 0;
width: $issuable-warning-size; width: $issuable-warning-size;
height: $issuable-warning-size; height: $issuable-warning-size;
text-align: center; text-align: center;
margin-right: $issuable-warning-icon-margin;
line-height: $gl-line-height-24;
.icon { .icon {
fill: $orange-600; fill: $orange-600;
vertical-align: text-bottom; vertical-align: text-bottom;
} }
&:first-of-type {
margin-right: $issuable-warning-icon-margin;
}
} }
.limit-container-width { .limit-container-width {
...@@ -701,7 +698,6 @@ ...@@ -701,7 +698,6 @@
flex: 1; flex: 1;
display: inline-block; display: inline-block;
font-size: 14px; font-size: 14px;
line-height: 24px;
align-self: center; align-self: center;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
......
---
title: Align issue status label and confidential icon.
merge_request: 23046
author: George Tsiolis
type: fixed
...@@ -22,6 +22,27 @@ searching. The file finder is launched using the keyboard shortcut `Command-p`, ...@@ -22,6 +22,27 @@ searching. The file finder is launched using the keyboard shortcut `Command-p`,
`Control-p`, or `t` (when editor is not in focus). Type the filename or `Control-p`, or `t` (when editor is not in focus). Type the filename or
file path fragments to start seeing results. file path fragments to start seeing results.
## Syntax highligting
As expected from an IDE, syntax highlighting for many languages within
the Web IDE will make your direct editing even easier.
The Web IDE currently provides:
- Basic syntax colorization for a variety of programming, scripting and markup
languages such as XML, PHP, C#, C++, Markdown, Java, VB, Batch, Python, Ruby
and Objective-C.
- IntelliSense and validation support (displaying errors and warnings, providing
smart completions, formatting, and outlining) for some languages. For example:
TypeScript, JavaScript, CSS, LESS, SCSS, JSON and HTML.
Because the Web IDE is based on the [Monaco Editor](https://microsoft.github.io/monaco-editor/),
you can find a more complete list of supported languages in the
[Monaco languages](https://github.com/Microsoft/monaco-languages) repository.
NOTE: **Note:**
Single file editing is based on the [Ace Editor](https://ace.c9.io).
## Stage and commit changes ## Stage and commit changes
After making your changes, click the Commit button in the bottom left to After making your changes, click the Commit button in the bottom left to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment