builds.scss 1.42 KB
Newer Older
1
.build-page {
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  pre.trace {
    background: #111111;
    color: #fff;
    font-family: $monospace_font;
    white-space: pre;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    overflow: auto;
    overflow-y: hidden;
    font-size: 12px;

    .fa-refresh {
      font-size: 24px;
      margin-left: 20px;
    }
  }

  .autoscroll-container {
    position: fixed;
24
    bottom: 20px;
25 26 27 28 29
    right: 20px;
    z-index: 100;
  }

  .scroll-controls {
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    &.affix-top {
      position: absolute;
      top: 10px;
      right: 25px;
    }

    &.affix-bottom {
      position: absolute;
      right: 25px;
    }

    &.affix {
      right: 30px;
      bottom: 15px;

      @media (min-width: $screen-md-min) {
        right: 26%;
      }
    }
49 50 51

    a {
      display: block;
52
      margin-bottom: 10px;
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    }
  }

  .page-sidebar-collapsed {
    .scroll-controls {
      left: 70px;
    }
  }

  .build-widget {
    padding: 10px;
    background: $background-color;
    margin-bottom: 20px;
    border-radius: 4px;

    .title {
      margin-top: 0;
      color: #666;
      line-height: 1.5;
    }
    .attr-name {
      color: #777;
    }
  }

  .alert-disabled {
    background: $background-color;

    a {
      color: #3084bb !important;
    }
  }
}