mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
89 lines
1.8 KiB
SCSS
89 lines
1.8 KiB
SCSS
// Access to Bootstrap variables and mixins
|
|
@import '~ChillMainAssets/module/bootstrap/shared';
|
|
|
|
//// ACTIVITY CREATION
|
|
// first step: select type page
|
|
|
|
div.new-activity-select-type {
|
|
div.activity-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
gap: 12px;
|
|
margin-bottom: 30px;
|
|
|
|
div.bloc {
|
|
width: 200px;
|
|
align-self: flex-end;
|
|
height: 140px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
//// ACTIVITY LIST PAGE
|
|
// precise dashboard specific details
|
|
|
|
p.date-label {
|
|
display: inline-block;
|
|
margin: 0 0.5em 0 0;
|
|
font-weight: 700;
|
|
font-size: 18pt;
|
|
}
|
|
div.dashboard,
|
|
h2.badge-title {
|
|
ul.list-content {
|
|
font-size: 70%;
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
margin: 0;
|
|
li {
|
|
margin-bottom: 0.2em;
|
|
// exception: change bg color for action badges above dashboard
|
|
.bg-light {
|
|
background-color: $chill-light-gray !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//// ACTIVITY SHOW AND FORM PAGES
|
|
// Exceptions for flex-bloc in concerned-groups
|
|
|
|
div.flex-bloc.concerned-groups {
|
|
margin-top: 1em;
|
|
div.item-bloc {
|
|
flex-grow: 0; flex-shrink: 0; flex-basis: 25%; //4 blocs
|
|
ul.list-content {
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
li {
|
|
margin-bottom: 0.2em;
|
|
a {
|
|
color: $white;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: #ffffffab;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&.person div.item-bloc {
|
|
flex-basis: 33%; //3 blocs
|
|
}
|
|
}
|
|
|
|
/// CHILL ENTITY RENDER BOX
|
|
.chill-entity {
|
|
|
|
/// ACTIVITY-REASON
|
|
&.entity-activity-reason {
|
|
margin-right: 0.3em;
|
|
font-size: 120%;
|
|
}
|
|
}
|