File tree Expand file tree Collapse file tree 8 files changed +25
-11
lines changed Expand file tree Collapse file tree 8 files changed +25
-11
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ $headline-font-size-base: rem(2.4) !default;
24
24
$subhead-font-size-base : rem (1.6 ) !default ;
25
25
$body-font-size-base : rem (1.4 ) !default ;
26
26
$caption-font-size-base : rem (1.2 ) !default ;
27
+ $toolbar-height-size-base : rem (6.4 ) !default ;
27
28
28
29
$primary : #326de6 ;
29
30
$warning : #ffa500 ;
Original file line number Diff line number Diff line change 22
22
23
23
.kd-toolbar {
24
24
box-shadow : $whiteframe-shadow-1dp ;
25
+ height : $toolbar-height-size-base ;
26
+ position : fixed ;
25
27
}
26
28
27
29
body {
38
40
}
39
41
}
40
42
41
- .kd-toolbar-tools ,
42
- .kd-app-content-wrapper {
43
+ .kd-toolbar-tools {
43
44
margin : 0 auto ;
44
45
}
45
46
47
+ .kd-app-content-wrapper {
48
+ margin-top : $toolbar-height-size-base ;
49
+ }
50
+
46
51
.kd-app-content {
47
52
position : relative ;
48
53
}
Original file line number Diff line number Diff line change 79
79
</ kd-help-section >
80
80
81
81
< kd-help-section >
82
- < md-switch ng-model ="ctrl.isExternal " class ="md-primary "
82
+ < md-checkbox ng-model ="ctrl.isExternal " class ="md-primary "
83
83
ng-model-options ="{ debounce: { 'default': 500, 'blur': 0 } } ">
84
84
Expose service externally
85
- </ md-switch >
85
+ </ md-checkbox >
86
86
</ kd-help-section >
87
87
88
88
< div ng-show ="ctrl.isMoreOptionsEnabled() ">
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ <h1 flex class="md-title kd-replicasetdetail-app-name">
29
29
</ div >
30
30
< div flex layout ="column " class ="kd-replicasetdetail-sidebar-item ">
31
31
< span class ="kd-replicasetdetail-sidebar-title kd-replicasetdetail-sidebar-info ">
32
- Replica set
32
+ Replica Set
33
33
</ span >
34
34
< div layout ="row " flex ="nogrow ">
35
35
< md-button class ="md-primary " ng-click ="ctrl.handleDeleteReplicaSetDialog() ">
Original file line number Diff line number Diff line change 15
15
-->
16
16
17
17
< div >
18
- {{::endpoint.host}}
19
18
< span ng-repeat ="port in ::endpoint.ports ">
20
- {{::port.port}}/{{::port.protocol}}< span ng-if ="::!$last "> ,</ span >
19
+ {{::endpoint.host}}:{{::port.port}} {{::port.protocol}}
20
+ < br ng-if ="::!$last ">
21
21
</ span >
22
22
</ div >
Original file line number Diff line number Diff line change 32
32
.kd-replicaset-card-title {
33
33
font-weight : $regular-font-weight ;
34
34
margin : 0 ;
35
+
36
+ & :hover {
37
+ text-decoration : underline ;
38
+ }
35
39
}
36
40
37
41
.kd-replicaset-card-description {
67
71
}
68
72
69
73
.kd-replicaset-card-section {
70
- margin-top : 2 * $baseline-grid ;
74
+ margin-top : $baseline-grid ;
75
+ padding-right : $baseline-grid / 2 ;
71
76
}
72
77
73
78
.kd-replicaset-card-section-title {
Original file line number Diff line number Diff line change 16
16
17
17
.md-fab {
18
18
& .kd-replicaset-deploy {
19
- position : absolute ;
19
+ position : fixed ;
20
20
right : 0 ;
21
- top : -56 px / 2 - $baseline-grid ;
21
+ top : $toolbar-height-size-base - $baseline-grid * 3.5 - $baseline-grid ;
22
22
}
23
23
}
Original file line number Diff line number Diff line change 10
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
- // limitations under the License.
13
+ // limitations under the License.
14
+
15
+ @import ' ../variables' ;
14
16
15
17
.kd-replica-set-list-container {
16
18
align-content : center ;
17
19
align-items : center ;
18
20
display : flex ;
19
21
flex-flow : column wrap ;
20
22
justify-content : top ;
23
+ margin-top : $toolbar-height-size-base ;
21
24
}
You can’t perform that action at this time.
0 commit comments