markdown_area.scss 4.0 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
.md-header-tab {
  @media(max-width: $screen-xs-max) {
    flex: 1;
    width: 100%;
    border-bottom: 1px solid $border-color;
    text-align: center;
  }
}

.md-header-toolbar {
  margin-left: auto;

  @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;
  }
}

98
.referenced-users {
T
tauriedavis 已提交
99
  color: $gl-text-color;
100
  padding-top: 10px;
101 102
}

V
Vinnie Okada 已提交
103
.md-preview-holder {
P
Phil Hughes 已提交
104 105
  min-height: 167px;
  padding: 10px 0;
106
  overflow-x: auto;
V
Vinnie Okada 已提交
107 108
}

109
.markdown-area {
C
Clement Ho 已提交
110
  border-radius: 0;
S
Sam Rose 已提交
111 112
  background: $white-light;
  border: 1px solid $md-area-border;
D
Dmitriy Zaporozhets 已提交
113
  min-height: 140px;
114
  max-height: 500px;
115 116 117 118
  padding: 5px;
  box-shadow: none;
  width: 100%;
}
A
Annabel Dunstone 已提交
119 120 121

.md {
  &.md-preview-holder {
122
    // Reset ul style types since we're nested inside a ul already
123
    @include bulleted-list;
A
Annabel Dunstone 已提交
124
  }
125 126 127 128 129 130 131 132 133

  // 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 已提交
134
    border-color: darken($gray-normal, 8%);
135 136 137 138 139
    margin: 10px 0;
  }

  // Border around images in issue and MR comments.
  img:not(.emoji) {
A
Annabel Dunstone Gray 已提交
140
    border: 1px solid $white-normal;
141 142 143 144 145
    padding: 5px;
    margin: 5px 0;
    // Ensure that image does not exceed viewport
    max-height: calc(100vh - 100px);
  }
B
blackst0ne 已提交
146 147 148 149

  table {
    @include markdown-table;
  }
A
Annabel Dunstone 已提交
150
}
P
Phil Hughes 已提交
151 152 153

.toolbar-btn {
  float: left;
T
Tim Zallmann 已提交
154
  padding: 0 7px;
P
Phil Hughes 已提交
155 156 157 158
  background: transparent;
  border: 0;
  outline: 0;

T
Tim Zallmann 已提交
159 160 161 162 163 164 165
  svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    fill: $gl-text-color-secondary;
  }

166 167
  &:hover,
  &:focus {
T
Tim Zallmann 已提交
168 169 170
    svg {
      fill: $gl-link-color;
    }
P
Phil Hughes 已提交
171 172
  }
}
173

174 175 176 177 178 179 180 181 182 183
.toolbar-fullscreen-btn {
  margin-left: $gl-padding;
  margin-right: -5px;

  @media(max-width: $screen-xs-max) {
    margin-left: 0;
    margin-right: 0;
  }
}

184
.atwho-view {
185 186 187
  overflow-y: auto;
  overflow-x: hidden;

188 189 190 191 192 193 194 195 196 197 198
  small.description {
    float: right;
    padding: 3px 5px;
  }

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

  .cur {
    .avatar {
199
      @include disableAllAnimation;
200
      border: 1px solid $white-light;
201 202
    }
  }
203 204 205 206

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

208
  // TODO: fallback to global style
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
  .atwho-view-ul {
    padding: 8px 1px;

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

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

        small {
          color: inherit;
        }
      }

225 226 227 228 229 230 231 232 233 234
      div.avatar {
        display: inline-flex;
        justify-content: center;
        align-items: center;

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

235 236 237 238 239 240
      strong {
        color: $gl-text-color;
      }
    }
  }
}
241 242 243 244 245 246 247 248 249 250 251

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

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