BigW Consortium Gitlab

environments.scss 1.86 KB
Newer Older
1 2 3 4 5
.deployments-container {
  width: 100%;
  overflow: auto;
}

6 7 8 9 10
.environments-list-loading {
  width: 100%;
  font-size: 34px;
}

11
@media (max-width: $screen-xs-max) {
Filipa Lacerda committed
12 13 14 15 16 17
  .environments-container {
    width: 100%;
    overflow: auto;
  }
}

18
.environments {
19 20
  table-layout: fixed;

21 22 23 24 25 26 27 28 29 30 31
  .environments-commit,
  .environments-actions,
  .environments-deploy,
  .environments-build,
  .environments-date {
    position: static;
    float: none;
    display: table-cell;
  }

  .environments-commit,
32 33 34 35 36 37 38
  .environments-actions {
    width: 20%;
  }

  .environments-deploy,
  .environments-build,
  .environments-date {
Filipa Lacerda committed
39
    width: 10%;
40 41 42
  }

  .environments-name {
Filipa Lacerda committed
43
    width: 30%;
44 45
  }

46 47 48 49 50
  .deployment-column {
    .avatar {
      float: none;
    }
  }
Annabel Dunstone committed
51

52 53 54
  .commit-title {
    margin: 0;
  }
Annabel Dunstone committed
55

Filipa Lacerda committed
56
  .avatar-image-container {
57 58 59
    text-decoration: none;
  }

60 61 62
  .icon-play {
    height: 13px;
    width: 12px;
Annabel Dunstone committed
63 64
  }

Filipa Lacerda committed
65
  .external-url,
Annabel Dunstone committed
66 67 68 69 70 71 72 73 74 75 76
  .dropdown-new {
    color: $table-text-gray;
  }

  .dropdown-menu {

    .fa {
      margin-right: 6px;
      color: $table-text-gray;
    }
  }
77

78
  .build-link,
79 80 81
  .branch-name {
    color: $gl-dark-link-color;
  }
82

83 84
  .stop-env-link,
  .external-url {
85
    color: $table-text-gray;
86

87
    .stop-env-icon {
88 89 90
      font-size: 14px;
    }
  }
91

Filipa Lacerda committed
92 93
  .deployment {
    .build-column {
94

Filipa Lacerda committed
95 96 97
      .build-link {
        color: $gl-dark-link-color;
      }
98

Filipa Lacerda committed
99 100 101 102 103
      .avatar {
        float: none;
      }
    }
  }
Filipa Lacerda committed
104

105
  .children-row .environment-name {
106 107 108
    margin-left: 17px;
    margin-right: -17px;
  }
Filipa Lacerda committed
109

110 111 112
  .folder-icon {
    padding: 0 5px 0 0;
  }
Filipa Lacerda committed
113

114 115
  .folder-name {
    cursor: pointer;
Filipa Lacerda committed
116

117 118 119 120 121 122
    .badge {
      font-weight: normal;
      background-color: $gray-darker;
      color: $gl-placeholder-color;
      vertical-align: baseline;
    }
123
  }
124 125
}

126
.table.ci-table.environments {
127 128 129 130
  .icon-container {
    width: 20px;
    text-align: center;
  }
131

132 133
  .branch-commit {
    .commit-id {
Filipa Lacerda committed
134
      margin-right: 0;
135 136
    }
  }
137
}