File size: 774 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import "@automattic/typography/styles/variables";
@import "@wordpress/base-styles/breakpoints";
@import "variables";

/**
 * Styling for '/' route.
 */
.help-center .inline-help__search {
	padding: 16px;

	// Search Bar
	.card.search-card {
		border: 1px solid var(--studio-gray-10);
		border-radius: 2px;
		box-shadow: none;
		margin-bottom: 30px;

		.search[role="search"] {
			height: 40px;
			border: 1px;

			input.search__input {
				font-size: $font-body;
				min-height: 40px;
			}

			.search__icon-navigation {
				&:focus {
					box-shadow: 0 0 0 3px $help-center-blue;
				}
			}

			&.has-focus {
				outline: $help-center-blue solid 2px;
				transition: none;

				&.is-open {
					border: 1px var(--studio-gray-50);
					box-shadow: none;
				}
			}
		}
	}
}