fix: change highlight color
continuous-integration/drone/tag Build is failing Details

master
Evan Chen 2021-11-17 18:35:10 +08:00
parent 0b0a54085c
commit 93410f9ddf
3 changed files with 10 additions and 4 deletions

View File

@ -39,9 +39,9 @@ var Ext2Mode map[string]string = map[string]string{
type Action struct {
Name string `json:"name"`
Cmd string `json:"cmd"`
Dir string `json:"dir"`
Envs []string `json"env,omitempty"`
Args []string `json"arg,omitempty"`
Dir string `json:"dir,omitempty"`
Envs []string `json:"env,omitempty"`
Args []string `json:"arg,omitempty"`
run chan struct{} `json:"-"`
pid int `json:"-"`
}

File diff suppressed because one or more lines are too long

View File

@ -40,3 +40,9 @@ $footer-padding: 0.5rem 1.5rem 0.5rem;
transform: rotate(359deg);
}
}
.ace_selection {
// background: #999900 !important;
background: #7f7f00 !important;
}