forked from c9/cloud9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsole.css
More file actions
69 lines (59 loc) · 1.77 KB
/
Copy pathconsole.css
File metadata and controls
69 lines (59 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.barConsoleHints{
z-index: 10000;
padding: 4px 4px 0 4px;
position: absolute;
display: none;
bottom : 41px;
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
-webkit-border-bottom-right-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
-moz-border-radius-bottomright: 0px;
-moz-border-radius-bottomleft: 0px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
border : 2px solid #656565;
border-width : 2px 2px 0 2px;
background-color: #000000;
backgroud: -webkit-gradient(linear,left bottom,left top,rgb(46,48,52),rgb(31,31,31));
background: -moz-linear-gradient(center bottom,rgb(46,48,52),rgb(31,31,31));
}
.barConsoleHints a {
position: relative;
text-decoration: none;
font-weight: normal;
color: #eeeeee;
padding: 3px 5px;
margin: 0 0 2px 0;
display: block;
}
.barConsoleHints a.selected {
padding: 2px 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background-color: #f0f0f0;
background: -webkit-gradient(linear,left bottom,left top,rgb(55,56,58),rgb(41,42,43));
background: -moz-linear-gradient(center bottom,rgb(55,56,58),rgb(41,42,43));
border-top: 1px solid #505051;
border-left: 1px solid #505051;
border-right: 1px solid #505051;
border-bottom: 1px solid #1d1e1f;
}
.barConsoleHints a span {
color: #909090;
font-style: italic;
margin-left: 4px;
font-size: 11px;
}
.barConsoleHints a span.hints_hotkey {
color: #666;
font-weight: bold;
float: right;
margin-left : 20px;
margin-top : 1px;
}