aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-08-29 12:55:49 -0400
committerbobzel <zzzman@gmail.com>2023-08-29 12:55:49 -0400
commit349e586b01b18c641a4c753b709f4217a3f3e528 (patch)
tree81794fd08d3f2143c2df6e2d52a1203a9b45971d /src/client/views/collections
parent936382c5cdc9f21ecd3d6b643da986bd30fc1e19 (diff)
cleanup
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/TreeView.scss4
-rw-r--r--src/client/views/collections/collectionLinear/CollectionLinearView.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/collections/TreeView.scss b/src/client/views/collections/TreeView.scss
index d3ba23b4e..0cc11bf1c 100644
--- a/src/client/views/collections/TreeView.scss
+++ b/src/client/views/collections/TreeView.scss
@@ -23,7 +23,7 @@
.treeView-bulletIcons {
width: 100%;
height: 100%;
- // position: absolute;
+ // changes start here.
.treeView-expandIcon {
display: none;
@@ -42,6 +42,7 @@
display: unset;
}
}
+ // end changes
position: relative;
display: flex;
flex-direction: row;
@@ -140,7 +141,6 @@
filter: opacity(0.2) !important;
}
}
-
//align-items: center;
::-webkit-scrollbar {
diff --git a/src/client/views/collections/collectionLinear/CollectionLinearView.tsx b/src/client/views/collections/collectionLinear/CollectionLinearView.tsx
index 0854bc611..3481d5130 100644
--- a/src/client/views/collections/collectionLinear/CollectionLinearView.tsx
+++ b/src/client/views/collections/collectionLinear/CollectionLinearView.tsx
@@ -210,7 +210,7 @@ export class CollectionLinearView extends CollectionSubView() {
text={Cast(this.props.Document.icon, 'string', null)}
icon={Cast(this.props.Document.icon, 'string', null) ? undefined : <FontAwesomeIcon color={SettingsManager.userColor} icon={isExpanded ? 'minus' : 'plus'} />}
color={SettingsManager.userColor}
- // background={SettingsManager.userVariantColor}
+ background={SettingsManager.userVariantColor}
type={Type.TERT}
onPointerDown={e => e.stopPropagation()}
toggleType={ToggleType.BUTTON}