diagram-js-code-editor/assets/diagram-js-code-editor.css

109 lines
1.8 KiB
CSS
Raw Normal View History

2021-06-03 05:45:51 +00:00
.djs-editor {
2021-06-03 14:12:32 +00:00
position: absolute;
top: 90px;
2021-07-08 19:17:27 +00:00
list-style-type: none;
2021-06-03 14:12:32 +00:00
right: 20px;
background-color: rgba(255, 255, 255, 0.9);
2021-06-04 18:35:18 +00:00
color: rgb(0, 0, 0);
2021-06-03 14:12:32 +00:00
border: solid 1px #CCC;
border-radius: 2px;
box-sizing: border-box;
user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
}
2021-06-03 06:56:11 +00:00
2021-06-03 14:12:32 +00:00
.djs-editor:not(.enabled) {
color: #CCC;
pointer-events: none;
}
2021-06-03 05:45:51 +00:00
2021-06-03 14:12:32 +00:00
.djs-editor:not(.open) {
overflow: hidden;
}
2021-07-08 19:31:36 +00:00
.djs-editor:not(.open) .toolbar{
display: none !important;
}
2021-06-03 05:45:51 +00:00
2021-06-04 18:35:18 +00:00
.djs-editor.open .toolbar {
2021-06-10 03:57:05 +00:00
display: block;
}
.toolbar {
2021-07-08 19:17:27 +00:00
position: relative;
z-index: 1;
2021-06-10 03:57:05 +00:00
}
2021-07-08 19:17:27 +00:00
#run_btn {
font-family: "Material Icons", sans-serif;
2021-06-10 03:57:05 +00:00
}
2021-07-08 19:17:27 +00:00
#exit_btn {
font-family: "Material Icons", sans-serif;
2021-06-10 03:57:05 +00:00
}
2021-07-08 19:17:27 +00:00
#exit_btn:before {
content: "close";
2021-06-10 03:57:05 +00:00
}
2021-06-04 18:35:18 +00:00
#run_btn:before {
content: "build";
2021-06-03 14:12:32 +00:00
}
2021-06-03 05:45:51 +00:00
2021-06-10 03:57:05 +00:00
#run_btn.passing {
color: green;
}
#run_btn.failing {
color: red;
}
#run_btn.unknown {
color: rgba(207, 168, 10, 0.842);
}
2021-06-03 14:12:32 +00:00
.djs-editor .ide {
2021-06-10 03:57:05 +00:00
position: relative;
z-index: 0;
2021-06-03 14:12:32 +00:00
display: none;
2021-06-04 18:35:18 +00:00
width: 100%;
min-width: 420px;
2021-06-03 14:12:32 +00:00
height: 280px;
}
2021-06-03 09:34:26 +00:00
2021-06-03 14:12:32 +00:00
.djs-editor.open .ide {
display: block;
}
.djs-editor:not(.open) .toggle {
width: 46px;
height: 46px;
line-height: 46px;
content: "dvr" !important;
text-align: center;
}
.djs-editor.open .toggle:before {
font-family: "Material Icons", sans-serif;
content: "close" !important;
font-size: 24px;
}
.djs-editor:not(.open) .toggle:before {
font-family: "Material Icons", sans-serif;
content: "dvr" !important;
font-size: 24px;
}
.djs-editor .toggle:before {
content: attr(title);
}
.djs-editor.open .toggle {
position: absolute;
right: 0;
padding: 6px;
z-index: 1;
2021-06-10 03:57:05 +00:00
}