aboutsummaryrefslogtreecommitdiff
path: root/src/client/views
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views')
-rw-r--r--src/client/views/CollectionLinearView.scss4
-rw-r--r--src/client/views/CollectionLinearView.tsx3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/client/views/CollectionLinearView.scss b/src/client/views/CollectionLinearView.scss
index 1e6bb5922..4bfd88b69 100644
--- a/src/client/views/CollectionLinearView.scss
+++ b/src/client/views/CollectionLinearView.scss
@@ -50,11 +50,11 @@
padding: 0;
position: relative;
- .collectionLinearView-docBtn {
+ .collectionLinearView-docBtn, .collectionLinearView-docBtn-scalable {
position:relative;
margin-right: 10px;
}
- .collectionLinearView-docBtn:hover {
+ .collectionLinearView-docBtn-scalable:hover {
transform: scale(1.15);
}
diff --git a/src/client/views/CollectionLinearView.tsx b/src/client/views/CollectionLinearView.tsx
index 49c67a448..5c793f784 100644
--- a/src/client/views/CollectionLinearView.tsx
+++ b/src/client/views/CollectionLinearView.tsx
@@ -17,6 +17,7 @@ import { DocumentView, documentSchema } from './nodes/DocumentView';
import "./CollectionLinearView.scss";
import { makeInterface } from '../../new_fields/Schema';
import { CollectionSubView } from './collections/CollectionSubView';
+import { DocumentType } from '../documents/DocumentTypes';
type LinearDocument = makeInterface<[typeof documentSchema,]>;
@@ -87,7 +88,7 @@ export class CollectionLinearView extends CollectionSubView(LinearDocument) {
<div className="collectionLinearView-content">
{this.childLayoutPairs.filter(pair => this.isCurrent(pair.layout)).map(pair =>
- <div className="collectionLinearView-docBtn" style={{ width: this.dimension(), height: this.dimension() }} key={StrCast(pair.layout.title)} >
+ <div className={`collectionLinearView-docBtn` + (pair.layout.onClick ? "-scalable" : "")} style={{ width: this.dimension(), height: this.dimension() }} key={StrCast(pair.layout.title)} >
<DocumentView
Document={pair.layout}
DataDoc={pair.data}