74 lines
962 B
CSS
74 lines
962 B
CSS
.groupLists-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
mat-card {
|
|
margin: 10px;
|
|
}
|
|
|
|
mat-card-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 10px;
|
|
}
|
|
|
|
.elements-card{
|
|
margin: 10px;
|
|
width: 800px;
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.title-with-breadcrumb {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
mat-card-subtitle {
|
|
font-size: 0.875rem;
|
|
color: rgba(0, 0, 0, 0.54);
|
|
}
|
|
|
|
mat-card-subtitle a {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
color: #1976d2; /* Color azul típico de enlaces */
|
|
}
|
|
|
|
mat-card-subtitle a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.groups-button-row {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
button {
|
|
margin-left: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.clickable-item:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.selected-item {
|
|
background-color: #e0e0e0;
|
|
}
|
|
|
|
.actions {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.actions mat-icon {
|
|
cursor: pointer;
|
|
margin-left: 48px;
|
|
color: #757575;
|
|
}
|
|
|
|
.actions mat-icon:hover {
|
|
color: #212121;
|
|
}
|
|
|