File tree Expand file tree Collapse file tree 5 files changed +52
-16
lines changed Expand file tree Collapse file tree 5 files changed +52
-16
lines changed Original file line number Diff line number Diff line change
1
+ /* Bottom border of each suggestion */
2
+ .ads-suggestion {
3
+ border-bottom-color : # 3A3DD1 ;
4
+ }
5
+ /* Main category headers */
6
+ .ads-suggestion--category-header {
7
+ background-color : # 4B54DE ;
8
+ }
9
+ /* Highlighted search terms */
10
+ .ads-suggestion--highlight {
11
+ color : # 3A33D1 ;
12
+ }
13
+ /* Highligted search terms in the main category headers */
14
+ .ads-suggestion--category-header .ads-suggestion--highlight {
15
+ background-color : # 4D47D5 ;
16
+ }
17
+ /* Currently selected suggestion */
18
+ .aa-cursor .ads-suggestion--content {
19
+ color : # 272296 ;
20
+ }
21
+ .aa-cursor .ads-suggestion {
22
+ background : # EBEBFB ;
23
+ }
24
+
25
+ /* For bigger screens, when displaying results in two columns */
26
+ @media (min-width : 768px ) {
27
+ /* Bottom border of each suggestion */
28
+ .ads-suggestion {
29
+ border-bottom-color : # 7671df ;
30
+ }
31
+ /* Left column, with secondary category header */
32
+ .ads-suggestion--subcategory-column {
33
+ border-right-color : # 7671df ;
34
+ background-color : # F2F2FF ;
35
+ color : # 4E4726 ;
36
+ }
37
+ }
38
+
Original file line number Diff line number Diff line change 6
6
< title > Documentation</ title >
7
7
< link rel ="stylesheet " type ="text/css " href ="/stripe.css " media ="screen " />
8
8
< link rel ="stylesheet " type ="text/css " href ="/docsearch.css " media ="screen " />
9
- < link rel ="stylesheet " type ="text/css " href ="/style .css " media ="screen " />
9
+ < link rel ="stylesheet " type ="text/css " href ="/docsearch-styling .css " media ="screen " />
10
10
< link rel ="shortcut icon " href ="favicon.ico ">
11
11
</ head >
12
12
Original file line number Diff line number Diff line change 1
- $color1 : #4B54DE ;
2
- $color2 : #4D47D5 ;
3
- $color3 : #3A33D1 ;
1
+ $color-border : #3A3A3A ;
2
+ $color-border-light : lighten ($color-border , 15% );
3
+ $color-category-header : #333333 ;
4
+ $color-highlight-header : #3A3A3A ;
5
+ $color-highlight : #448CDE ;
6
+ $color-selected-background : #CECECE ;
7
+ $color-selected-text : #0000FF ;
8
+ $color-left-column-bg : #CECECE ;
9
+ $color-left-column : #4E4726 ;
10
+
11
+ $breakpoint-medium : 568px ;
12
+ $breakpoint-large : 768px ;;
13
+
Original file line number Diff line number Diff line change 1
1
@import " variables" ;
2
- $color-border : #3A33D1 ;
3
- $color-border-light : lighten ($color-border , 15% );
4
- $color-category-header : #4B54DE ;
5
- $color-highlight-header : #4D47D5 ;
6
- $color-highlight : $color-border ;
7
- $color-selected-background : #EBEBFB ;
8
- $color-left-column-bg : #F2F2FF ;
9
- $color-left-column : #4E4726 ;
10
-
11
- $breakpoint-medium : 568px ;
12
- $breakpoint-large : 768px ;;
13
-
14
2
15
3
// The dropdown adapts to screen size, to provide three different displays.
16
4
// - A simple list of matching results
You can’t perform that action at this time.
0 commit comments