Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ export default class ngbFeatureInfoMainController {
this.ngbFeatureInfoPanelService.saveInProgress = false;
this.ngbFeatureInfoPanelService.saveError = null;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
border-bottom: 1px solid #cccccc;
font-weight: bold;
}
ngb-feature-info-main{
ngb-feature-info-main {
[disabled] ng-md-icon {
fill: currentColor !important;
}

collapsible-panel-title{
font: 400 18px Arial;
text-transform: none;
Expand Down Expand Up @@ -45,12 +49,8 @@ ngb-feature-info-main{
}

.general-information-buttons {
margin: 0px;
margin: 0;
font-size: 14px;
color: #6699ff;
color: rgba(0, 0, 0, 0.87);
float: right;
}

.cancel-button {
color: #494949;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
<collapsible-panel-title>
General information
<md-button
class="general-information-buttons"
class="md-primary general-information-buttons"
ng-if="$ctrl.uuid && !$ctrl.editMode && $ctrl.isGeneralInfoOpen"
ng-click="$ctrl.onClickEditBtn($event)">
Edit
</md-button>
<md-button
class="general-information-buttons cancel-button"
class="general-information-buttons"
ng-if="$ctrl.editMode"
ng-click="$ctrl.onClickCancelBtn($event)">
Cancel
</md-button>
<md-button
class="general-information-buttons"
class="md-primary general-information-buttons"
ng-if="$ctrl.editMode"
ng-click="$ctrl.onClickSaveBtn($event)"
ng-disabled="$ctrl.disableSave || $ctrl.saveInProgress">
Expand Down