Commit realizando cambios en los roles de los usuarios

This commit is contained in:
Jaime Jimenez
2023-04-24 13:00:46 +02:00
parent 2d67588770
commit 8c4d77a598
6587 changed files with 365497 additions and 0 deletions

View File

@ -0,0 +1,93 @@
.widget-timeline{
.timeline {
list-style: none;
padding: 8px 0 8px;
position: relative;
&:before {
top: 20px;
bottom: 0;
position: absolute;
content: " ";
width: 2px;
left: 25px;
margin-right: -1.5px;
background: #f5f5f5;
@at-root [direction="rtl"] #{&} {
left: auto;
right: 25px;
margin-right: auto;
margin-left: -1.5px;
}
}
> li {
margin-bottom: 3px;
position: relative;
&:before {
content: " ";
display: table;
}
&:after {
content: " ";
display: table;
clear: both;
}
> {
.timeline-panel {
width: calc(100% - 35px);
float: right;
border-radius: 2px;
padding: 5px 20px;
position: relative;
@at-root [direction="rtl"] #{&} {
float: left;
}
}
.timeline-badge {
border-radius: 50%;
height: 15px;
left: 19px;
position: absolute;
top: 10px;
width: 15px;
@at-root [direction="rtl"] #{&} {
left: auto;
right: 19px;
}
}
}
}
}
.timeline-body > p {
font-size: 12px;
}
.timeline-badge {
&.primary {
background-color: $primary !important;
}
&.success {
background-color: $success !important;
}
&.warning {
background-color: $warning !important;
}
&.danger {
background-color: $danger !important;
}
&.info {
background-color: $info !important;
}
&.dark {
background-color: $dark !important;
}
}
}