BigW Consortium Gitlab

projects.scss 2.03 KB
Newer Older
1
.projects {
2 3 4 5
  @extend .row;
  .activities {
  }

6
  .side {
7
    @extend .pull-right;
8

9
    .ui-box {
10
      margin: 3px;
11
      > .title {
12
        padding: 2px 15px;
13
      }
14 15
      .nav-projects-tabs li { padding: 0; }
      .well-list {
16
        li { padding: 15px; }
17 18 19 20 21 22 23 24 25 26 27
        .arrow {
          float: right;
          padding: 10px;
          margin: 0;
        }
        .last_activity {
          padding-top: 5px;
          display: block;
          span, strong {
            font-size: 12px;
            color: #666;
28 29 30
          }
        }
      }
31 32 33 34
      @extend .ui-box;
    }
  }
}
35

36 37 38
.new_project,
.edit_project {
  .project_name_holder {
39
    input,
40
    label {
41 42 43
      font-size: 16px;
      line-height: 20px;
      padding: 8px;
44
    }
45
    .btn {
46
      padding: 6px 10px;
47 48
      margin-left: 10px;
      margin-bottom: 8px;
49 50
    }
  }
51
  .adv_settings {
52
    h6 { margin-left: 40px; }
53
  }
54 55 56 57 58 59

  fieldset.features {
    .control-label {
      font-weight: bold;
    }
  }
60
}
randx committed
61 62 63 64 65 66

.project_clone_panel {
  @include border-radius(4px);
  @include bg-gray-gradient;
  padding: 4px 7px;
  border: 1px solid #CCC;
67
  margin-bottom: 20px;
68 69 70
}

.project_clone_holder {
71
  input[type="text"],
72
  .btn {
73
    font-size: 12px;
74 75 76
    line-height: 18px;
    margin: 0;
    padding: 3px 10px;
77
  }
78

79
  input[type="text"] {
80
    @extend .monospace;
randx committed
81
    border: 1px solid #BBB;
82
    box-shadow: none;
83
    margin-left: -1px;
84
    background: #FFF;
randx committed
85 86
  }
}
87

88 89
.save-project-loader {
  img {
90 91
    margin-top: 50px;
    margin-bottom: 50px;
92
  }
93
  h3 {
94 95 96 97
    @extend .page_title;
  }

}
98 99 100 101 102 103 104 105

ul.nav.nav-projects-tabs {
  @extend .nav-tabs;

  padding-left: 8px;

  li {
    a {
106
      padding: 6px 25px;
107 108 109 110 111 112 113 114 115 116 117 118 119
      margin-top: 2px;
      border-color: #DDD;
      background-color: #EEE;
      text-shadow: 0 1px 1px white;
      color: #555;
    }
    &.active {
      a {
        font-weight: bold;
      }
    }
  }
}
120 121 122 123

.team_member_row form {
  margin: 0px;
}
124 125 126 127 128 129 130 131 132 133 134 135 136

.public-projects {
  li {
    margin-top: 8px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;

    .description {
      margin-left: 22px;
      color: #aaa;
    }
  }
}