BigW Consortium Gitlab

dashboard.scss 1.58 KB
Newer Older
1 2
.dashboard {
  .side {
Dmitriy Zaporozhets committed
3 4 5 6 7 8
    .panel {
      .panel-heading {
        background: #EEE;
        border-top-left-radius: 0;
      }
      border-top-left-radius: 0;
9 10 11 12 13 14 15 16 17
    }
  }
}

.dashboard-search-filter {
  padding:5px;

  .search-text-input {
    float:left;
18
    @extend .col-md-2;
19 20 21 22 23 24 25
  }
  .btn {
    margin-left: 5px;
    float:left;
  }
}

26
.dashboard {
27
  .dash-filter {
Dmitriy Zaporozhets committed
28
    width: 205px;
29
    float: left;
30
    height: inherit;
31 32
  }
}
33 34

@media (max-width: 1200px) {
35
  .dashboard .dash-filter {
Dmitriy Zaporozhets committed
36
    width: 140px;
37 38
  }
}
39 40 41 42

.dash-sidebar-tabs {
  margin-bottom: 2px;
  border: none;
43
  margin: 0 !important;
44 45 46 47

  li {
    &.active {
      a {
48
        background-color: #EEE;
49 50 51 52 53 54 55 56
        border-bottom: 1px solid #EEE !important;
        &:hover {
          background: #eee;
        }
      }
    }

    a {
57
      border-color: #DDD !important;
58 59 60
    }
  }
}
61 62

.project-row, .group-row {
63
  padding: 8px 15px !important;
64 65
  font-size: 14px;
  line-height: 24px;
66

67 68 69 70
  a {
    display: block;
  }

71
  .project-name, .group-name {
72
    font-weight: 500;
73 74 75 76 77 78 79 80 81
  }

  .arrow {
    float: right;
    margin: 0;
    font-size: 20px;
    color: #666;
  }

82
  .last-activity {
83 84
    float: right;
    font-size: 12px;
85 86
    color: #AAA;
    display: block;
87
    .date {
88 89 90 91
      color: #777;
    }
  }
}
92

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
.project-access-icon {
  margin-left: 10px;
  float: left;
  margin-right: 15px;
  font-size: 20px;
  margin-bottom: 15px;
  border: 1px solid #EEE;
  padding: 8px 12px;
  border-radius: 50px;
  background: #f5f5f5;
  text-align: center;

  i {
    color: #BBB;
  }
}
109 110 111

.dash-project-access-icon {
  float: left;
112 113
  margin-right: 3px;
  color: #999;
114 115
  width: 16px;
}