Merge "Added mode for kt and create method"
[ccsdk/cds.git] / cds-ui / client / src / styles.scss
index 1a81d0d..c75748a 100644 (file)
@@ -20,7 +20,53 @@ limitations under the License.
 */
 
 /* You can add global styles to this file, and also import other style files */
-
+@import "~jsoneditor/dist/jsoneditor.min.css";
 .mat-card:not([class*=mat-elevation-z]) {
     box-shadow: none !important;
 }
+
+.btn-active {
+    margin: 0.5em;
+    background-color: #3f51b5;
+    color: white;
+    border-radius: 4px;
+    border: none;
+    padding: 0.5em;
+    min-width: 6em;
+    cursor: pointer;
+}
+
+.btn-disablled {
+    background-color: #c5cae8;
+    border-radius: 4px;
+    color: darkgray;
+    margin: 0.5em;
+    padding: 0.5em;
+    min-width: 6em;
+    border: none;
+    cursor: initial;
+}
+div.jsoneditor-outer {
+    position: static;
+    width: 100%;
+    height: 400px;
+    margin: 0;
+    padding: 0;
+    box-sizing: border-box;
+    color:white;
+}
+div.jsoneditor-outer.has-main-menu-bar{
+background-color:#3f51b5;
+
+}
+div.jsoneditor-tree div.jsoneditor-tree-inner{
+    padding-bottom: 300px;
+    background-color: white;     
+}
+div.jsoneditor-treepath {
+    padding: 0 5px;
+    overflow: hidden;
+    white-space: nowrap;
+    outline: 0;
+    color:white;
+   }
\ No newline at end of file