File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -170,8 +170,8 @@ const allExplorers: { [options: string]: ExplorerInit } = {
170170 pool ,
171171 doc . explorerRegions . tooltip3 ,
172172 node ,
173- ( x : HTMLElement ) => x . hasAttribute ( 'data-semantic-prefix' ) ,
174- ( x : HTMLElement ) => x . getAttribute ( 'data-semantic-prefix' )
173+ ( x : HTMLElement ) => x . hasAttribute ?. ( 'data-semantic-prefix-none ' ) ,
174+ ( x : HTMLElement ) => x . getAttribute ?. ( 'data-semantic-prefix-none ' )
175175 ) ,
176176 flame : (
177177 doc : ExplorerMathDocument ,
Original file line number Diff line number Diff line change @@ -323,14 +323,18 @@ export class ToolTip extends StringRegion {
323323 height : 'auto' ,
324324 opacity : 1 ,
325325 'text-align' : 'center' ,
326- 'border-radius' : '6px ' ,
326+ 'border-radius' : '4px ' ,
327327 padding : 0 ,
328328 'border-bottom' : '1px dotted black' ,
329329 position : 'absolute' ,
330330 display : 'inline-block' ,
331331 'background-color' : 'white' ,
332332 'z-index' : 202 ,
333333 } ,
334+ [ '.' + ToolTip . className + ' > div' ] : {
335+ 'border-radius' : 'inherit' ,
336+ padding : '0 2px' ,
337+ }
334338 } ) ;
335339}
336340
Original file line number Diff line number Diff line change @@ -831,7 +831,6 @@ export class Menu {
831831 this . checkbox ( 'Role' , 'Role' , 'infoRole' ) ,
832832 this . checkbox ( 'Prefix' , 'Prefix' , 'infoPrefix' ) ,
833833 ] ,
834- true
835834 ) ,
836835 this . rule ( ) ,
837836 this . submenu ( 'Role Description' , 'Describe math as' , [
You can’t perform that action at this time.
0 commit comments