@@ -503,92 +503,92 @@ var getQueryDialog = function() {
503
503
</span>
504
504
</button>
505
505
</div>
506
- <div class="CodeMirror-find-input-fields">
507
- <div class="CodeMirror-find-div">
508
- <div class="CodeMirror-find-input">
509
- <input id="Find-input-field" type="text" class="search-input CodeMirror-search-field" placeholder="${ i18n . t ( 'CodemirrorFindAndReplace.FindPlaceholder' ) } " />
510
- </div>
511
- <div class="CodeMirror-find-controls">
512
- <div class="CodeMirror-search-modifiers button-wrap">
513
- <button
514
- title="${ i18n . t ( 'CodemirrorFindAndReplace.Regex' ) } "
515
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Regex' ) } "
516
- role="checkbox"
517
- class="CodeMirror-search-modifier-button CodeMirror-regexp-button"
518
- >
519
- <span aria-hidden="true" class="button">.*</span>
520
- </button>
521
- <button
522
- title="${ i18n . t ( 'CodemirrorFindAndReplace.CaseSensitive' ) } "
523
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.CaseSensitive' ) } "
524
- role="checkbox"
525
- class="CodeMirror-search-modifier-button CodeMirror-case-button"
526
- >
527
- <span aria-hidden="true" class="button">Aa</span>
528
- </button>
529
- <button
530
- title="${ i18n . t ( 'CodemirrorFindAndReplace.WholeWords' ) } "
531
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.WholeWords' ) } "
532
- role="checkbox"
533
- class="CodeMirror-search-modifier-button CodeMirror-word-button"
534
- >
535
- <span aria-hidden="true" class="button">" "</span>
536
- </button>
537
- </div>
538
- <div class="CodeMirror-search-nav">
539
- <p class="CodeMirror-search-results">${ i18n . t ( 'CodemirrorFindAndReplace.NoResults' ) } </p>
540
- <button
541
- title="${ i18n . t ( 'CodemirrorFindAndReplace.Previous' ) } "
542
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Previous' ) } "
543
- class="CodeMirror-search-button icon up-arrow prev"
544
- >
545
- <span aria-hidden="true">
546
- ${ upArrow }
547
- </span>
548
- </button>
549
- <button
550
- title="${ i18n . t ( 'CodemirrorFindAndReplace.Next' ) } "
551
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Next' ) } "
552
- class="CodeMirror-search-button icon down-arrow next"
553
- >
554
- <span aria-hidden="true">
555
- ${ downArrow }
556
- </span>
557
- </button>
558
- </div>
559
- <div class="CodeMirror-close-button-container">
560
- <button
561
- title="${ i18n . t ( 'CodemirrorFindAndReplace.Close' ) } "
562
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Close' ) } "
563
- class="CodeMirror-close-button close icon"
564
- >
565
- <span aria-hidden="true">
566
- ${ exitIcon }
567
- </span>
568
- </button>
569
- </div>
570
- </div>
506
+ <div class="CodeMirror-search-inputs">
507
+ <div class="CodeMirror-find-input">
508
+ <input id="Find-input-field" type="text" class="search-input CodeMirror-search-field" placeholder="${ i18n . t ( 'CodemirrorFindAndReplace.FindPlaceholder' ) } " />
571
509
</div>
572
- <div style="height: 0px; overflow: hidden;" class="CodeMirror-replace-div ">
510
+ <div class="CodeMirror-replace-input ">
573
511
<input id="Replace-input-field" type="text" placeholder="${ i18n . t ( 'CodemirrorFindAndReplace.ReplacePlaceholder' ) } " class="search-input CodeMirror-search-field"/>
574
- <div class="CodeMirror-replace-controls">
512
+ </div>
513
+ </div>
514
+ <div class="CodeMirror-search-controls">
515
+ <div class="CodeMirror-replace-controls">
516
+ <button
517
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.Replace' ) } "
518
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Replace' ) } "
519
+ role="button"
520
+ id="Btn-replace"
521
+ class="CodeMirror-search-modifier-button CodeMirror-replace-button"
522
+ >
523
+ ${ i18n . t ( 'CodemirrorFindAndReplace.Replace' ) }
524
+ </button>
525
+ <button
526
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.ReplaceAll' ) } "
527
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.ReplaceAll' ) } "
528
+ role="button"
529
+ id="Btn-replace-all"
530
+ class="CodeMirror-search-modifier-button CodeMirror-replace-button"
531
+ >
532
+ ${ i18n . t ( 'CodemirrorFindAndReplace.ReplaceAll' ) }
533
+ </button>
534
+ </div>
535
+ <div class="CodeMirror-find-controls">
536
+ <div class="CodeMirror-search-modifiers button-wrap">
575
537
<button
576
- title="${ i18n . t ( 'CodemirrorFindAndReplace.Replace' ) } "
577
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Replace' ) } "
578
- role="button"
579
- id="Btn-replace"
580
- class="CodeMirror-search-modifier-button CodeMirror-replace-button"
538
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.Regex' ) } "
539
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Regex' ) } "
540
+ role="checkbox"
541
+ class="CodeMirror-search-modifier-button CodeMirror-regexp-button"
581
542
>
582
- ${ i18n . t ( 'CodemirrorFindAndReplace.Replace' ) }
543
+ <span aria-hidden="true" class="button">.*</span>
583
544
</button>
584
545
<button
585
- title="${ i18n . t ( 'CodemirrorFindAndReplace.ReplaceAll' ) } "
586
- aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.ReplaceAll' ) } "
587
- role="button"
588
- id="Btn-replace-all"
589
- class="CodeMirror-search-modifier-button CodeMirror-replace-button"
546
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.CaseSensitive' ) } "
547
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.CaseSensitive' ) } "
548
+ role="checkbox"
549
+ class="CodeMirror-search-modifier-button CodeMirror-case-button"
550
+ >
551
+ <span aria-hidden="true" class="button">Aa</span>
552
+ </button>
553
+ <button
554
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.WholeWords' ) } "
555
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.WholeWords' ) } "
556
+ role="checkbox"
557
+ class="CodeMirror-search-modifier-button CodeMirror-word-button"
558
+ >
559
+ <span aria-hidden="true" class="button">" "</span>
560
+ </button>
561
+ </div>
562
+ <div class="CodeMirror-search-nav">
563
+ <p class="CodeMirror-search-results">${ i18n . t ( 'CodemirrorFindAndReplace.NoResults' ) } </p>
564
+ <button
565
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.Previous' ) } "
566
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Previous' ) } "
567
+ class="CodeMirror-search-button icon up-arrow prev"
568
+ >
569
+ <span aria-hidden="true">
570
+ ${ upArrow }
571
+ </span>
572
+ </button>
573
+ <button
574
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.Next' ) } "
575
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Next' ) } "
576
+ class="CodeMirror-search-button icon down-arrow next"
577
+ >
578
+ <span aria-hidden="true">
579
+ ${ downArrow }
580
+ </span>
581
+ </button>
582
+ </div>
583
+ <div class="CodeMirror-close-button-container">
584
+ <button
585
+ title="${ i18n . t ( 'CodemirrorFindAndReplace.Close' ) } "
586
+ aria-label="${ i18n . t ( 'CodemirrorFindAndReplace.Close' ) } "
587
+ class="CodeMirror-close-button close icon"
590
588
>
591
- ${ i18n . t ( 'CodemirrorFindAndReplace.ReplaceAll' ) }
589
+ <span aria-hidden="true">
590
+ ${ exitIcon }
591
+ </span>
592
592
</button>
593
593
</div>
594
594
</div>
0 commit comments