blob: f097fb0fff5c00066205ead9a45f65ff65a13067 [file] [log] [blame]
/* Copyright 2022 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
/* #css_wrapper_metadata_start
* #type=style
* #import=./shared_vars.css.js
* #import=chrome://resources/cr_elements/cr_shared_vars.css.js
* #css_wrapper_metadata_end */
.card {
background-color: var(--cr-card-background-color);
border-radius: var(--cr-card-border-radius);
box-shadow: var(--cr-card-shadow);
}
.page-title {
font-weight: 400;
}
.label {
line-height: 20px;
}
.single-line-label {
min-height: var(--section-min-height);
}
.flex-centered {
align-items: center;
display: flex;
}
.elide-left {
/* The following non-flex directives allow eliding long originUrls from
* the left. Forcing rtl should not cause an issue for right-to-left
* languages in this case, since valid URL characters are restricted to
* ASCII.
*/
direction: rtl;
}
.elide-left > a {
direction: ltr;
/* This styling is necessary to fix the display of domains starting with
* numbers.
*/
unicode-bidi: bidi-override;
}
.dialog-title {
color: var(--cr-primary-text-color);
font-size: 15px;
font-weight: normal;
line-height: 22px;
margin: 0;
padding-block-end: 16px;
padding-block-start: 16px;
}