Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Further Query Improvements #2245

Merged
merged 12 commits into from
Feb 1, 2018
38 changes: 38 additions & 0 deletions client/app/assets/less/inc/flex.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }
.flex-fill { flex: 1 1 auto !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.align-content-start { align-content: flex-start !important; }
.align-content-end { align-content: flex-end !important; }
.align-content-center { align-content: center !important; }
.align-content-between { align-content: space-between !important; }
.align-content-around { align-content: space-around !important; }
.align-content-stretch { align-content: stretch !important; }

.align-self-auto { align-self: auto !important; }
.align-self-start { align-self: flex-start !important; }
.align-self-end { align-self: flex-end !important; }
.align-self-center { align-self: center !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-stretch { align-self: stretch !important; }
1 change: 0 additions & 1 deletion client/app/assets/less/inc/schema-browser.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ div.table-name {
.schema-browser {
overflow-y: auto;
overflow-x: hidden;
height: calc(85%);
border: none;
margin-top: 10px;

Expand Down
1 change: 1 addition & 0 deletions client/app/assets/less/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
@import 'inc/edit-in-place';
@import 'inc/growl';
@import 'inc/gridster';
@import 'inc/flex';
@import 'inc/ace-editor';
@import 'inc/overlay';
@import 'inc/schema-browser';
Expand Down
Loading