aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2022-10-24 15:06:47 -0400
committermehekj <mehek.jethani@gmail.com>2022-10-24 15:06:47 -0400
commit5425b61d62beef22d068e259ae3e2003f08e0c05 (patch)
tree6821bd8131032a7232f372ee5bbf16507138ff89 /src/client/views/collections/collectionSchema/CollectionSchemaView.scss
parent0b3a83acd4f75b7f6ff4b9bb7daf4377dede51a1 (diff)
switched drag element to show rows
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.scss')
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.scss98
1 files changed, 49 insertions, 49 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.scss b/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
index 1d0ab459d..4d7e8c39f 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
@@ -7,22 +7,6 @@
.schema-table {
background-color: $white;
- .schema-header-row,
- .schema-row {
- display: flex;
- flex-direction: row;
- max-height: 70px;
- overflow: auto;
-
- .schema-column-header,
- .schema-table-cell,
- .row-menu {
- border: 1px solid $medium-gray;
- padding: 5px;
- overflow: hidden;
- }
- }
-
.schema-header-row {
justify-content: flex-end;
@@ -63,44 +47,60 @@
}
}
- .schema-row {
- justify-content: flex-end;
-
- .row-menu {
- display: flex;
- flex-direction: row;
- justify-content: center;
- min-width: 50px;
- }
-
- .row-cells {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- }
-
.schema-header-menu {
display: flex;
flex-direction: row;
}
+ }
+}
- .row-button,
- .schema-header-button {
- width: 20px;
- height: 20px;
- border-radius: 100%;
- background-color: $dark-gray;
- color: white;
- margin: 3px;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
+.schema-header-row,
+.schema-row {
+ display: flex;
+ flex-direction: row;
+ max-height: 70px;
+ overflow: auto;
+
+ .schema-column-header,
+ .schema-table-cell,
+ .row-menu {
+ border: 1px solid $medium-gray;
+ padding: 5px;
+ overflow: hidden;
+ }
+}
- svg {
- width: 12px;
- }
- }
+.schema-row {
+ justify-content: flex-end;
+
+ .row-menu {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ min-width: 50px;
+ }
+
+ .row-cells {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-end;
+ }
+}
+
+.schema-row-button,
+.schema-header-button {
+ width: 20px;
+ height: 20px;
+ border-radius: 100%;
+ background-color: $dark-gray;
+ color: white;
+ margin: 3px;
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ svg {
+ width: 12px;
}
}