Add option to switch the git remote and branch

This commit is contained in:
JonnyWong16 2016-10-09 18:36:59 -07:00 committed by JonnyWong16
commit d1551bd8c7
8 changed files with 169 additions and 29 deletions

View file

@ -60,6 +60,28 @@ select[multiple] option {
-moz-border-radius: 2px;
border-radius: 2px;
}
select.form-control {
margin: 5px 0 5px 0;
color: #fff;
border: 0px solid #444;
background: #555;
height: 32px;
padding: 6px 12px;
background-color: #555;
border-radius: 3px;
transition: background-color .3s;
}
select.form-control:focus {
outline: 0;
outline: thin dotted \9;
color: #555;
background-color: #fff;
transition: background-color .3s;
}
select.form-control option {
color: #555;
background-color: #fff;
}
img {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
@ -3118,3 +3140,9 @@ a:hover .overlay-refresh-image:hover {
border: 1px solid #444;
border-bottom-color: transparent;
}
.git-group input.form-control {
width: 40%;
}
.git-group select.form-control {
width: 60%;
}