Skip to content

Commit

Permalink
Fixes based on the code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mghenciu committed Sep 12, 2023
1 parent 7668614 commit 108a699
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/dashboard/style.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
@import "../blocks/plugins/feedback/editor.scss";

:root {
--main-link-color: #2271b1;
}

* {
box-sizing: inherit;
}
Expand Down Expand Up @@ -31,6 +27,8 @@
}

#otter {
--main-link-color: #2271b1;

.components-button {
&.is-primary {
--wp-admin-theme-color: #ed6f57;
Expand Down Expand Up @@ -524,8 +522,16 @@
background-color: var(--main-link-color);
}

.components-textarea-control__input:focus,
.components-text-control__input:focus {
#o-feedback {
box-shadow: inset 0 0 0 1px var(--main-link-color);
color: var(--main-link-color);

&:focus {
box-shadow: inset 0 0 0 1.5px var(--main-link-color);
}
}

:is(.components-textarea-control__input, .components-text-control__input):focus {
border-color: var(--main-link-color);
box-shadow: 0 0 0 1px var(--main-link-color);
}
Expand Down

0 comments on commit 108a699

Please sign in to comment.