File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 140
140
const item = document . createXULElement ( 'toolbarbutton' ) ;
141
141
item . className = 'toolbarbutton-1 zen-emojis-picker-emoji' ;
142
142
item . setAttribute ( 'label' , emoji . emoji ) ;
143
+ item . setAttribute ( 'tooltiptext' , '' ) ;
143
144
item . addEventListener ( 'command' , ( ) => {
144
145
this . #selectEmoji( emoji . emoji ) ;
145
146
} ) ;
154
155
const item = document . createXULElement ( 'toolbarbutton' ) ;
155
156
item . className = 'toolbarbutton-1 zen-emojis-picker-svg' ;
156
157
item . setAttribute ( 'label' , icon ) ;
157
- item . setAttribute ( 'tooltiptext' , icon . replace ( '.svg' , '' ) ) ;
158
+ item . setAttribute ( 'tooltiptext' , '' ) ;
158
159
item . style . listStyleImage = `url(${ this . getSVGURL ( icon ) } )` ;
159
160
item . setAttribute ( 'icon' , icon ) ;
160
161
item . addEventListener ( 'command' , ( ) => {
Original file line number Diff line number Diff line change 162
162
max-height : 1px ;
163
163
width : 98% ; /* Slightly less than full width */
164
164
transition :
165
- padding 0.2s ease-in-out,
166
- max-height 0.2s ease-in-out;
165
+ padding 0.1s ease-in-out,
166
+ max-height 0.2s ease-in-out,
167
+ opacity 0.1s ease-in-out;
167
168
overflow : hidden;
168
169
position : relative;
170
+ opacity : 1 ;
169
171
170
172
# tabbrowser-tabs [movingtab ] & {
171
173
transition : transform 0.1s ease-in-out;
186
188
/* Hide separator when specified by parent container attribute */
187
189
.zen-workspace-pinned-tabs-section [hide-separator ] & {
188
190
max-height : 0 ;
189
- margin : 0 auto; /* Collapse margins */
191
+ padding : 0 ;
192
+ opacity : 0 ;
190
193
}
191
194
}
192
195
You can’t perform that action at this time.
0 commit comments