File tree 3 files changed +11
-15
lines changed
3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 71
71
position : relative ;
72
72
height : 44px ;
73
73
width : 44px ;
74
+ }
75
+ .header-icon {
76
+ height : 44px ;
77
+ width : 44px ;
78
+ padding : 14px ;
74
79
border-radius : 22px ;
75
- & .menu-icon--pulse {
80
+ cursor : pointer ;
81
+ & .header-icon--pulse {
76
82
margin : 8px ;
77
83
width : 16px ;
78
84
height : 16px ;
79
85
}
80
-
81
- & [class ^= ' icon-' ],
82
- & [class *= ' icon-' ],
83
- > [class ^= ' icon-' ],
84
- > [class *= ' icon-' ] {
85
- height : 44px ;
86
- width : 44px ;
87
- padding : 14px ;
88
- cursor : pointer ;
89
- }
90
86
}
91
87
}
92
88
}
Original file line number Diff line number Diff line change 67
67
68
68
<!-- actions -->
69
69
<div id="contact-header-actions">
70
- <div v-tooltip.bottom="warning" :class="{'icon-loading-small': loadingUpdate, 'menu -icon--pulse icon-error-white': warning}" class="menu -icon" />
70
+ <div v-tooltip.bottom="warning" :class="{'icon-loading-small': loadingUpdate, 'header -icon--pulse icon-error-white': warning}" class="header -icon" />
71
71
<div v-tooltip="{
72
72
content: conflict,
73
73
show: true,
74
74
trigger: 'manual',
75
- }" v-if="conflict" class="menu -icon menu -icon--pulse icon-history-white"
75
+ }" v-if="conflict" class="header -icon header -icon--pulse icon-history-white"
76
76
@click="refreshContact" />
77
77
<div class="menu-icon">
78
- <div v-click-outside="closeMenu" class="icon-more-white" @click="toggleMenu" />
78
+ <div v-click-outside="closeMenu" class="header-icon icon-more-white" @click="toggleMenu" />
79
79
<div :class="{ 'open': openedMenu }" class="popovermenu">
80
80
<popover-menu :menu="contactActions" />
81
81
</div>
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ export default {
111
111
},
112
112
// first enabled addressbook of the list
113
113
defaultAddressbook() {
114
- return this.addressbooks.find(addressbook => addressbook.readOnly !== false )
114
+ return this.addressbooks.find(addressbook => ! addressbook.readOnly)
115
115
},
116
116
117
117
/**
You can’t perform that action at this time.
0 commit comments