mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 11:36:09 +10:00
* Show new merge request button from compare page * Show message if user selected same branches * Show message if compared branches are the same * Prepend inputs with from/to labels
52 lines
815 B
SCSS
52 lines
815 B
SCSS
form {
|
|
@extend .form-horizontal;
|
|
|
|
label {
|
|
@extend .control-label;
|
|
}
|
|
}
|
|
|
|
input.input-xpadding,
|
|
.add-on.input-xpadding {
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
.control-group {
|
|
.control-label {
|
|
padding-top: 6px;
|
|
}
|
|
.controls {
|
|
input, textarea {
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
input[type="radio"], input[type="checkbox"] {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.add-on {
|
|
padding: 6px;
|
|
}
|
|
}
|
|
}
|
|
|
|
input[type='search'].search-text-input {
|
|
background-image: url("icon-search.png");
|
|
background-repeat: no-repeat;
|
|
background-position: 10px;
|
|
padding-left: 25px;
|
|
@include border-radius(4px);
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
input[type='text'].danger {
|
|
background: #F2DEDE!important;
|
|
border-color: #D66;
|
|
text-shadow: 0 1px 1px #fff
|
|
}
|
|
|
|
fieldset legend {
|
|
font-size: 16px;
|
|
margin-bottom: 10px;
|
|
}
|