-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy path_vendor-overwrites.scss
59 lines (47 loc) · 1.32 KB
/
_vendor-overwrites.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* Swiftype Search CSS overrides - https://swiftype.com/documentation/tutorials/custom_styles
=========================================================================================== */
/* Change color of search dropdown text */
.swiftype-widget .autocomplete ul li {
p.title {
color: $ember-orange;
}
&.active {
background: none;
background-color: $ember-orange;
border-top: 1px solid darken($ember-orange, 20%);
border-bottom: 1px solid darken($ember-orange, 20%);
box-shadow: 0 1px 0 #C0242D inset;
.sections {
color: white;
em {
color: black;
text-shadow: lighten($ember-orange, 10%) 0px -1px 0px;
}
}
}
}
/* Changing the search result link colors */
.st-result-listing a {
color: $ember-orange;
&:visited {
color: darken($ember-orange, 20%);
}
&:hover {
color: lighten($ember-orange, 20%);
}
}
/* Select2 */
.version-select {
// Hide from users without javascript enabled
// select2 will override this for users with javascript
display: none;
}
.select2-container .select2-search--inline .select2-search__field {
outline: none; }
.select2-container--default .select2-selection--single {
outline: none; }
@media screen and (max-width : $large-screen) {
.select2-container.select2-container--default {
margin-top: 10px;
}
}