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

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

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

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

  fieldset.features {
    .control-label {
      font-weight: bold;
    }
  }
59
}
R
randx 已提交
60 61 62 63 64 65

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

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

78
  input[type="text"] {
79
    @extend .monospace;
R
randx 已提交
80
    border: 1px solid #BBB;
81
    box-shadow: none;
82
    margin-left: -1px;
R
randx 已提交
83 84
  }
}
85

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

}
96 97 98 99 100 101 102 103

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

  padding-left: 8px;

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

.team_member_row form {
  margin: 0px;
}