issues.scss 1.85 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: 13px;
48 49
}

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

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

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
.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;
  }
}

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

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

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

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

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

99
#update_status {
100
  width: 100px;
101
}
102 103 104 105

.participants {
  margin-bottom: 10px;
}
106 107

.issues_bulk_update {
108
  .select2-container {
109 110 111
    text-shadow: none;
  }
}
112 113 114 115 116 117 118 119 120 121

.issue-search-form {
  margin: 0;
  height: 24px;

  .issue_search {
    border: 1px solid #DDD !important;
    background-color: #f4f4f4;
  }
}
122

123
.issue-show-labels .label {
124 125 126 127 128
  padding: 6px 10px;
}

form.edit-issue {
  margin: 0;
129
}