Skip to content

Commit a63717a

Browse files
UI fix
1 parent 621ea09 commit a63717a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

classes/Visualizer/Render/Layout.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ public static function _renderDbQuery( $args ) {
7979
</div>
8080
<div class='db-wizard-hints'>
8181
<ul>
82-
<li><?php echo sprintf( __( 'For examples of pre-built queries that you can use, please click %1$shere%2$s', 'visualizer' ), '<a href="' . VISUALIZER_DB_QUERY_DOC_URL . '" target="_blank">', '</a>' ); ?></li>
83-
<li><?php echo sprintf( __( 'Use %1$sControl+Space%2$s for autocompleting keywords or tables/columns.', 'visualizer' ), '<span class="visualizer-emboss">', '</span>' ); ?></li>
82+
<li><?php echo sprintf( __( 'For examples of queries and links to resources that you can use with this feature, please click %1$shere%2$s', 'visualizer' ), '<a href="' . VISUALIZER_DB_QUERY_DOC_URL . '" target="_blank">', '</a>' ); ?></li>
83+
<li><?php echo sprintf( __( 'Use %1$sControl+Space%2$s for autocompleting keywords or table names.', 'visualizer' ), '<span class="visualizer-emboss">', '</span>' ); ?></li>
8484
</ul>
8585
</div>
8686
<div class='db-wizard-results'></div>

css/frame.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
right: 0;
77
bottom: 60px;
88
left: 0;
9-
width: calc(100% - 300px);
9+
width: auto;
1010
background-color: white;
1111
}
1212

js/frame.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@
261261
});
262262

263263
$( '#db-chart-button' ).on( 'click', function(){
264+
$('#content').css('width', 'calc(100% - 300px)');
264265
if( $(this).attr( 'data-current' ) === 'chart'){
265266
$(this).val( $(this).attr( 'data-t-filter' ) );
266267
$(this).html( $(this).attr( 'data-t-filter' ) );

0 commit comments

Comments
 (0)