issues.scss 1.65 KB
Newer Older
1
.issues-list {
2
  .issue {
3
    padding: 10px;
4
    position: relative;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
5

6 7 8 9 10 11 12 13 14 15
    .issue-title {
      margin-bottom: 5px;
      font-size: 14px;
    }

    .issue-info {
      color: #999;
    }

    .issue-check {
16
      float: left;
randx's avatar
randx committed
17 18 19 20 21
      padding: 8px 0;
      padding-right: 8px;
      min-width: 15px;
    }

22 23 24 25 26 27 28 29 30
    .issue-labels {
      display: inline-block;
    }

    .issue-actions {
      display: none;
      position: absolute;
      top: 10px;
      right: 2px;
randx's avatar
randx committed
31 32
    }

33 34 35 36
    &:hover {
      .issue-actions {
        display: block;
      }
randx's avatar
randx committed
37 38 39
    }
  }
}
randx's avatar
randx committed
40

41
input.check_all_issues {
42
  float: left;
43
  padding: 0;
44
  margin: 0;
randx's avatar
randx committed
45
  margin-right: 10px;
46
  position: relative;
47
  top: 10px;
48 49 50
  height: 22px;
}

51 52
.issues_content {
  .title {
53 54
    height: 40px;
  }
55 56 57 58

  form {
    margin: 0;
  }
randx's avatar
randx committed
59 60
}

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
.btn.close_issue {
  color: #B94A48;
  font-weight: bold;
  @include shade;
  &:hover {
    color: #B94A48;
  }
}
.btn.reopen_issue {
  color: #468847;
  font-weight: bold;
  @include shade;
  &:hover {
    color: #468847;
  }
}

78
@media (min-width: 800px)  { .issues_filters select { width: 160px; }  }
79
@media (min-width: 1200px) { .issues_filters select { width: 220px; }  }
randx's avatar
randx committed
80

81 82
@media (min-width: 800px)  { .issues_bulk_update select { width: 120px; }  }
@media (min-width: 1200px) { .issues_bulk_update select { width: 160px; }  }
randx's avatar
randx committed
83

84
.issues-holder {
85 86
  .issues_filters {
  }
87

88
  .issues_bulk_update {
randx's avatar
randx committed
89
    margin: 0;
90
    form {
91
      float:left;
randx's avatar
randx committed
92
    }
93

94
    .update_selected_issues {
95
      margin-left: 4px;
randx's avatar
randx committed
96
    }
97 98

    .update_issues_text {
99
      padding: 5px;
100
      line-height: 28px;
101
      float: left;
102
      color: #479;
103
    }
randx's avatar
randx committed
104 105
  }
}
106

107
#update_status {
108
  width: 100px;
109
}
110 111 112 113

.participants {
  margin-bottom: 10px;
}