summaryrefslogtreecommitdiffstats
path: root/dgbuilder/public/ace/ace-styles.css
diff options
context:
space:
mode:
authorChinthakayala,Sheshashailavas(sc2914) <sc2914@att.com>2018-06-27 16:11:44 +0000
committerChinthakayala,Sheshashailavas(sc2914) <sc2914@att.com>2018-06-27 16:25:31 +0000
commit8f6a6c445eaeb7356e1db9d10d10b7d3fa42f27e (patch)
treebf1e5c83c357fbd4a0158cac6d41bd936e949a80 /dgbuilder/public/ace/ace-styles.css
parente14a02086c9119532f9153c78346d5c1d6789ca9 (diff)
removed dependency on built-editor.min.js
and added ability to test DG from dgbuilder and fixed the break node on XML generation and added ability to download formatted DG XML and DG JSON Issue-ID: SDNC-353 Change-Id: I799de5de2c4f61e9b56dbe996d8ac3e3b28061f7 Signed-off-by: Chinthakayala,Sheshashailavas(sc2914) <sc2914@att.com>
Diffstat (limited to 'dgbuilder/public/ace/ace-styles.css')
-rw-r--r--dgbuilder/public/ace/ace-styles.css90
1 files changed, 90 insertions, 0 deletions
diff --git a/dgbuilder/public/ace/ace-styles.css b/dgbuilder/public/ace/ace-styles.css
new file mode 100644
index 00000000..10953645
--- /dev/null
+++ b/dgbuilder/public/ace/ace-styles.css
@@ -0,0 +1,90 @@
+#flex-container {
+ display: flex;
+ display: -webkit-flex;
+ flex-direction: row;
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ top: 0px !important;
+ left: 0px;
+
+ /* these 3 lines are to prevents an unsightly scrolling bounce affect on Safari */
+ height: 100%;
+ width: 100%;
+ overflow: auto;
+}
+#flex-container>div {
+ flex-grow: 1;
+ -webkit-flex-grow: 1;
+ position: relative;
+}
+#flex-container>div#gutter {
+ flex: 0 0 60px;
+ -webkit-flex: 0 0 60px;
+ border-left: 1px solid #999999;
+ border-right: 1px solid #999999;
+ background-color: #efefef;
+ overflow: hidden;
+}
+#gutter svg {
+ background-color: #efefef;
+}
+
+#editor1 {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 100%;
+}
+#editor2 {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 100%;
+}
+.acediff-diff {
+ background-color: #d8f2ff;
+ border-top: 1px solid #a2d7f2;
+ border-bottom: 1px solid #a2d7f2;
+ position: absolute;
+ z-index: 4;
+}
+.acediff-diff.targetOnly {
+ height: 0px !important;
+ border-top: 1px solid #a2d7f2;
+ border-bottom: 0px;
+ position: absolute;
+}
+.acediff-connector {
+ fill: #d8f2ff;
+ stroke: #a2d7f2;
+}
+
+.acediff-copy-left {
+ float: right;
+}
+.acediff-copy-right,
+.acediff-copy-left {
+ position: relative;
+}
+.acediff-copy-right div {
+ color: #000000;
+ text-shadow: 1px 1px #ffffff;
+ position: absolute;
+ margin: -3px 2px;
+ cursor: pointer;
+}
+.acediff-copy-right div:hover {
+ color: #004ea0;
+}
+.acediff-copy-left div {
+ color: #000000;
+ text-shadow: 1px 1px #ffffff;
+ position: absolute;
+ right: 0px;
+ margin: -3px 2px;
+ cursor: pointer;
+}
+.acediff-copy-left div:hover {
+ color: #c98100;
+}