gitlabhq/app/assets/stylesheets/ref_select.scss

69 lines
1.1 KiB
SCSS
Raw Normal View History

2012-02-26 23:41:53 +01:00
/** Branch/tag selector **/
.project-refs-form {
margin:0;
span {
background:none !important;
position:static !important;
width:auto !important;
height:auto !important;
}
}
.project-refs-select {
width:120px;
}
.project-refs-form .chzn-container {
position: relative;
top: 0;
left: 0;
margin-right: 10px;
2012-02-26 23:41:53 +01:00
.chzn-drop {
2012-02-26 23:41:53 +01:00
margin:7px 0;
min-width: 400px;
border: 2px solid $blue_link;
@include border-radius(4px);
2012-02-26 23:41:53 +01:00
.chzn-results {
2012-02-26 23:41:53 +01:00
max-height:300px;
.group-result {
color: $blue_link;
}
.active-result {
&.highlighted {
background: $blue_link;
}
}
2012-02-26 23:41:53 +01:00
}
.chzn-search input {
2012-09-18 20:05:33 +02:00
min-width:365px;
2012-02-26 23:41:53 +01:00
}
}
.chzn-single {
2012-08-25 18:42:34 +02:00
@include bg-gray-gradient;
2012-02-26 23:41:53 +01:00
div {
2012-02-26 23:41:53 +01:00
background:transparent;
border-left:none;
}
span {
2012-02-26 23:41:53 +01:00
font-weight: normal;
}
}
}
/** Fix for Search Dropdown Border **/
.chzn-container {
.chzn-search {
input:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
}
}