Welcome to mirror list, hosted at ThFree Co, Russian Federation.

projects.scss « sections « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28df1b5ac28dfe6f3029d253f75f32033bc88158 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.projects {
  @extend .row;
  .activities {
  }

  .side {
    @extend .pull-right;

    .projects_box {
      > .title {
        padding: 2px 15px;
      }
      .nav-projects-tabs li { padding: 0; }
      .well-list {
        li { padding: 15px; }
        .arrow {
          float: right;
          padding: 10px;
          margin: 0;
        }
        .last_activity {
          padding-top: 5px;
          display: block;
          span, strong {
            font-size: 12px;
            color: #666;
          }
        }
      }
      @extend .ui-box;
    }
  }
}

.new_project,
.edit_project {
  .project_name_holder {
    input,
    label {
      font-size: 16px;
      line-height: 20px;
      padding: 8px;
    }
    .btn {
      padding: 6px 10px;
      margin-left: 10px;
      margin-bottom: 8px;
    }
  }
  .adv_settings {
    h6 { margin-left: 40px; }
  }

  fieldset.features {
    .control-label {
      font-weight: bold;
    }
  }
}

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

.project_clone_holder {
  input[type="text"],
  .btn {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    padding: 3px 10px;
  }

  input[type="text"] {
    @extend .monospace;
    border: 1px solid #BBB;
    box-shadow: none;
    margin-left: -1px;
  }
}

.save-project-loader {
  img {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  h3 {
    @extend .page_title;
  }

}

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

  padding-left: 8px;

  li {
    a {
      padding: 6px 25px;
      margin-top: 2px;
      border-color: #DDD;
      background-color: #EEE;
      text-shadow: 0 1px 1px white;
      color: #555;
    }
    &.active {
      a {
        font-weight: bold;
      }
    }
  }
}