Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw committed Dec 14, 2023
1 parent aee6734 commit ed3a3ba
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 23 deletions.
4 changes: 2 additions & 2 deletions starsky/starsky/clientapp/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const config: StorybookConfig = {
autodocs: "tag"
},
core: {
disableTelemetry: true, // 👈 Disables telemetry
},
disableTelemetry: true // 👈 Disables telemetry
}
};
export default config;
3 changes: 1 addition & 2 deletions starsky/starsky/clientapp/src/localization/localization.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,11 @@
"nl": "Rotatie naar rechts"
},
"MessageDeleteImmediately": {
"en": "Delete immediately",
"en": "Delete immediately",
"nl": "Verwijder onmiddellijk"
},
"temp1": {
"en": "",
"nl": ""
}

}
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
/* not loaded at the moment */

.btn-danger {
color: #fff;
background-color: #BF360C;
border-color: #B71C1C;
color: #fff;
background-color: #bf360c;
border-color: #b71c1c;
}
.btn-warning {
color: #212529;
background-color: #ffc107;
border-color: #ffc107;
color: #212529;
background-color: #ffc107;
border-color: #ffc107;
}

.btn-info {
color: #007bff;
background-color: #EBEBEB;
color: #007bff;
background-color: #ebebeb;
}
.btn-secondary {
text-decoration: none;
color: #fff;
background-color: #5a6268;
border-color: #545b62;
text-decoration: none;
color: #fff;
background-color: #5a6268;
border-color: #545b62;
}
4 changes: 2 additions & 2 deletions starsky/starsky/clientapp/src/style/css/10-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
}

.header .item.item--continue:focus {
box-shadow:inset 0px 0px 0px 3px #283593;
box-shadow: inset 0px 0px 0px 3px #283593;
}

.header > .wrapper > .item.disabled {
Expand Down Expand Up @@ -314,7 +314,7 @@
.header--sidebar .item.item--close {
color: #000;
margin-left: 5px;
padding-right:5px;
padding-right: 5px;
}

.header--sidebar .item.item--close .autosave {
Expand Down
8 changes: 4 additions & 4 deletions starsky/starsky/clientapp/src/style/css/12-menu-context.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@
}

.menu-context .menu-options .menu-option .droparea-file-input:focus + label {
background: transparent;
border: 3px solid #283593;
padding:15px;
border-radius: 0px;
background: transparent;
border: 3px solid #283593;
padding: 15px;
border-radius: 0px;
}

@media (prefers-color-scheme: dark) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,3 @@
.search-header .menu-item:nth-child(2n) {
background-color: #607d8b;
}

0 comments on commit ed3a3ba

Please sign in to comment.