markdown_area.scss 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
.div-dropzone-wrapper {
  .div-dropzone {
    position: relative;
    padding: 0;
    border: 0;
    margin-bottom: 5px;

    .div-dropzone-focus {
      border-color: #66afe9 !important;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
      outline: 0 !important;
    }

    .div-dropzone-hover {
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -0.5em;
      margin-left: -0.6em;
      opacity: 0;
      font-size: 50px;
      transition: opacity 200ms ease-in-out;
23
      pointer-events: none;
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    }

    .div-dropzone-spinner {
      position: absolute;
      top: 100%;
      left: 100%;
      margin-top: -1.1em;
      margin-left: -1.1em;
      opacity: 0;
      font-size: 30px;
      transition: opacity 200ms ease-in-out;
    }

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

N
Nikita Verkhovin 已提交
43 44 45 46 47 48 49 50 51
    .div-dropzone-progress {
      position: absolute;
      top: 7px;
      left: -40px;
      width: 35px;
      font-size: 13px;
      text-align: right;
    }

52 53 54 55 56 57 58 59 60 61 62
    .dz-preview {
      display: none;
    }
  }
}

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

64 65 66 67
.md-area {
  position: relative;
}

68
.referenced-users {
69 70
  color: #4c4e54;
  padding-top: 10px;
71 72
}

V
Vinnie Okada 已提交
73
.md-preview-holder {
74
  background: #fff;
V
Vinnie Okada 已提交
75
  border: 1px solid #ddd;
D
Dmitriy Zaporozhets 已提交
76
  min-height: 169px;
V
Vinnie Okada 已提交
77 78 79 80
  padding: 5px;
  box-shadow: none;
}

81
.markdown-area {
82
  @include border-radius(0);
83
  background: #fff;
84
  border: 1px solid #ddd;
D
Dmitriy Zaporozhets 已提交
85
  min-height: 140px;
86
  max-height: 500px;
87 88 89 90
  padding: 5px;
  box-shadow: none;
  width: 100%;
}