Change the color of the report button

This commit is contained in:
Visman 2021-01-02 21:49:28 +07:00
parent 806fd4a926
commit fa6cb59778
2 changed files with 4 additions and 3 deletions

View file

@ -48,7 +48,7 @@ class Report extends Page
])->addRules([
'token' => 'token:ReportPost',
'reason' => 'required|string:trim,linebreaks|max:65000 bytes',
'submit' => 'required|string',
'report' => 'required|string',
])->addAliases([
'reason' => 'Reason',
])->addArguments([
@ -141,7 +141,7 @@ class Report extends Page
],
],
'btns' => [
'submit' => [
'report' => [
'type' => 'submit',
'value' => __('Submit'),
// 'accesskey' => 's',

View file

@ -617,7 +617,8 @@ body,
width: 100%;
}
#fork .f-fdiv .f-btn[name=delete] {
#fork .f-fdiv .f-btn[name="delete"],
#fork .f-fdiv .f-btn[name="report"] {
color: red;
}