[#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:
parent
93e8b14a25
commit
cb51f485c0
@ -1,14 +1,14 @@
|
||||
.recline-graph-container .graph {
|
||||
.recline-graph .graph {
|
||||
height: 500px;
|
||||
margin-right: 200px;
|
||||
}
|
||||
|
||||
.recline-graph-container .legend table {
|
||||
.recline-graph .legend table {
|
||||
width: auto;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.recline-graph-container .legend td {
|
||||
.recline-graph .legend td {
|
||||
padding: 5px;
|
||||
line-height: 13px;
|
||||
}
|
||||
@ -17,34 +17,34 @@
|
||||
* Editor
|
||||
*********************************************************/
|
||||
|
||||
.recline-graph-container .editor {
|
||||
.recline-graph .editor {
|
||||
float: right;
|
||||
width: 200px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.recline-graph-container .editor-info {
|
||||
.recline-graph .editor-info {
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.recline-graph-container .editor-info {
|
||||
.recline-graph .editor-info {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.recline-graph-container .editor form {
|
||||
.recline-graph .editor form {
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.recline-graph-container .editor select {
|
||||
.recline-graph .editor select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.recline-graph-container .editor-info {
|
||||
.recline-graph .editor-info {
|
||||
border-bottom: 1px solid #ddd;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.recline-graph-container .editor-hide-info p {
|
||||
.recline-graph .editor-hide-info p {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
.data-map-container .map {
|
||||
.recline-map .map {
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
@ -6,18 +6,18 @@
|
||||
* Editor
|
||||
*********************************************************/
|
||||
|
||||
.data-map-container .editor {
|
||||
.recline-map .editor {
|
||||
float: right;
|
||||
width: 200px;
|
||||
padding-left: 0px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.data-map-container .editor form {
|
||||
.recline-map .editor form {
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.data-map-container .editor select {
|
||||
.recline-map .editor select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ this.recline.View = this.recline.View || {};
|
||||
my.Graph = Backbone.View.extend({
|
||||
|
||||
tagName: "div",
|
||||
className: "recline-graph-container",
|
||||
className: "recline-graph",
|
||||
|
||||
template: ' \
|
||||
<div class="editor"> \
|
||||
|
||||
@ -26,7 +26,7 @@ this.recline.View = this.recline.View || {};
|
||||
my.Map = Backbone.View.extend({
|
||||
|
||||
tagName: 'div',
|
||||
className: 'data-map-container',
|
||||
className: 'recline-map',
|
||||
|
||||
template: ' \
|
||||
<div class="editor"> \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user