File tree 3 files changed +10
-1
lines changed
library/Kubernetes/Dashboard
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class DashboardController extends Controller
23
23
public function indexAction (): void
24
24
{
25
25
$ this ->addTitleTab ($ this ->translate ('Kubernetes ' ));
26
+ $ this ->controls ->addAttributes (['class ' => 'no-shadow ' ]);
26
27
27
28
$ cluster = (new ClusterForm ())
28
29
->addAttributes (new Attributes (['class ' => 'cluster-form ' ]))
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class ClusterManagementDashboard extends Dashboard
8
8
{
9
9
public function getTitle (): string
10
10
{
11
- return $ this ->translate ('Cluster management ' );
11
+ return $ this ->translate ('Cluster Management ' );
12
12
}
13
13
14
14
protected function assemble (): void
Original file line number Diff line number Diff line change 29
29
}
30
30
31
31
.controls {
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
+ }
39
+
32
40
a .subject {
33
41
cursor : default ;
34
42
pointer-events : none ;
You can’t perform that action at this time.
0 commit comments