| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | protected function addStyle() |
||
| 10 | { |
||
| 11 | $style = <<<STYLE |
||
| 12 | .card-group label { |
||
| 13 | cursor: pointer; |
||
| 14 | margin-right: 8px; |
||
| 15 | font-weight: 400; |
||
| 16 | } |
||
| 17 | |||
| 18 | .card-group .panel-body { |
||
| 19 | padding: 10px 15px; |
||
| 20 | } |
||
| 21 | |||
| 22 | .card-group .active { |
||
| 23 | border: 2px solid #367fa9; |
||
| 24 | } |
||
| 25 | STYLE; |
||
| 26 | |||
| 27 | Admin::style($style); |
||
| 28 | } |
||
| 29 | |||
| 40 |