markdown_area.scss 3.6 KB
Newer Older
1 2 3 4 5 6 7 8
.div-dropzone-wrapper {
  .div-dropzone {
    position: relative;

    .div-dropzone-hover {
      position: absolute;
      top: 50%;
      left: 50%;
P
Phil Hughes 已提交
9 10
      margin-top: -11.5px;
      margin-left: -15px;
11
      opacity: 0;
P
Phil Hughes 已提交
12
      font-size: 30px;
13
      transition: opacity 200ms ease-in-out;
14
      pointer-events: none;
15 16 17 18
    }

    .div-dropzone-spinner {
      position: absolute;
P
Phil Hughes 已提交
19 20
      bottom: 10px;
      right: 5px;
21
      opacity: 0;
P
Phil Hughes 已提交
22
      font-size: 20px;
23 24 25 26 27 28 29 30 31
      transition: opacity 200ms ease-in-out;
    }

    .div-dropzone-icon {
      display: block;
      text-align: center;
      font-size: inherit;
    }

N
Nikita Verkhovin 已提交
32 33 34 35 36 37 38 39 40
    .div-dropzone-progress {
      position: absolute;
      top: 7px;
      left: -40px;
      width: 35px;
      font-size: 13px;
      text-align: right;
    }

41 42 43 44 45 46 47 48 49 50 51
    .dz-preview {
      display: none;
    }
  }
}

.div-dropzone-alert {
  margin-top: 5px;
  margin-bottom: 0;
  transition: opacity 200ms ease-in-out;
}
V
Vinnie Okada 已提交
52

53 54 55 56
.md-area {
  position: relative;
}

57 58 59 60
.md-header {
  .nav-links {
    a {
      padding-top: 0;
F
Filipa Lacerda 已提交
61
      line-height: 19px;
J
Jacob Schatz 已提交
62 63 64 65

      &.btn.btn-xs {
        padding: 2px 5px;
      }
F
Filipa Lacerda 已提交
66 67 68 69 70

      &:focus {
        margin-top: -10px;
        padding-top: 10px;
      }
71 72 73 74
    }
  }
}

75
.referenced-users {
T
tauriedavis 已提交
76
  color: $gl-text-color;
77
  padding-top: 10px;
78 79
}

V
Vinnie Okada 已提交
80
.md-preview-holder {
P
Phil Hughes 已提交
81 82
  min-height: 167px;
  padding: 10px 0;
83
  overflow-x: auto;
V
Vinnie Okada 已提交
84 85
}

86
.markdown-area {
C
Clement Ho 已提交
87
  border-radius: 0;
S
Sam Rose 已提交
88 89
  background: $white-light;
  border: 1px solid $md-area-border;
D
Dmitriy Zaporozhets 已提交
90
  min-height: 140px;
91
  max-height: 500px;
92 93 94 95
  padding: 5px;
  box-shadow: none;
  width: 100%;
}
A
Annabel Dunstone 已提交
96 97 98

.md {
  &.md-preview-holder {
99
    // Reset ul style types since we're nested inside a ul already
100
    @include bulleted-list;
A
Annabel Dunstone 已提交
101
  }
102 103 104 105 106 107 108 109 110

  // On diffs code should wrap nicely and not overflow
  code {
    white-space: pre-wrap;
    word-break: keep-all;
  }

  hr {
    // Darken 'whitesmoke' a bit to make it more visible in note bodies
S
Sam Rose 已提交
111
    border-color: darken($gray-normal, 8%);
112 113 114 115 116
    margin: 10px 0;
  }

  // Border around images in issue and MR comments.
  img:not(.emoji) {
A
Annabel Dunstone Gray 已提交
117
    border: 1px solid $white-normal;
118 119 120 121 122
    padding: 5px;
    margin: 5px 0;
    // Ensure that image does not exceed viewport
    max-height: calc(100vh - 100px);
  }
B
blackst0ne 已提交
123 124 125 126

  table {
    @include markdown-table;
  }
A
Annabel Dunstone 已提交
127
}
P
Phil Hughes 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140

.toolbar-group {
  float: left;
  margin-right: -5px;
  margin-left: $gl-padding;

  &:first-child {
    margin-left: 0;
  }
}

.toolbar-btn {
  float: left;
T
Tim Zallmann 已提交
141
  padding: 0 7px;
P
Phil Hughes 已提交
142 143 144 145
  background: transparent;
  border: 0;
  outline: 0;

T
Tim Zallmann 已提交
146 147 148 149 150 151 152
  svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    fill: $gl-text-color-secondary;
  }

153 154
  &:hover,
  &:focus {
T
Tim Zallmann 已提交
155 156 157
    svg {
      fill: $gl-link-color;
    }
P
Phil Hughes 已提交
158 159
  }
}
160

161
.atwho-view {
162 163 164
  overflow-y: auto;
  overflow-x: hidden;

165 166 167 168 169 170 171 172 173 174 175
  small.description {
    float: right;
    padding: 3px 5px;
  }

  .avatar-inline {
    margin-bottom: 0;
  }

  .cur {
    .avatar {
176
      @include disableAllAnimation;
177
      border: 1px solid $white-light;
178 179
    }
  }
180 181 182 183

  ul > li {
    white-space: nowrap;
  }
184

185
  // TODO: fallback to global style
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
  .atwho-view-ul {
    padding: 8px 1px;

    li {
      padding: 8px 16px;
      border: 0;

      &.cur {
        background-color: $gray-darker;
        color: $gl-text-color;

        small {
          color: inherit;
        }
      }

202 203 204 205 206 207 208 209 210 211
      div.avatar {
        display: inline-flex;
        justify-content: center;
        align-items: center;

        .center {
          line-height: 14px;
        }
      }

212 213 214 215 216 217
      strong {
        color: $gl-text-color;
      }
    }
  }
}
218 219 220 221 222 223 224 225 226 227 228

@media(max-width: $screen-xs-max) {
  .atwho-view-ul {
    width: 350px;
  }

  .atwho-view ul li {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}