Line data Source code
1 1 : <template lang="pug"> 2 3 : .x-relation-code-editor.position-relative( 3 3 : :class="{ selecting: isSelecting }") 4 3 : BaseModalLoader(:isLoading='isSelecting' 5 3 : @click.native.capture.prevent='' 6 : @pointerdown.native.capture.prevent='') 7 : span Waiting for selection... 8 : 9 : SVGSelector(ref="selector") 10 : div(ref="cm") 11 : </template> 12 : <script src='./RelationCodeEditor.vue.js' /> 13 : <style lang='scss'> 14 : .x-relation-code-editor.selecting { 15 : cursor: wait!important; 16 : } 17 : 18 0 : .cm-completionIcon-selector { 19 : &:after { 20 : content: "\f05b"; 21 0 : font-family: "Font Awesome 5 Free"; 22 : font-weight: 900; 23 : } 24 : } 25 : </style>