mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
129 lines
3.2 KiB
CSS
129 lines
3.2 KiB
CSS
/*
|
|
* SPDX-FileCopyrightText: 2023 Andreas Palm
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.p-dropdown {
|
|
background: #ffffff;
|
|
border: 1px solid #ced4da;
|
|
transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
|
|
border-radius: 4px;
|
|
padding: 4px 5px;
|
|
font-size: 11px;
|
|
}
|
|
.p-dropdown:not(.p-disabled):hover {
|
|
border-color: #ced4da;
|
|
}
|
|
.p-dropdown:not(.p-disabled).p-focus {
|
|
outline: 0 none;
|
|
outline-offset: 0;
|
|
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
|
border-color: #007bff;
|
|
}
|
|
.p-dropdown.p-dropdown-clearable .p-dropdown-label {
|
|
padding-right: 1.75rem;
|
|
}
|
|
.p-dropdown .p-dropdown-label {
|
|
background: transparent;
|
|
border: 0 none;
|
|
color: #6d6d6f;
|
|
}
|
|
.p-dropdown .p-dropdown-label.p-placeholder {
|
|
color: #6c757d;
|
|
}
|
|
.p-dropdown .p-dropdown-label:focus, .p-dropdown .p-dropdown-label:enabled:focus {
|
|
outline: 0 none;
|
|
box-shadow: none;
|
|
}
|
|
.p-dropdown .p-dropdown-trigger {
|
|
background: transparent;
|
|
color: #495057;
|
|
width: 2.357rem;
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
.p-dropdown .p-dropdown-clear-icon {
|
|
color: #495057;
|
|
right: 2.357rem;
|
|
}
|
|
.p-dropdown.p-invalid.p-component {
|
|
border-color: #dc3545;
|
|
}
|
|
|
|
.p-dropdown-panel {
|
|
background: #ffffff;
|
|
color: var(--grey);
|
|
border: 1px solid var(--fieldset-dark);
|
|
border-radius: 4px;
|
|
box-shadow: none;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-header {
|
|
padding: 0.75rem 1.5rem;
|
|
border-bottom: 1px solid #dee2e6;
|
|
color: #212529;
|
|
background: #efefef;
|
|
margin: 0;
|
|
border-top-right-radius: 4px;
|
|
border-top-left-radius: 4px;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-header .p-dropdown-filter {
|
|
padding-right: 1.75rem;
|
|
margin-right: -1.75rem;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon {
|
|
right: 0.75rem;
|
|
color: #495057;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items {
|
|
padding: 0.5rem 0;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item {
|
|
margin: 0;
|
|
padding: 3px;
|
|
border: 0 none;
|
|
color: #212529;
|
|
background: transparent;
|
|
transition: box-shadow 0.15s;
|
|
border-radius: 0;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight {
|
|
color: #ffffff;
|
|
background: #007bff;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight.p-focus {
|
|
background: #0067d6;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus {
|
|
color: #212529;
|
|
background: #dee2e6;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover {
|
|
color: #212529;
|
|
background: #e9ecef;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
|
|
margin: 0;
|
|
padding: 0.75rem 1rem;
|
|
color: #212529;
|
|
background: #ffffff;
|
|
font-weight: 600;
|
|
}
|
|
.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message {
|
|
padding: 0.5rem 1.5rem;
|
|
color: #212529;
|
|
background: transparent;
|
|
}
|
|
|
|
.p-input-filled .p-dropdown {
|
|
background: #efefef;
|
|
}
|
|
.p-input-filled .p-dropdown:not(.p-disabled):hover {
|
|
background-color: #efefef;
|
|
}
|
|
.p-input-filled .p-dropdown:not(.p-disabled).p-focus {
|
|
background-color: #efefef;
|
|
}
|
|
.p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext {
|
|
background-color: transparent;
|
|
} |