File size: 1,542 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.usage-warning__storage-full {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 16px;
}

.usage-warning__action-button.components-button {
	width: 100%;
	height: 100%;

	margin-top: 24px;

	flex-wrap: nowrap;
	justify-content: space-between;
	column-gap: 8px;

	padding: 16px 24px;
	border: 2px solid var(--studio-jetpack-green);
	border-radius: calc(2 * 2px);

	color: var(--color-text);
	font-size: $font-body;
	text-align: initial;

	&:visited {
		color: var(--color-text);
	}

	&:focus,
	&:hover {
		cursor: initial;
		background: none;
	}

	&.has-clickable-action:focus,
	&.has-clickable-action:hover {
		cursor: pointer;


		.action-button__arrow {
			transform: translateX(8px);
		}
	}

	.action-button__status {
		margin-bottom: 0.25rem;
	}

	.action-button__action-text {
		font-weight: bold;
	}

	.action-button__arrow {
		transition: transform 0.15s ease-out;

		color: var(--studio-jetpack-green);
		font-size: $font-title-medium;
		font-weight: 700;
		line-height: 24px;
	}
}

.usage-warning__upsell-price {
	&.is-placeholder {
		@include placeholder( --color-neutral-10 );
	}

	.display-price {
		&__billing-time-frame {
			font-size: 1rem;
			color: inherit;
		}
	}

	.plan-price {
		font-size: inherit;
		line-height: inherit;
		color: inherit;
	}

	.plan-price__fraction {
		font-weight: inherit;
		font-size: inherit;
		vertical-align: inherit;
	}

	.plan-price__integer {
		margin: 0;
		font-weight: inherit;
	}

	.plan-price__currency-symbol {
		color: inherit;
		font-size: inherit;
		vertical-align: inherit;
	}

}