Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • web-et-numerique/factory/pamn_plateforme-des-acteurs-de-la-mediation-numerique/pamn_client
1 result
Show changes
...@@ -28,17 +28,16 @@ ...@@ -28,17 +28,16 @@
<div *ngIf="categories.length > 1" class="modalContent multipleCollapse"> <div *ngIf="categories.length > 1" class="modalContent multipleCollapse">
<app-collapse *ngFor="let c of categories"> <app-collapse *ngFor="let c of categories">
<app-collapse-header> <app-collapse-header>
<div class="collapseHeader"> <div class="collapseHeader">
<app-checkbox <app-checkbox
[size]="'small'" [size]="'small'"
[id]="c.id" [id]="c.id"
[checked]="getCategoryCheckboxStatus(c) === 'checked'" [checked]="getCategoryCheckboxStatus(c) === 'checked'"
[indeterminate]="getCategoryCheckboxStatus(c) === 'halfChecked'" [indeterminate]="getCategoryCheckboxStatus(c) === 'halfChecked'"
[ngStyle]="{ padding: '4px 4px' }"
(action)="handleCategoryCheckBox($event, c); $event.stopPropagation()" (action)="handleCategoryCheckBox($event, c); $event.stopPropagation()"
[ngStyle]="{'padding': '4px 4px'}" />
></app-checkbox> <span id="categoryName" [attr.aria-label]="">{{ c.name }}</span>
<span [attr.aria-label]="" id="categoryName">{{ c.name }}</span>
<!-- label only for screen reader to avoid selecting all the elements when clicking the label --> <!-- label only for screen reader to avoid selecting all the elements when clicking the label -->
<label class="visually-hidden" for="{{ c.id }}">{{ c.name }}. Cocher pour tout sélectionner</label> <label class="visually-hidden" for="{{ c.id }}">{{ c.name }}. Cocher pour tout sélectionner</label>
</div> </div>
...@@ -64,7 +63,7 @@ ...@@ -64,7 +63,7 @@
[ariaLabel]="'Effacer et fermer'" [ariaLabel]="'Effacer et fermer'"
(action)="clearFilters()" (action)="clearFilters()"
/> />
<app-button [variant]="'primary'" [label]="'Appliquer'" (action)="emitModules(checkedModules)"/> <app-button [variant]="'primary'" [label]="'Appliquer'" (action)="emitModules(checkedModules)" />
</div> </div>
</div> </div>
</div> </div>
...@@ -19,10 +19,19 @@ ...@@ -19,10 +19,19 @@
width: 100%; width: 100%;
} }
-webkit-hyphens: auto;
hyphens: auto;
h1 { h1 {
@include font-bold-24; @include font-bold-24;
} }
@media (max-width: 370px) {
h1 {
font-size: 18px;
}
}
h2 { h2 {
@include font-bold-18; @include font-bold-18;
text-transform: uppercase; text-transform: uppercase;
...@@ -38,7 +47,7 @@ ...@@ -38,7 +47,7 @@
overflow-y: auto; overflow-y: auto;
scrollbar-gutter: stable; scrollbar-gutter: stable;
width: 600px; width: 600px;
box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1); box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.1);
background-color: $white; background-color: $white;
@media #{$tablet} { @media #{$tablet} {
......