Skip to content

Commit

Permalink
Merge pull request #2185 from kocsmy/design/new-data-source+query-editor
Browse files Browse the repository at this point in the history
Design/new data source+query editor
  • Loading branch information
arikfr authored Jan 18, 2018
2 parents dcf867e + 11cfc66 commit c2e28b2
Show file tree
Hide file tree
Showing 70 changed files with 1,319 additions and 412 deletions.
Binary file added client/app/assets/images/db-logos/athena.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/axibasetsd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/bigquery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/clickhouse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/cockroach.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/graphite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/hive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/impala.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/influxdb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/jirajql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/kibana.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/memsql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/mongodb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/mssql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/mysql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/pg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/presto.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/rds_mysql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/redshift.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/results.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/salesforce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/app/assets/images/db-logos/sqlite.png
Binary file added client/app/assets/images/db-logos/url.png
Binary file added client/app/assets/images/db-logos/vertica.png
Binary file added client/app/assets/images/destinations/email.png
Binary file added client/app/assets/images/destinations/hipchat.png
Binary file added client/app/assets/images/destinations/webhook.png
39 changes: 38 additions & 1 deletion client/app/assets/less/inc/edit-in-place.less
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
.edit-in-place span {
white-space: pre-line;

p {
margin-bottom: 0;
}
}

.edit-in-place span.editable {
cursor: pointer;
}

.edit-in-place span.editable:hover {
background: #FCFCA2;
background: @redash-yellow;
border-radius: @redash-radius;
}

.edit-in-place input,
Expand All @@ -24,3 +29,35 @@
display: inline-block;
}

.edit-in-place {
display: inline-block;
}

.edit-in-place {
.rd-form-control {
padding: 0px 6px;
width: 30vw;
}

&.active {
textarea.rd-form-control {
height: 29px;
width: 40vw;
}
}
}


@media (max-width: 880px) {
.edit-in-place {
.rd-form-control {
width: 50vw;
}

&.active {
textarea.rd-form-control {
width: 50vw;
}
}
}
}
4 changes: 2 additions & 2 deletions client/app/assets/less/inc/form.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ textarea.v-resizable {
&.required {
.control-label {
&:after {
content: "*";
color: red;
content: " *";
color: inherit;
}
}
}
Expand Down
Loading

0 comments on commit c2e28b2

Please sign in to comment.