File tree Expand file tree Collapse file tree 7 files changed +25
-19
lines changed Expand file tree Collapse file tree 7 files changed +25
-19
lines changed Original file line number Diff line number Diff line change 77
77
hex-notation : 2
78
78
indentation : 2
79
79
leading-zero : 2
80
- nesting-depth : 2
80
+ nesting-depth : 3
81
81
property-sort-order : 2
82
82
quotes : 2
83
83
shorthand-values : 2
Original file line number Diff line number Diff line change @@ -28,10 +28,12 @@ $caption-font-size-base: rem(1.2) !default;
28
28
$toolbar-height-size-base : rem (6.4 ) !default ;
29
29
30
30
$primary : #326de6 ;
31
+ $secondary : #f51200 ;
31
32
$warning : #ffa500 ;
32
33
$delicate : #aaa ;
33
34
$muted : #888 ;
34
35
$hover-primary : #1254df ;
36
+ $hover-secondary : #ff1c19 ;
35
37
$body : #eee ;
36
38
$emphasis : #000 ;
37
39
$content-background : #fff ;
Original file line number Diff line number Diff line change 14
14
limitations under the License.
15
15
-->
16
16
17
- < md-dialog aria-label ="Create a new namespace " layout ="column " layout-padding >
18
- < md-content layout-padding >
17
+ < md-dialog aria-label ="Create a new namespace " layout ="column ">
18
+ < md-dialog- content layout-padding >
19
19
< h4 class ="md-title " > Create a new namespace</ h4 >
20
- < p > The new namespace will be added to the cluster.</ p >
20
+ < div > The new namespace will be added to the cluster.</ div >
21
21
<!-- TODO(maciaszczykm): Missing detailed cluster info. -->
22
22
< form name ="ctrl.namespaceForm " ng-submit ="ctrl.createNamespace() "
23
23
novalidate >
@@ -38,5 +38,5 @@ <h4 class="md-title" >Create a new namespace</h4>
38
38
< md-button ng-click ="ctrl.cancel() "> Cancel</ md-button >
39
39
</ md-dialog-actions >
40
40
</ form >
41
- </ md-content >
41
+ </ md-dialog- content >
42
42
</ md-dialog >
Original file line number Diff line number Diff line change 14
14
limitations under the License.
15
15
-->
16
16
17
- < md-dialog aria-label ="Delete Replica Set " layout ="column " layout-padding >
18
- < md-content layout-padding >
17
+ < md-dialog aria-label ="Delete Replica Set " layout ="column ">
18
+ < md-dialog- content layout-padding >
19
19
< h4 class ="md-title "> Delete Replica Set</ h4 >
20
- < p >
20
+ < div >
21
21
Delete replica set {{::ctrl.replicaSet}} in namespace {{::ctrl.namespace}}.< br >
22
22
Pods managed by the replica set will be also deleted.
23
- </ p >
23
+ </ div >
24
24
< md-dialog-actions >
25
25
< md-button class ="md-primary " ng-click ="ctrl.cancel() "> Cancel</ md-button >
26
26
< md-button class ="md-primary " ng-click ="ctrl.remove() "> Delete</ md-button >
27
27
</ md-dialog-actions >
28
- </ md-content >
28
+ </ md-dialog- content >
29
29
</ md-dialog >
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ <h1 flex class="md-title kd-replicasetdetail-app-name">
28
28
</ div >
29
29
</ div >
30
30
< div flex layout ="column " class ="kd-replicasetdetail-sidebar-item ">
31
- < span class ="kd-replicasetdetail-sidebar-title kd-replicasetdetail-sidebar-info ">
32
- Replica Set
33
- </ span >
34
31
< div layout ="row " flex ="nogrow ">
35
32
< md-button class ="md-primary " ng-click ="ctrl.handleDeleteReplicaSetDialog() ">
36
33
< md-icon class ="material-icons "> delete</ md-icon >
Original file line number Diff line number Diff line change 14
14
limitations under the License.
15
15
-->
16
16
17
- < md-dialog aria-label ="Create a new namespace " layout ="column " layout-padding >
18
- < md-content layout-padding >
17
+ < md-dialog aria-label ="Create a new namespace " layout ="column ">
18
+ < md-dialog- content layout-padding >
19
19
< h4 class ="md-title "> Set desired number of pods</ h4 >
20
- < p > Replica set {{ctrl.replicaSet}} will be updated to reflect the desired count.
21
- < br />
20
+ < div >
21
+ Replica set {{ctrl.replicaSet}} will be updated to reflect the desired count. < br />
22
22
< span class ="kd-updatereplicas-pod-status ">
23
23
Current status: {{ctrl.currentPods}}
24
24
created, {{ctrl.desiredPods}} desired
25
25
</ span >
26
- </ p >
26
+ </ div >
27
27
< form ng-submit ="ctrl.updateReplicas() ">
28
28
< md-input-container class ="md-block ">
29
29
< label > Number of pods</ label >
@@ -34,5 +34,5 @@ <h4 class="md-title">Set desired number of pods</h4>
34
34
< md-button class ="md-primary " type ="submit "> OK</ md-button >
35
35
</ md-dialog-actions >
36
36
</ form >
37
- </ md-content >
37
+ </ md-dialog- content >
38
38
</ md-dialog >
Original file line number Diff line number Diff line change 16
16
17
17
.md-fab {
18
18
& .kd-replicaset-deploy {
19
+ background-color : $secondary ;
19
20
position : fixed ;
20
21
right : 0 ;
21
22
top : $toolbar-height-size-base - $baseline-grid * 3.5 - $baseline-grid ;
23
+
24
+ & :not ([disabled ]) {
25
+ & :hover {
26
+ background-color : $hover-secondary ;
27
+ }
28
+ }
22
29
}
23
30
}
You can’t perform that action at this time.
0 commit comments