summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/components/project_list_item.scss
blob: 8e7c2c4398c7c49b0fc7680ef585c8dc23ca8d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.project-list-item {
  &:not(:disabled):not(.disabled) {
    &:focus,
    &:active,
    &:focus:active {
      outline: none;
      box-shadow: none;
    }
  }
}

// When housed inside a modal, the edge of each item
// should extend to the edge of the modal.
.modal-body {
  .project-list-item {
    border-radius: 0;
    margin-left: -$gl-padding;
    margin-right: -$gl-padding;

    .project-namespace-name-container {
      overflow: hidden;
    }
  }
}