Skip to content

Commit

Permalink
Limit message width, fix icon styles
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Feb 11, 2018
1 parent b098ba7 commit 2257c2f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 3 additions & 5 deletions client/galaxy/scripts/mvc/visualization/chart/views/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ export default Backbone.View.extend({
this.tabs = new Tabs.View({});
this.tabs.add({
id: "settings",
title: "Customize",
icon: "fa fa-bars",
tooltip: "Customize options.",
icon: "fa fa-gear",
tooltip: "Change settings.",
$el: $("<div/>")
.append(new Ui.Label({ title: "Provide a title:" }).$el)
.append(this.title.$el)
Expand All @@ -38,9 +37,8 @@ export default Backbone.View.extend({
if (this.chart.plugin.groups) {
this.tabs.add({
id: "groups",
title: "Select data",
icon: "fa-database",
tooltip: "Specify data options.",
tooltip: "Select data.",
$el: new Groups(this.app).$el
});
}
Expand Down
6 changes: 6 additions & 0 deletions client/galaxy/style/less/charts.less
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
.info {
position: absolute;
margin: 40px 20px 50px 10px;
width: 50%;
}
.text {
position: relative;
Expand Down Expand Up @@ -90,6 +91,11 @@
word-break: break-word;
}
}
.tab-icon {
margin-right: 0px;
color: #666;
font-size: 1.2em;
}
.portlet-content {
padding: 0px;
}
Expand Down
4 changes: 4 additions & 0 deletions static/style/blue/base.css

Large diffs are not rendered by default.

0 comments on commit 2257c2f

Please sign in to comment.