Skip to content

Commit ca62054

Browse files
authored
Merge pull request #277 from localhostdotdev/prettier-css
prettier styles.css.erb
2 parents a99102b + 0456d2e commit ca62054

File tree

1 file changed

+182
-34
lines changed

1 file changed

+182
-34
lines changed

Diff for: lib/web_console/templates/style.css.erb

+182-34
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,182 @@
1-
.console .pos-absolute { position: absolute; }
2-
.console .pos-fixed { position: fixed; }
3-
.console .pos-right { right: 0; }
4-
.console .border-box { box-sizing: border-box; }
5-
.console .layer { width: 100%; height: 100%; }
6-
.console .layer.console-outer { z-index: 1; }
7-
.console .layer.resizer { z-index: 2; }
8-
.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; }
9-
.console .console-outer { overflow: auto; padding-top: 4px; }
10-
.console .console-inner { font-family: monospace; font-size: 11px; width: 100%; height: 100%; overflow: none; background: #333; }
11-
.console .console-prompt-box { color: #FFF; }
12-
.console .console-message { color: #1AD027; margin: 0; border: 0; white-space: pre-wrap; background-color: #333; padding: 0; }
13-
.console .console-message.error-message { color: #FC9; }
14-
.console .console-message.notification-message { color: #99F; }
15-
.console .console-message.auto-complete { word-break: break-all; }
16-
.console .console-message.auto-complete .keyword { margin-right: 11px; }
17-
.console .console-message.auto-complete .keyword.selected { background: #FFF; color: #000; }
18-
.console .console-message.auto-complete .hidden { display: none; }
19-
.console .console-message.auto-complete .trimmed { display: none; }
20-
.console .console-hint { color: #096; }
21-
.console .console-focus .console-cursor { background: #FEFEFE; color: #333; font-weight: bold; }
22-
.console .resizer { background: #333; width: 100%; height: 4px; cursor: ns-resize; }
23-
.console .console-actions { padding-right: 3px; }
24-
.console .console-actions .button { float: left; }
25-
.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; }
26-
.console .button:hover { background: #666; color: #FFF; }
27-
.console .button.close-button:hover { background: #966; }
28-
.console .clipboard { height: 0px; padding: 0px; margin: 0px; width: 0px; margin-left: -1000px; }
29-
.console .console-prompt-label { display: inline; color: #FFF; background: none repeat scroll 0% 0% #333; border: 0; padding: 0; }
30-
.console .console-prompt-display { display: inline; color: #FFF; background: none repeat scroll 0% 0% #333; border: 0; padding: 0; }
31-
.console.full-screen { height: 100%; }
32-
.console.full-screen .console-outer { padding-top: 3px; }
33-
.console.full-screen .resizer { display: none; }
34-
.console.full-screen .close-button { display: none; }
1+
.console .pos-absolute {
2+
position: absolute;
3+
}
4+
5+
.console .pos-fixed {
6+
position: fixed;
7+
}
8+
9+
.console .pos-right {
10+
right: 0;
11+
}
12+
13+
.console .border-box {
14+
box-sizing: border-box;
15+
}
16+
17+
.console .layer {
18+
width: 100%;
19+
height: 100%;
20+
}
21+
22+
.console .layer.console-outer {
23+
z-index: 1;
24+
}
25+
26+
.console .layer.resizer {
27+
z-index: 2;
28+
}
29+
30+
.console {
31+
position: fixed;
32+
left: 0;
33+
bottom: 0;
34+
width: 100%;
35+
height: 148px;
36+
padding: 0;
37+
margin: 0;
38+
background: none repeat scroll 0% 0% #333;
39+
z-index: 9999;
40+
}
41+
42+
.console .console-outer {
43+
overflow: auto;
44+
padding-top: 4px;
45+
}
46+
47+
.console .console-inner {
48+
font-family: monospace;
49+
font-size: 11px;
50+
width: 100%;
51+
height: 100%;
52+
overflow: none;
53+
background: #333;
54+
}
55+
56+
.console .console-prompt-box {
57+
color: #fff;
58+
}
59+
60+
.console .console-message {
61+
color: #1ad027;
62+
margin: 0;
63+
border: 0;
64+
white-space: pre-wrap;
65+
background-color: #333;
66+
padding: 0;
67+
}
68+
69+
.console .console-message.error-message {
70+
color: #fc9;
71+
}
72+
73+
.console .console-message.notification-message {
74+
color: #99f;
75+
}
76+
77+
.console .console-message.auto-complete {
78+
word-break: break-all;
79+
}
80+
81+
.console .console-message.auto-complete .keyword {
82+
margin-right: 11px;
83+
}
84+
85+
.console .console-message.auto-complete .keyword.selected {
86+
background: #fff;
87+
color: #000;
88+
}
89+
90+
.console .console-message.auto-complete .hidden {
91+
display: none;
92+
}
93+
94+
.console .console-message.auto-complete .trimmed {
95+
display: none;
96+
}
97+
98+
.console .console-hint {
99+
color: #096;
100+
}
101+
102+
.console .console-focus .console-cursor {
103+
background: #fefefe;
104+
color: #333;
105+
font-weight: bold;
106+
}
107+
108+
.console .resizer {
109+
background: #333;
110+
width: 100%;
111+
height: 4px;
112+
cursor: ns-resize;
113+
}
114+
115+
.console .console-actions {
116+
padding-right: 3px;
117+
}
118+
119+
.console .console-actions .button {
120+
float: left;
121+
}
122+
123+
.console .button {
124+
cursor: pointer;
125+
border-radius: 1px;
126+
font-family: monospace;
127+
font-size: 13px;
128+
width: 14px;
129+
height: 14px;
130+
line-height: 14px;
131+
text-align: center;
132+
color: #ccc;
133+
}
134+
135+
.console .button:hover {
136+
background: #666;
137+
color: #fff;
138+
}
139+
140+
.console .button.close-button:hover {
141+
background: #966;
142+
}
143+
144+
.console .clipboard {
145+
height: 0px;
146+
padding: 0px;
147+
margin: 0px;
148+
width: 0px;
149+
margin-left: -1000px;
150+
}
151+
152+
.console .console-prompt-label {
153+
display: inline;
154+
color: #fff;
155+
background: none repeat scroll 0% 0% #333;
156+
border: 0;
157+
padding: 0;
158+
}
159+
160+
.console .console-prompt-display {
161+
display: inline;
162+
color: #fff;
163+
background: none repeat scroll 0% 0% #333;
164+
border: 0;
165+
padding: 0;
166+
}
167+
168+
.console.full-screen {
169+
height: 100%;
170+
}
171+
172+
.console.full-screen .console-outer {
173+
padding-top: 3px;
174+
}
175+
176+
.console.full-screen .resizer {
177+
display: none;
178+
}
179+
180+
.console.full-screen .close-button {
181+
display: none;
182+
}

0 commit comments

Comments
 (0)