blob: e6fcd9dd7e046202f89fbf22d2859fd22e33699c (
plain)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* Layout for the runtime info container is:
*
* <- 68px --x--------- 1fr ----------><---- max ---->
* ∧ +---------+------------------------+--------------+
* 1fr | | Runtime Info | [Action] |
* | | Icon | eg "Firefox (70.0a1)" | |
* x | +------------------------+ |
* max | | Device Name (optional) | |
* ∨ +---------+------------------------+--------------+
*/
.runtime-info {
align-items: center;
display: grid;
grid-column-gap: var(--main-heading-icon-gap);
grid-template-areas:
"icon title action"
"icon subtitle .";
grid-template-columns: var(--main-heading-icon-size) 1fr max-content;
grid-template-rows: 1fr max-content;
margin-block-end: calc(var(--base-unit) * 5);
}
.runtime-info__icon {
grid-area: icon;
}
.runtime-info__title {
grid-area: title;
}
.runtime-info__subtitle {
grid-area: subtitle;
}
.runtime-info__action {
grid-area: action;
}
|