Skip to content

Commit

Permalink
Updates tokens in a final few files that were missed
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellamaki committed Oct 25, 2024
1 parent fab1f8c commit c91944d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion kolibri/core/assets/src/views/PermissionsIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
iconStyle() {
if (this.hasSuperAdminPermission) {
return {
fill: this.lightIcon ? this.$themePalette.yellow.v_400 : this.$themeTokens.superAdmin,
fill: this.lightIcon ? this.$themePalette.yellow.v_200 : this.$themeTokens.superAdmin,
};
} else {
return {
Expand Down
2 changes: 1 addition & 1 deletion kolibri/core/assets/src/views/ProgressBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
<div
class="progress-bar-wrapper"
:style="{ backgroundColor: $themePalette.grey.v_200 }"
:style="{ backgroundColor: $themePalette.grey.v_300 }"
role="progressbar"
aria-labelledby="progress-bar-label"
:aria-valuenow="percent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
return this.$computedClass({
':focus': this.$coreOutline,
':hover': {
backgroundColor: this.$themePalette.blue.v_200,
backgroundColor: this.$themePalette.blue.v_100,
},
});
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div
v-show="userDevicesUsingIE11"
class="alert"
:style="{ backgroundColor: $themePalette.yellow.v_200 }"
:style="{ backgroundColor: $themePalette.yellow.v_100 }"
>
<div style="display: flex">
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
return this.$computedClass({
':focus': this.$coreOutline,
':hover': {
backgroundColor: this.$themePalette.blue.v_200,
backgroundColor: this.$themePalette.blue.v_100,
},
});
},
Expand Down

0 comments on commit c91944d

Please sign in to comment.