mirror of https://gitee.com/bigwinds/arangodb
120 lines
2.1 KiB
CSS
120 lines
2.1 KiB
CSS
/* REPL SHELL */
|
|
|
|
.shellul {
|
|
border-bottom: 20px solid rgba(0, 0, 0, 0.00);
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
#shell_workspace {
|
|
width: auto;
|
|
margin-top: 13px;
|
|
margin-left: 5px;
|
|
margin-right: 5px !important;
|
|
margin-bottom: -25px;
|
|
height: 400px;
|
|
background-color: black;
|
|
}
|
|
|
|
.vsplitbar {
|
|
border: 0;
|
|
width: 10px;
|
|
background-color: #F0F0F0;
|
|
border-top: 1px solid #A0A0A0;
|
|
border-bottom: 1px solid #A0A0A0;
|
|
border-left: 1px solid #A0A0A0;
|
|
border-right: 1px solid #A0A0A0;
|
|
background-image: url(../img/stripes90.gif);
|
|
background-repeat:no-repeat;
|
|
background-position: 50% 50%;
|
|
}
|
|
|
|
.vsplitbar:hover {
|
|
cursor: col-resize !important;
|
|
}
|
|
|
|
#replShell {
|
|
float:left;
|
|
min-width: 100px;
|
|
width: 100%;
|
|
background-color: white;
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
#replShell pre {
|
|
border-top: 1px solid #A0A0A0 !important;
|
|
border-right: 1px solid #A0A0A0 !important;
|
|
border-left: 0 !important;
|
|
border-bottom: 0 !important;
|
|
}
|
|
/* The inner console element. */
|
|
.jqconsole {
|
|
background-color: black;
|
|
padding: 10px;
|
|
border-radius: 0;
|
|
}
|
|
.jqconsole-header {
|
|
color: white;
|
|
}
|
|
|
|
.jserror {
|
|
color: #FF0066;
|
|
margin-left: -10px;
|
|
}
|
|
|
|
.jssuccess {
|
|
color: #66FF00;
|
|
}
|
|
|
|
|
|
/* The cursor. */
|
|
.jqconsole-cursor {
|
|
background-color: gray;
|
|
}
|
|
/* The cursor color when the console looses focus. */
|
|
.jqconsole-blurred .jqconsole-header .jqconsole-cursor {
|
|
color: #C4CCCC;
|
|
}
|
|
/* The current prompt text color */
|
|
.jqconsole-prompt {
|
|
color: #BB9911;
|
|
}
|
|
/* The command history */
|
|
.jqconsole-old-prompt {
|
|
color: #FF6600;
|
|
font-weight: normal;
|
|
}
|
|
/* The text color when in input mode. */
|
|
.jqconsole-input {
|
|
color: #dd0;
|
|
}
|
|
/* Previously entered input. */
|
|
.jqconsole-old-input {
|
|
color: #bb0;
|
|
font-weight: normal;
|
|
}
|
|
/* The text color of the output. */
|
|
.jqconsole-output {
|
|
color: white;
|
|
}
|
|
|
|
#editor-run:hover {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
#editor-run {
|
|
cursor: pointer !important;
|
|
position: absolute;
|
|
z-index: 5;
|
|
bottom: 15px;
|
|
right: 32px;
|
|
width: 60px;
|
|
opacity: 0.6;
|
|
content: "Submit";
|
|
height: 20px !important;
|
|
}
|
|
|
|
#queryOutput .ace_gutter-cell {
|
|
background-color: #F0F0F0 !important;
|
|
}
|