Skip to content

Commit

Permalink
Merge pull request #277 from localhostdotdev/prettier-css
Browse files Browse the repository at this point in the history
prettier styles.css.erb
  • Loading branch information
gsamokovarov authored May 15, 2019
2 parents a99102b + 0456d2e commit ca62054
Showing 1 changed file with 182 additions and 34 deletions.
216 changes: 182 additions & 34 deletions lib/web_console/templates/style.css.erb
Original file line number Diff line number Diff line change
@@ -1,34 +1,182 @@
.console .pos-absolute { position: absolute; }
.console .pos-fixed { position: fixed; }
.console .pos-right { right: 0; }
.console .border-box { box-sizing: border-box; }
.console .layer { width: 100%; height: 100%; }
.console .layer.console-outer { z-index: 1; }
.console .layer.resizer { z-index: 2; }
.console { position: fixed; left: 0; bottom: 0; width: 100%; height: 148px; padding: 0; margin: 0; background: none repeat scroll 0% 0% #333; z-index: 9999; }
.console .console-outer { overflow: auto; padding-top: 4px; }
.console .console-inner { font-family: monospace; font-size: 11px; width: 100%; height: 100%; overflow: none; background: #333; }
.console .console-prompt-box { color: #FFF; }
.console .console-message { color: #1AD027; margin: 0; border: 0; white-space: pre-wrap; background-color: #333; padding: 0; }
.console .console-message.error-message { color: #FC9; }
.console .console-message.notification-message { color: #99F; }
.console .console-message.auto-complete { word-break: break-all; }
.console .console-message.auto-complete .keyword { margin-right: 11px; }
.console .console-message.auto-complete .keyword.selected { background: #FFF; color: #000; }
.console .console-message.auto-complete .hidden { display: none; }
.console .console-message.auto-complete .trimmed { display: none; }
.console .console-hint { color: #096; }
.console .console-focus .console-cursor { background: #FEFEFE; color: #333; font-weight: bold; }
.console .resizer { background: #333; width: 100%; height: 4px; cursor: ns-resize; }
.console .console-actions { padding-right: 3px; }
.console .console-actions .button { float: left; }
.console .button { cursor: pointer; border-radius: 1px; font-family: monospace; font-size: 13px; width: 14px; height: 14px; line-height: 14px; text-align: center; color: #CCC; }
.console .button:hover { background: #666; color: #FFF; }
.console .button.close-button:hover { background: #966; }
.console .clipboard { height: 0px; padding: 0px; margin: 0px; width: 0px; margin-left: -1000px; }
.console .console-prompt-label { display: inline; color: #FFF; background: none repeat scroll 0% 0% #333; border: 0; padding: 0; }
.console .console-prompt-display { display: inline; color: #FFF; background: none repeat scroll 0% 0% #333; border: 0; padding: 0; }
.console.full-screen { height: 100%; }
.console.full-screen .console-outer { padding-top: 3px; }
.console.full-screen .resizer { display: none; }
.console.full-screen .close-button { display: none; }
.console .pos-absolute {
position: absolute;
}

.console .pos-fixed {
position: fixed;
}

.console .pos-right {
right: 0;
}

.console .border-box {
box-sizing: border-box;
}

.console .layer {
width: 100%;
height: 100%;
}

.console .layer.console-outer {
z-index: 1;
}

.console .layer.resizer {
z-index: 2;
}

.console {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 148px;
padding: 0;
margin: 0;
background: none repeat scroll 0% 0% #333;
z-index: 9999;
}

.console .console-outer {
overflow: auto;
padding-top: 4px;
}

.console .console-inner {
font-family: monospace;
font-size: 11px;
width: 100%;
height: 100%;
overflow: none;
background: #333;
}

.console .console-prompt-box {
color: #fff;
}

.console .console-message {
color: #1ad027;
margin: 0;
border: 0;
white-space: pre-wrap;
background-color: #333;
padding: 0;
}

.console .console-message.error-message {
color: #fc9;
}

.console .console-message.notification-message {
color: #99f;
}

.console .console-message.auto-complete {
word-break: break-all;
}

.console .console-message.auto-complete .keyword {
margin-right: 11px;
}

.console .console-message.auto-complete .keyword.selected {
background: #fff;
color: #000;
}

.console .console-message.auto-complete .hidden {
display: none;
}

.console .console-message.auto-complete .trimmed {
display: none;
}

.console .console-hint {
color: #096;
}

.console .console-focus .console-cursor {
background: #fefefe;
color: #333;
font-weight: bold;
}

.console .resizer {
background: #333;
width: 100%;
height: 4px;
cursor: ns-resize;
}

.console .console-actions {
padding-right: 3px;
}

.console .console-actions .button {
float: left;
}

.console .button {
cursor: pointer;
border-radius: 1px;
font-family: monospace;
font-size: 13px;
width: 14px;
height: 14px;
line-height: 14px;
text-align: center;
color: #ccc;
}

.console .button:hover {
background: #666;
color: #fff;
}

.console .button.close-button:hover {
background: #966;
}

.console .clipboard {
height: 0px;
padding: 0px;
margin: 0px;
width: 0px;
margin-left: -1000px;
}

.console .console-prompt-label {
display: inline;
color: #fff;
background: none repeat scroll 0% 0% #333;
border: 0;
padding: 0;
}

.console .console-prompt-display {
display: inline;
color: #fff;
background: none repeat scroll 0% 0% #333;
border: 0;
padding: 0;
}

.console.full-screen {
height: 100%;
}

.console.full-screen .console-outer {
padding-top: 3px;
}

.console.full-screen .resizer {
display: none;
}

.console.full-screen .close-button {
display: none;
}

0 comments on commit ca62054

Please sign in to comment.