Skip to content

Commit b872683

Browse files
committed
Add class to hide the control shadow
1 parent 6198b72 commit b872683

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

application/controllers/DashboardController.php

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DashboardController extends Controller
2323
public function indexAction(): void
2424
{
2525
$this->addTitleTab($this->translate('Kubernetes'));
26+
$this->controls->addAttributes(['class' => 'no-shadow']);
2627

2728
$cluster = (new ClusterForm())
2829
->addAttributes(new Attributes(['class' => 'cluster-form']))

public/css/common.less

+7-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,13 @@ pre {
2929
}
3030

3131
.controls {
32-
// Copied from Icinga DB Web
33-
-moz-box-shadow: 0 0 0 1px var(--gray-lighter, #4b4b4b);
34-
-webkit-box-shadow: 0 0 0 1px var(--gray-lighter, #4b4b4b);
35-
box-shadow: 0 0 0 1px var(--gray-lighter, #4b4b4b);
32+
33+
&:not(.no-shadow) {
34+
// Copied from Icinga DB Web
35+
-moz-box-shadow: 0 0 0 1px var(--gray-lighter, #4b4b4b);
36+
-webkit-box-shadow: 0 0 0 1px var(--gray-lighter, #4b4b4b);
37+
box-shadow: 0 0 0 1px var(--gray-lighter, #4b4b4b);
38+
}
3639

3740
a.subject {
3841
cursor: default;

0 commit comments

Comments
 (0)