- UI feedback fixes: text cutoffs, misformatting fixes, etc

- Add hotkey support for searching and creating repositories
- Make search animations significantly faster
This commit is contained in:
Joseph Schorr 2015-04-08 14:39:52 -04:00
parent 7bdd7c5f82
commit af468a8c6a
13 changed files with 99 additions and 46 deletions

View file

@ -10,6 +10,11 @@
text-decoration: none !important;
}
.build-mini-status a {
text-decoration: none !important;
color: black;
}
.build-mini-status .timing {
display: inline-block;
margin-left: 30px;
@ -29,5 +34,15 @@
bottom: 4px;
line-height: 33px;
overflow: hidden;
}
.build-mini-status .build-description .tbd-content {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow: hidden;
text-overflow: ellipsis;
}
white-space: nowrap;
}

View file

@ -42,7 +42,7 @@ nav.navbar-default .navbar-nav>li>a.active {
top: -50px;
z-index: 4;
height: 83px;
transition: top 0.7s cubic-bezier(.23,.88,.72,.98);
transition: top 0.3s cubic-bezier(.23,.88,.72,.98);
background: white;
box-shadow: 0px 1px 16px #444;
padding: 10px;
@ -89,7 +89,7 @@ nav.navbar-default .navbar-nav>li>a.active {
right: 0px;
top: -130px;
z-index: 3;
transition: top 0.7s cubic-bezier(.23,.88,.72,.98), height 0.5s ease-in-out;
transition: top 0.4s cubic-bezier(.23,.88,.72,.98), height 0.25s ease-in-out;
background: white;
box-shadow: 0px 1px 16px #444;

View file

@ -44,3 +44,7 @@
.repository-view .heading-controls .btn .fa {
margin-right: 6px;
}
.repository-view .tag-span {
white-space: nowrap;
}