Skip to content
Snippets Groups Projects

[WIP] Moves the stage and ref from the table in a ci commit build to a plain one line text

Closed Tiago Botelho requested to merge tiagonbotelho/gitlab-ce:ci-commit into master
2 files
+ 353
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -36,6 +36,21 @@
@@ -36,6 +36,21 @@
border-radius: $border-radius-base;
border-radius: $border-radius-base;
box-shadow: 0 2px 4px $dropdown-shadow-color;
box-shadow: 0 2px 4px $dropdown-shadow-color;
 
&.is-loading {
 
.dropdown-content {
 
display: none;
 
}
 
 
.dropdown-loading {
 
display: block;
 
}
 
}
 
 
ul {
 
margin: 0;
 
padding: 0;
 
}
 
li {
li {
text-align: left;
text-align: left;
list-style: none;
list-style: none;
@@ -68,6 +83,57 @@
@@ -68,6 +83,57 @@
}
}
}
}
 
.dropdown-menu-paging {
 
.dropdown-page-two {
 
display: none;
 
}
 
 
&.is-page-two {
 
.dropdown-page-one {
 
display: none;
 
}
 
 
.dropdown-page-two {
 
display: block;
 
}
 
}
 
}
 
 
.dropdown-menu-user {
 
.avatar {
 
float: left;
 
width: 30px;
 
height: 30px;
 
margin: 0 10px 0 0;
 
}
 
}
 
 
.dropdown-menu-user-link {
 
padding-top: 7px;
 
padding-bottom: 7px;
 
}
 
 
.dropdown-menu-user-full-name {
 
display: block;
 
margin-bottom: 2px;
 
line-height: 1;
 
text-overflow: ellipsis;
 
overflow: hidden;
 
white-space: nowrap;
 
}
 
 
.dropdown-menu-user-username {
 
display: block;
 
line-height: 1;
 
text-overflow: ellipsis;
 
overflow: hidden;
 
white-space: nowrap;
 
}
 
 
.dropdown-select {
 
width: 280px;
 
}
 
.dropdown-menu-align-right {
.dropdown-menu-align-right {
left: auto;
left: auto;
right: 0;
right: 0;
@@ -101,3 +167,112 @@
@@ -101,3 +167,112 @@
font-size: 13px;
font-size: 13px;
line-height: 22px;
line-height: 22px;
}
}
 
 
.dropdown-title {
 
position: relative;
 
margin-bottom: 10px;
 
padding-left: 30px;
 
padding-right: 30px;
 
padding-bottom: 10px;
 
font-weight: 600;
 
line-height: 1;
 
text-align: center;
 
text-overflow: ellipsis;
 
white-space: nowrap;
 
border-bottom: 1px solid $dropdown-divider-color;
 
overflow: hidden;
 
}
 
 
.dropdown-title-button {
 
position: absolute;
 
top: -1px;
 
padding: 0;
 
color: #BFBFBF;
 
font-size: 14px;
 
border: 0;
 
background: none;
 
 
&:hover {
 
color: darken(#BFBFBF, 15%);
 
}
 
}
 
 
.dropdown-menu-close {
 
right: 0;
 
}
 
 
.dropdown-menu-back {
 
left: 0;
 
}
 
 
.dropdown-input {
 
position: relative;
 
margin-bottom: 10px;
 
 
.fa {
 
position: absolute;
 
top: 10px;
 
right: 10px;
 
color: #C7C7C7;
 
font-size: 12px;
 
pointer-events: none;
 
}
 
}
 
 
.dropdown-input-field {
 
width: 100%;
 
padding: 0 7px;
 
color: #C7C7C7;
 
line-height: 30px;
 
border: 1px solid $dropdown-divider-color;
 
border-radius: 2px;
 
outline: 0;
 
 
&:focus {
 
color: $dropdown-link-color;
 
border-color: rgb(58, 171, 240);
 
box-shadow: 0 0 4px rgba(#000, .2);
 
 
+ .fa {
 
color: $dropdown-link-color;
 
}
 
}
 
 
&:hover {
 
+ .fa {
 
color: $dropdown-link-color;
 
}
 
}
 
}
 
 
.dropdown-content {
 
max-height: 200px;
 
overflow-y: scroll;
 
}
 
 
.dropdown-footer {
 
padding-top: 10px;
 
margin-top: 10px;
 
font-size: 13px;
 
border-top: 1px solid $dropdown-divider-color;
 
}
 
 
.dropdown-loading {
 
position: absolute;
 
top: 0;
 
right: 0;
 
bottom: 0;
 
left: 0;
 
display: none;
 
z-index: 9;
 
background-color: rgba(#fff, .6);
 
font-size: 28px;
 
 
.fa {
 
position: absolute;
 
top: 50%;
 
left: 50%;
 
margin-top: -14px;
 
margin-left: -14px;
 
}
 
}
Loading