[#81,css][s]: map view uses recline- naming for top level container plus minor simplifying rename for graph css (fixes #81).
This commit is contained in:
@@ -1,14 +1,14 @@
|
|||||||
.recline-graph-container .graph {
|
.recline-graph .graph {
|
||||||
height: 500px;
|
height: 500px;
|
||||||
margin-right: 200px;
|
margin-right: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .legend table {
|
.recline-graph .legend table {
|
||||||
width: auto;
|
width: auto;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .legend td {
|
.recline-graph .legend td {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
line-height: 13px;
|
line-height: 13px;
|
||||||
}
|
}
|
||||||
@@ -17,34 +17,34 @@
|
|||||||
* Editor
|
* Editor
|
||||||
*********************************************************/
|
*********************************************************/
|
||||||
|
|
||||||
.recline-graph-container .editor {
|
.recline-graph .editor {
|
||||||
float: right;
|
float: right;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .editor-info {
|
.recline-graph .editor-info {
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .editor-info {
|
.recline-graph .editor-info {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .editor form {
|
.recline-graph .editor form {
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .editor select {
|
.recline-graph .editor select {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .editor-info {
|
.recline-graph .editor-info {
|
||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid #ddd;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recline-graph-container .editor-hide-info p {
|
.recline-graph .editor-hide-info p {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.data-map-container .map {
|
.recline-map .map {
|
||||||
height: 500px;
|
height: 500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -6,18 +6,18 @@
|
|||||||
* Editor
|
* Editor
|
||||||
*********************************************************/
|
*********************************************************/
|
||||||
|
|
||||||
.data-map-container .editor {
|
.recline-map .editor {
|
||||||
float: right;
|
float: right;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.data-map-container .editor form {
|
.recline-map .editor form {
|
||||||
padding-left: 4px;
|
padding-left: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.data-map-container .editor select {
|
.recline-map .editor select {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ this.recline.View = this.recline.View || {};
|
|||||||
my.Graph = Backbone.View.extend({
|
my.Graph = Backbone.View.extend({
|
||||||
|
|
||||||
tagName: "div",
|
tagName: "div",
|
||||||
className: "recline-graph-container",
|
className: "recline-graph",
|
||||||
|
|
||||||
template: ' \
|
template: ' \
|
||||||
<div class="editor"> \
|
<div class="editor"> \
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ this.recline.View = this.recline.View || {};
|
|||||||
my.Map = Backbone.View.extend({
|
my.Map = Backbone.View.extend({
|
||||||
|
|
||||||
tagName: 'div',
|
tagName: 'div',
|
||||||
className: 'data-map-container',
|
className: 'recline-map',
|
||||||
|
|
||||||
template: ' \
|
template: ' \
|
||||||
<div class="editor"> \
|
<div class="editor"> \
|
||||||
|
|||||||
Reference in New Issue
Block a user