@@ -2134,23 +2134,6 @@ function RemoteFunctions(config = {}) {
21342134 transition: all 0.2s ease !important;
21352135 }
21362136
2137- .phoenix-ribbon-folder-select {
2138- background: rgba(0,0,0,0.5) !important;
2139- border: none !important;
2140- color: white !important;
2141- cursor: pointer !important;
2142- padding: 4px 8px !important;
2143- border-radius: 3px !important;
2144- margin-right: 8px !important;
2145- display: flex !important;
2146- align-items: center !important;
2147- justify-content: center !important;
2148- }
2149-
2150- .phoenix-ribbon-folder-select:hover {
2151- background: rgba(0,0,0,0.7) !important;
2152- }
2153-
21542137 .phoenix-ribbon-close {
21552138 background: rgba(0,0,0,0.5) !important;
21562139 border: none !important;
@@ -2267,11 +2250,6 @@ function RemoteFunctions(config = {}) {
22672250 </div>
22682251 </div>
22692252 <div class="phoenix-ribbon-header-right">
2270- <button class="phoenix-ribbon-folder-select" title="${ config . strings . imageGalleryChooseFolder } ">
2271- <svg viewBox="0 0 24 24" fill="currentColor" width="20" height="20">
2272- <path d="M10 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2h-8l-2-2z"/>
2273- </svg>
2274- </button>
22752253 <button class="phoenix-ribbon-close">×</button>
22762254 </div>
22772255 </div>
@@ -2551,7 +2529,6 @@ function RemoteFunctions(config = {}) {
25512529 const searchInput = this . _shadow . querySelector ( '.phoenix-ribbon-search input' ) ;
25522530 const searchButton = this . _shadow . querySelector ( '.phoenix-ribbon-search-btn' ) ;
25532531 const closeButton = this . _shadow . querySelector ( '.phoenix-ribbon-close' ) ;
2554- const folderSelectBtn = this . _shadow . querySelector ( '.phoenix-ribbon-folder-select' ) ;
25552532 const navLeft = this . _shadow . querySelector ( '.phoenix-ribbon-nav.left' ) ;
25562533 const navRight = this . _shadow . querySelector ( '.phoenix-ribbon-nav.right' ) ;
25572534 const selectImageBtn = this . _shadow . querySelector ( '.phoenix-select-image-btn' ) ;
@@ -2605,13 +2582,6 @@ function RemoteFunctions(config = {}) {
26052582 } ) ;
26062583 }
26072584
2608- if ( folderSelectBtn ) {
2609- folderSelectBtn . addEventListener ( 'click' , ( e ) => {
2610- e . stopPropagation ( ) ;
2611- console . log ( 'i got clicked' ) ;
2612- } ) ;
2613- }
2614-
26152585 if ( navLeft ) {
26162586 navLeft . addEventListener ( 'click' , ( e ) => {
26172587 e . stopPropagation ( ) ;
0 commit comments