wall.scss 911 Bytes
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1
.wall-page {
2
  .wall-note-form {
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
3
    @extend .col-md-12;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
4 5 6 7 8 9 10 11 12 13 14 15 16

    margin: 0;
    height: 140px;
    background: #F9F9F9;
    position: fixed;
    bottom: 0px;
    padding: 3px;
    padding-bottom: 25px;
    border: 1px solid #DDD;
  }

  .notes {
    margin-bottom: 160px;
17 18 19 20 21 22 23 24
    background: #FFE;
    border: 1px solid #EED;

    > li {
      @extend .clearfix;
      border-bottom: 1px solid #EED;
      padding: 10px;
    }
25 26 27

    .wall-author {
      color: #666;
28
      float: left;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
29 30
      font-size: 12px;
      width: 120px;
31
      text-overflow: ellipsis;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
32 33
      white-space: nowrap;
      overflow: hidden;
34 35 36 37 38 39 40
    }

    .wall-text {
      border-left: 1px solid #CCC;
      margin-left: 10px;
      padding-left: 10px;
      float: left;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
41
      width: 75%;
42 43 44
    }

    .wall-file {
45 46 47 48 49
      margin-left: 8px;
      background: #EEE;
    }

    abbr {
50
      float: right;
51 52
      color: #AAA;
      border: none;
53
    }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
54 55
  }
}