Remove unneeded CSS
This commit is contained in:
parent
9669b38595
commit
cb91c168dc
|
@ -448,44 +448,6 @@
|
||||||
#--re-frame-trace-- .active {
|
#--re-frame-trace-- .active {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
#--re-frame-trace-- .re-frame-trace--collection {
|
|
||||||
border-left: 1px solid #efeef1;
|
|
||||||
margin-left: 10px;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--primative:not(:first-child) {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--boolean {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--string:before {
|
|
||||||
color: #8f8f8f;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--string:after {
|
|
||||||
color: #8f8f8f;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--nil {
|
|
||||||
text-decoration: line-through;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--keyword {
|
|
||||||
color: #616cdb;
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--cljs-core-PersistentArrayMap:before,
|
|
||||||
#--re-frame-trace-- .re-frame-trace--cljs-core-PersistentTreeMap:before,
|
|
||||||
#--re-frame-trace-- .re-frame-trace--cljs-core-PersistentVector:before {
|
|
||||||
color: #8f8f8f;
|
|
||||||
content: "{";
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--cljs-core-PersistentArrayMap:after,
|
|
||||||
#--re-frame-trace-- .re-frame-trace--cljs-core-PersistentTreeMap:after,
|
|
||||||
#--re-frame-trace-- .re-frame-trace--cljs-core-PersistentVector:after {
|
|
||||||
color: #8f8f8f;
|
|
||||||
content: "}";
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .re-frame-trace--object .toggle {
|
#--re-frame-trace-- .re-frame-trace--object .toggle {
|
||||||
color: #8f8f8f;
|
color: #8f8f8f;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -493,14 +455,3 @@
|
||||||
#--re-frame-trace-- .re-frame-trace--object > span {
|
#--re-frame-trace-- .re-frame-trace--object > span {
|
||||||
vertical-align: text-top;
|
vertical-align: text-top;
|
||||||
}
|
}
|
||||||
#--re-frame-trace-- .data-structure-editable.string:before {
|
|
||||||
color: #8f8f8f;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .data-structure-editable.string:after {
|
|
||||||
color: #8f8f8f;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
#--re-frame-trace-- .data-structure-editable > span {
|
|
||||||
vertical-align: text-top;
|
|
||||||
}
|
|
||||||
|
|
|
@ -541,74 +541,12 @@
|
||||||
/* app-state data viewer
|
/* app-state data viewer
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.re-frame-trace--collection {
|
|
||||||
border-left: 1px solid @light-gray;
|
|
||||||
margin-left: 10px;
|
|
||||||
padding-left: 10px;
|
|
||||||
// background: rgba(0, 0, 0, 0.07);
|
|
||||||
}
|
|
||||||
.re-frame-trace--primative:not(:first-child) {
|
|
||||||
margin-left: 10px;
|
|
||||||
// color: @text-color-muted;
|
|
||||||
}
|
|
||||||
.re-frame-trace--number {
|
|
||||||
}
|
|
||||||
.re-frame-trace--boolean {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
.re-frame-trace--string {
|
|
||||||
&:before {
|
|
||||||
color: @text-color-muted;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
&:after {
|
|
||||||
color: @text-color-muted;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.re-frame-trace--nil {
|
|
||||||
text-decoration: line-through;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
.re-frame-trace--keyword {
|
|
||||||
color: @light-purple;
|
|
||||||
}
|
|
||||||
.re-frame-trace--symbol {
|
|
||||||
}
|
|
||||||
.re-frame-trace--cljs-core-PersistentArrayMap,
|
|
||||||
.re-frame-trace--cljs-core-PersistentTreeMap,
|
|
||||||
.re-frame-trace--cljs-core-PersistentVector {
|
|
||||||
&:before {
|
|
||||||
color: @text-color-muted;
|
|
||||||
content: "{";
|
|
||||||
}
|
|
||||||
&:after {
|
|
||||||
color: @text-color-muted;
|
|
||||||
content: "}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.re-frame-trace--object {
|
.re-frame-trace--object {
|
||||||
.toggle {
|
.toggle {
|
||||||
color: @text-color-muted;
|
color: @text-color-muted;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
&>span {
|
& > span {
|
||||||
vertical-align: text-top;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.data-structure-editable {
|
|
||||||
&.string {
|
|
||||||
&:before {
|
|
||||||
color: @text-color-muted;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
&:after {
|
|
||||||
color: @text-color-muted;
|
|
||||||
content: "\"";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&>span {
|
|
||||||
vertical-align: text-top;
|
vertical-align: text-top;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue