Provide timeout field in interface operation implementation
[sdc.git] / catalog-ui / src / app / ng2 / pages / composition / interface-operatons / operation-creator / interface-operation-handler.component.less
index 8bbed9d..7c333ce 100644 (file)
 @import '../../../../../../assets/styles/override.less';
 
 .operation-handler {
+    overflow: scroll;
+    max-height: 700px;
+    max-width: 100%;
     font-family: @font-opensans-regular;
     user-select: none;
     padding-top: 12px;
     padding-bottom: 20px;
 
+    .group-with-border {
+        margin: 10px 0;
+        padding: 10px 0;
+        border-top: 1px solid @tlv_color_u;
+        .content-row:not(:last-of-type) {
+            padding-bottom: 13px;
+        }
+    }
+
+    .occurrences-label {
+        font-family: @font-opensans-regular;
+        margin-bottom: 19px;
+        font-size: 14px;
+    }
+
     .i-sdc-form-label {
         font-size: 12px;
     }
         }
     }
 
+    .input-param-component {
+                display: flex;
+                flex-direction: column;
+                justify-content: center;
+                align-items: center;
+                padding: 14px;
+    }
+
     .generic-table {
         max-height: 244px;
         min-height: 91px;
         }
 
         /deep/ .cell {
-            &.field-input-name, &.field-input-value{
+            &.field-input-name, &.field-input-type, &.field-input-value{
                 flex: 1;
             }
 
 
     }
 }
+
+.operation-handler::-webkit-scrollbar-track {
+    border: 0;
+}
+
+.sdc-timeout-label {
+    width: 100%;
+}
+
+.sdc-timeout {
+    box-sizing : border-box;
+    padding : 0 10px;
+    width : 10%;
+    border: solid 1px #d2d2d2;
+    border-radius : 2px;
+    color: #5a5a5a;
+}