File size: 863 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
45
46
47
48
49
50
51
52
53
54
55
56
@import "@wordpress/base-styles/breakpoints";

%list-actions-bar {
	margin-bottom: 57px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;

	.search-component {
		min-width: min(400px, 100%);
		flex: 1;
	}

	.list-actions-bar__spacer {
		flex: 1;
	}

	.list-actions-bar__filter-control {
		min-width: 115px;

		&.select-dropdown,
		.select-dropdown__header {
			height: 48px;
		}

		.select-dropdown__item.is-selected {
			background-color: var(--color-primary);
		}

		.gridicon {
			margin-left: 10px;
		}
	}

	.subscription-manager-sort-controls {
		flex-grow: 0;
	}

	@media (max-width: $break-small) {
		.list-actions-bar__filter-control,
		.subscription-manager-sort-controls {
			&__button {
				padding: 0;
			}
		}
		.subscription-manager-sort-controls {
			&__button {
				margin-top: -6px;
			}
		}
	}
}