summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/components/rich_content_editor.scss
blob: d97a9bc227d8e36597229504ea31cbc5f4c21d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* Overrides styles from ToastUI editor
*/

.tui-editor-defaultUI {

  // Toolbar buttons
  .tui-editor-defaultUI-toolbar .toolbar-button {
    color: $gray-500;
    border: 0;

    &:hover,
    &:active {
      color: $blue-500;
      border: 0;
    }
  }

  // Contextual menu's & popups
  .tui-popup-wrapper {
    @include gl-overflow-hidden;
    @include gl-rounded-base;
    @include gl-border-gray-200;

    hr {
      @include gl-m-0;
      @include gl-bg-gray-200;
    }

    button {
      @include gl-text-gray-700;
    }
  }

  /**
  * Overrides styles from ToastUI's Code Mirror (markdown mode) editor.
  * Toast UI internally overrides some of these using the `.tui-md-` prefix.
  * https://codemirror.net/doc/manual.html#styling
  */

  .te-md-container .CodeMirror * {
    @include gl-font-monospace;
    @include gl-font-size-monospace;
    @include gl-line-height-20;
  }
}

/**
* Styling below ensures that YouTube videos are displayed in the editor the same as they would in about.gitlab.com
* https://gitlab.com/gitlab-com/www-gitlab-com/-/blob/master/source/stylesheets/_base.scss#L977
*/
.video_container {
  padding-bottom: 56.25%;
}