output style
This commit is contained in:
parent
ccf1579ec5
commit
30d38ccc0d
|
@ -11,17 +11,22 @@
|
|||
"RuntimeMode": "dev",
|
||||
"Pwd": "{pwd}",
|
||||
"Workspace": "{pwd}/data/workspace",
|
||||
"Locale": "zh_CN",
|
||||
"Locale": "en_US",
|
||||
"Users": [
|
||||
{
|
||||
"Name": "admin",
|
||||
"Password": "admin",
|
||||
"Workspace": "{pwd}/data/user_workspaces/admin",
|
||||
"Locale": "zh_CN",
|
||||
"Locale": "en_US",
|
||||
"LatestSessionContent": {
|
||||
"FileTree": [],
|
||||
"Files": [],
|
||||
"CurrentFile": ""
|
||||
"FileTree": [
|
||||
"E:\\Work\\go\\src\\github.com\\b3log\\wide\\data\\user_workspaces\\admin\\src\\mytest",
|
||||
"E:\\Work\\go\\src\\github.com\\b3log\\wide\\data\\user_workspaces\\admin\\src\\mytest\\time"
|
||||
],
|
||||
"Files": [
|
||||
"E:\\Work\\go\\src\\github.com\\b3log\\wide\\data\\user_workspaces\\admin\\src\\mytest\\time\\main.go"
|
||||
],
|
||||
"CurrentFile": "E:\\Work\\go\\src\\github.com\\b3log\\wide\\data\\user_workspaces\\admin\\src\\mytest\\time\\main.go"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -270,22 +270,38 @@
|
|||
overflow: auto;
|
||||
}
|
||||
|
||||
.bottom-window-group table {
|
||||
width: 100%;
|
||||
.bottom-window-group .output {
|
||||
padding: 2px 5px;
|
||||
line-height: 16px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.bottom-window-group .output .start-build, .start-install, .start-get {
|
||||
.bottom-window-group .output pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.bottom-window-group .output .start-build,
|
||||
.bottom-window-group .output .start-install,
|
||||
.bottom-window-group .output .start-get {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.bottom-window-group .output .build-succ, .install-succ, .get-succ {
|
||||
.bottom-window-group .output .build-succ,
|
||||
.bottom-window-group .output .install-succ,
|
||||
.bottom-window-group .output .get-succ {
|
||||
color: rgb(0,153,0);
|
||||
}
|
||||
|
||||
.bottom-window-group .output .build-failed, .install-failed, .get-failed {
|
||||
.bottom-window-group .output .build-failed,
|
||||
.bottom-window-group .output .install-failed,
|
||||
.bottom-window-group .output .get-failed {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.bottom-window-group table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bottom-window-group td {
|
||||
border-bottom: 1px solid #DDD;
|
||||
line-height: 20px;
|
||||
|
|
Loading…
Reference in New Issue