rusackas commented on a change in pull request #10982:
URL: 
https://github.com/apache/incubator-superset/pull/10982#discussion_r497979734



##########
File path: superset-frontend/stylesheets/superset.less
##########
@@ -600,3 +600,55 @@ input[type='radio']:checked:after {
 hr {
   border-top: 1px solid @gray-light;
 }
+
+.modal-fullscreen {
+  & > .modal-lg {
+    height: calc(100% - 60px);
+    & > .modal-content {
+      height: 100%;
+      display: flex;
+      flex-direction: column;
+      & > .modal-body {
+        display: flex;
+        flex-direction: column;
+        flex: 1;
+      }
+    }
+  }
+}
+
+.flex-1 {
+  flex: 1;
+}
+
+.sticky-table {
+  & > div {
+    & > div:nth-child(2) {
+      & > div:first-child {
+        & > table {
+          margin-bottom: 0;
+          th {
+            border-bottom-width: 1px;
+          }
+        }
+      }
+      & > div:nth-child(2) {
+        &::-webkit-scrollbar {
+          -webkit-appearance: none;
+          &:vertical {
+            width: 7px;

Review comment:
       Not sure if this 7px measurement (and the one below it) need to be 
exactly 7px, but if it's just _about that big_ then if this were moved to 
Emotion I would do `width: ${({ theme }) => theme.gridUnit * 2}px` to make it 
themable
   ```
               width: 7px;
   ```
   




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to