57 lines
906 B
CSS
57 lines
906 B
CSS
.path-manager {
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
padding: 1rem;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.path-manager-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.current-path {
|
|
font-weight: bold;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.sub-paths {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.sub-path-item {
|
|
padding: 0.5rem;
|
|
font-size: 1rem;
|
|
color: #4a4a4a;
|
|
border-bottom: 1px solid #ddd;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.sub-path-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.sub-path-item:hover {
|
|
background-color: #f0f0f0;
|
|
color: #00d1b2;
|
|
}
|
|
|
|
.path-manager-footer {
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.path-manager-footer .input {
|
|
flex: 1;
|
|
}
|
|
|
|
.path-manager-footer .button {
|
|
white-space: nowrap;
|
|
} |