kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.9 KiB
80 lines
1.9 KiB
12 years ago
|
.project-search-results {
|
||
12 years ago
|
-webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
|
||
12 years ago
|
-moz-box-sizing: content-box; /* Firefox, other Gecko */
|
||
|
box-sizing: content-box; /* Opera/IE 8+ */
|
||
12 years ago
|
|
||
12 years ago
|
/* Fixing select2's positioning errors for results*/
|
||
|
margin-left: -1px;
|
||
|
|
||
|
/* Disabling rounded corners and drop shadow on result list */
|
||
|
-webkit-border-radius: 0;
|
||
|
-moz-border-radius : 0;
|
||
|
border-radius : 0;
|
||
12 years ago
|
-webkit-box-shadow: none;
|
||
|
-moz-box-shadow : none;
|
||
12 years ago
|
-o-box-shadow : none;
|
||
12 years ago
|
box-shadow : none;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
/* Hide upper half of select2-select widget */
|
||
|
#project-search-container .select2-choice {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
12 years ago
|
/* Indirectly styling size of result list */
|
||
|
.select2-container.select2-select {
|
||
12 years ago
|
position: static;
|
||
|
max-width: 350px;
|
||
|
width:100%;
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
12 years ago
|
/* make result list longer */
|
||
12 years ago
|
.select2-results {
|
||
12 years ago
|
max-height: 500px;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
/* Make no results a bit look like results */
|
||
12 years ago
|
.select2-results .select2-no-results,
|
||
12 years ago
|
.select2-results .select2-searching,
|
||
|
.select2-results .select2-more-results
|
||
|
{
|
||
12 years ago
|
background-color: #fff;
|
||
12 years ago
|
margin: 3px 6px 3px 6px;
|
||
|
}
|
||
12 years ago
|
.select2-results .select2-searching,
|
||
|
.select2-results .select2-more-results
|
||
|
{
|
||
12 years ago
|
background: url(<%= asset_path 'select2/select2-spinner.gif' %>) no-repeat scroll 100% center #fff;
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
12 years ago
|
|
||
12 years ago
|
/* Selected elements should be bold, have inverted colors and rounded corners */
|
||
12 years ago
|
.select2-results .select2-highlighted {
|
||
12 years ago
|
-webkit-border-radius:5px;
|
||
|
-moz-border-radius:5px;
|
||
|
border-radius: 5px;
|
||
|
|
||
|
background-color: #24B3E7;
|
||
12 years ago
|
font-weight:bold;
|
||
|
}
|
||
12 years ago
|
.select2-results .select2-result-unselectable {
|
||
|
color: #999;
|
||
12 years ago
|
background:transparent;
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
|
||
|
/* Shorten overlong project names */
|
||
|
.select2-results .select2-result-label {
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
-ms-text-overflow: ellipsis;
|
||
|
-o-text-overflow: ellipsis;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
12 years ago
|
|
||
|
|
||
|
/* Fix search input in IE8 - input was to high */
|
||
|
.select2-search input {
|
||
|
min-height: 0\9;
|
||
|
}
|