mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-26 14:40:29 +01:00
34 lines
640 B
CSS
34 lines
640 B
CSS
/*
|
|
* SPDX-FileCopyrightText: 2023 Andreas Palm
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.p-dialog {
|
|
background-color: var(--body-background);
|
|
opacity: 1;
|
|
}
|
|
|
|
.p-dialog-header {
|
|
color: #6d6d6f;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
padding: .4em 1em;
|
|
}
|
|
|
|
.p-dialog .p-dialog-header .p-dialog-header-icon {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
|
|
.p-dialog .p-dialog-content {
|
|
padding: 0.5em 1em;
|
|
}
|
|
|
|
.p-dialog .p-dialog-footer {
|
|
border-top: 1px solid var(--fieldset-dark);
|
|
padding: 0.3em 1em 0.5em 0.4em;
|
|
text-align: right;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
} |