File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 4
4
const SELECTOR_TOGGLE_NOTIFICATION = '.ibexa-notification-view-all__mail' ;
5
5
const { showErrorNotification } = ibexa . helpers . notification ;
6
6
const { getJsonFromResponse } = ibexa . helpers . request ;
7
- const markAllAsReadBtn = doc . querySelector ( '.ibexa-notification-list__mark- all-read' ) ;
7
+ const markAllAsReadBtn = doc . querySelector ( '.ibexa-notification-list__btn--mark- all-as -read' ) ;
8
8
const markAsReadBtn = doc . querySelector ( '.ibexa-notification-list__btn--mark-as-read' ) ;
9
9
const deleteBtn = doc . querySelector ( '.ibexa-notification-list__btn--delete' ) ;
10
10
const notificationsCheckboxes = [
Original file line number Diff line number Diff line change 73
73
border-radius : 0 $ibexa-border-radius $ibexa-border-radius 0 ;
74
74
border : calculateRem (1px ) solid $ibexa-color-light ;
75
75
background-color : $ibexa-color-white ;
76
- transition : width 0.3 s ease ;
76
+ transition : width $ibexa-admin-transition-duration $ibexa-admin-transition ;
77
77
}
78
78
79
79
& __table-btns {
Original file line number Diff line number Diff line change 2
2
background-color : $ibexa-color-white ;
3
3
padding : calculateRem (8px ) 0 ;
4
4
width : calculateRem (516px );
5
- height : calc (100vh - #{ calculateRem (73px )} );
5
+ height : calc (100vh - calculateRem (73px ));
6
6
position : fixed ;
7
7
top : calculateRem (73px );
8
8
right : 0 ;
Original file line number Diff line number Diff line change 44
44
45
45
<div class =" ibexa-list-filters__items accordion" >
46
46
{{ form_row(search_form .type ) }}
47
- {% if search_form .statuses is defined %}{{ form_row(search_form .statuses ) }}{% endif %}
47
+ {% if search_form .statuses is defined %}
48
+ {{ form_row(search_form .statuses ) }}
49
+ {% endif %}
48
50
{{ form_row(search_form .createdRange ) }}
49
51
{{ form_rest(search_form ) }}
50
52
</div >
Original file line number Diff line number Diff line change 1
- {% extends " @ibexadesign/ui/layout.html.twig" %}
1
+ {% extends ' @ibexadesign/ui/layout.html.twig' %}
2
2
3
3
{% import ' @ibexadesign/ui/component/macros.html.twig' as html %}
4
4
{% import _self as macros %}
12
12
{% block title %}{{ ' ibexa_notifications' | trans| desc(' Notifications' ) }}{% endblock %}
13
13
14
14
{% block header %}
15
- <div class =" ibexa-notification-list__mark- all-read" >
15
+ <div class =" ibexa-notification-list__btn--mark- all-as -read" >
16
16
<button class =" btn ibexa-btn ibexa-btn--secondary" >
17
17
{{ ' ibexa_notifications.btn.mark_all_as_read' | trans| desc(' Mark all as read' ) }}
18
18
</button >
25
25
26
26
{% block content %}
27
27
{{ form_start(form_remove , {
28
- ' action' : path(' ibexa.notifications.delete_multiple' ),
28
+ action : path(' ibexa.notifications.delete_multiple' ),
29
29
' attr' : {
30
30
' class' : ' ibexa-toggle-btn-state ibexa-notification-list__hidden-btn' ,
31
31
' data-toggle-button-id' : ' #confirm-' ~ form_remove .remove .vars .id
Original file line number Diff line number Diff line change 6
6
{% set config_panel_footer_class = ' ibexa-side-panel__footer' ~ (footer_class is defined ? footer_class ~ ' ' )%}
7
7
8
8
{% set attr = attr | default ({})| merge ({
9
- class : (' '
10
- ~ class |default (' ' ) ~ ' '
11
- ~ attr .class |default (' ' ))|trim ~ ' ' ~ config_panel_main_class ,
9
+ ~ attr .class |default (' ' ))|trim ~ ' '
10
+ ~ config_panel_main_class ,
12
11
}) %}
13
12
14
13
{% if id is defined %}
You can’t perform that action at this time.
0 commit comments