markdown_area.scss 4.3 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
.md-header {
  .nav-links {
    a {
60
      width: 100%;
61
      padding-top: 0;
F
Filipa Lacerda 已提交
62
      line-height: 19px;
J
Jacob Schatz 已提交
63 64 65 66

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

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

76
.md-header-tab {
A
Annabel Dunstone Gray 已提交
77
  @media (max-width: $screen-xs-max) {
78 79 80 81 82 83 84
    flex: 1;
    width: 100%;
    border-bottom: 1px solid $border-color;
    text-align: center;
  }
}

85 86 87 88
.nav-links {
  li.md-header-toolbar {
    margin-left: auto;
    display: none;
89

90 91 92
    &.active {
      display: block;

A
Annabel Dunstone Gray 已提交
93 94 95 96 97 98 99 100
      @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;
      }
101
    }
102 103 104
  }
}

105
.referenced-users {
T
tauriedavis 已提交
106
  color: $gl-text-color;
107
  padding-top: 10px;
108 109
}

V
Vinnie Okada 已提交
110
.md-preview-holder {
P
Phil Hughes 已提交
111 112
  min-height: 167px;
  padding: 10px 0;
113
  overflow-x: auto;
V
Vinnie Okada 已提交
114 115
}

116
.markdown-area {
C
Clement Ho 已提交
117
  border-radius: 0;
S
Sam Rose 已提交
118 119
  background: $white-light;
  border: 1px solid $md-area-border;
D
Dmitriy Zaporozhets 已提交
120
  min-height: 140px;
121
  max-height: 500px;
122 123 124 125
  padding: 5px;
  box-shadow: none;
  width: 100%;
}
A
Annabel Dunstone 已提交
126 127 128

.md {
  &.md-preview-holder {
129
    // Reset ul style types since we're nested inside a ul already
130
    @include bulleted-list;
A
Annabel Dunstone 已提交
131
  }
132 133 134 135 136 137 138 139 140

  // 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 已提交
141
    border-color: darken($gray-normal, 8%);
142 143 144 145 146
    margin: 10px 0;
  }

  // Border around images in issue and MR comments.
  img:not(.emoji) {
A
Annabel Dunstone Gray 已提交
147
    border: 1px solid $white-normal;
148 149 150 151 152
    padding: 5px;
    margin: 5px 0;
    // Ensure that image does not exceed viewport
    max-height: calc(100vh - 100px);
  }
B
blackst0ne 已提交
153 154 155 156

  table {
    @include markdown-table;
  }
A
Annabel Dunstone 已提交
157
}
P
Phil Hughes 已提交
158 159 160

.toolbar-btn {
  float: left;
T
Tim Zallmann 已提交
161
  padding: 0 7px;
P
Phil Hughes 已提交
162 163 164 165
  background: transparent;
  border: 0;
  outline: 0;

T
Tim Zallmann 已提交
166 167 168 169 170 171 172
  svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    fill: $gl-text-color-secondary;
  }

173 174
  &:hover,
  &:focus {
T
Tim Zallmann 已提交
175 176 177
    svg {
      fill: $gl-link-color;
    }
P
Phil Hughes 已提交
178 179
  }
}
180

181 182 183 184
.toolbar-fullscreen-btn {
  margin-left: $gl-padding;
  margin-right: -5px;

A
Annabel Dunstone Gray 已提交
185
  @media (max-width: $screen-xs-max) {
186 187 188 189 190
    margin-left: 0;
    margin-right: 0;
  }
}

191
.atwho-view {
192 193 194
  overflow-y: auto;
  overflow-x: hidden;

195 196 197 198 199 200 201 202 203 204 205
  .name,
  small.aliases,
  small.params {
    float: left;
  }

  small.aliases,
  small.params {
    padding: 2px 5px;
  }

206 207 208 209 210 211 212 213 214 215 216
  small.description {
    float: right;
    padding: 3px 5px;
  }

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

  .cur {
    .avatar {
217
      @include disableAllAnimation;
218
      border: 1px solid $white-light;
219 220
    }
  }
221 222

  ul > li {
223
    @include clearfix;
224 225
    white-space: nowrap;
  }
226

227
  // TODO: fallback to global style
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
  .atwho-view-ul {
    padding: 8px 1px;

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

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

        small {
          color: inherit;
        }
      }

244 245 246 247 248 249 250 251 252 253
      div.avatar {
        display: inline-flex;
        justify-content: center;
        align-items: center;

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

254 255 256 257 258 259
      strong {
        color: $gl-text-color;
      }
    }
  }
}
260

A
Annabel Dunstone Gray 已提交
261
@media (max-width: $screen-xs-max) {
262 263 264 265 266 267 268 269 270
  .atwho-view-ul {
    width: 350px;
  }

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