-
-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(wdc-2023): color variables: highlight, primary
- Loading branch information
Showing
20 changed files
with
64 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,13 @@ | ||
.ant-btn { | ||
@apply bg-sliderRail; | ||
&.btn-with-icon { | ||
@apply text-white text-opacity-70; | ||
@apply text-white text-opacity-70 bg-highlight bg-opacity-70 hover:text-white hover:bg-opacity-100 focus-visible:text-white focus-visible:bg-opacity-100; | ||
padding: 4px 15px !important; | ||
border: none; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
&:hover, | ||
&:focus { | ||
border-color: #d9d9d9; | ||
@apply bg-sliderTrack bg-opacity-70 text-white; | ||
} | ||
} | ||
|
||
.ant-btn-primary { | ||
background: $primary; | ||
border: lighten($primary, 3%); | ||
|
||
&:hover { | ||
background: lighten($primary, 3%); | ||
border: lighten($primary, 3%); | ||
} | ||
@apply bg-primary border-primary border-opacity-80 hover:bg-opacity-90 hover:border-opacity-90; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@import './variables'; | ||
@import './base'; | ||
@import './slider'; | ||
@import './switch'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
libs/web/shared/ui/tracks-loading/src/lib/tracks-loading.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<div *ngIf="avatar" class="flex gap-8"> | ||
<as-skeleton class="w-32 h-32 flex-shrink-0"></as-skeleton> | ||
<div class="flex flex-col flex-1 gap-4"> | ||
<as-skeleton class="w-full h-6"></as-skeleton> | ||
<as-skeleton class="w-full h-10"></as-skeleton> | ||
<as-skeleton class="w-full h-6"></as-skeleton> | ||
<as-skeleton class="w-full h-8"></as-skeleton> | ||
<as-skeleton class="w-full h-12"></as-skeleton> | ||
<as-skeleton class="w-full h-8"></as-skeleton> | ||
</div> | ||
</div> | ||
|
||
<div *ngIf="!avatar" class="flex flex-col gap-4"> | ||
<as-skeleton class="w-full h-6" *ngFor="let row of skeletonRows"></as-skeleton> | ||
<as-skeleton class="w-full h-8" *ngFor="let row of skeletonRows"></as-skeleton> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
libs/web/shell/ui/nav-links/src/lib/nav-link/nav-link.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
:host { | ||
@apply pt-4 flex flex-col min-h-0; | ||
} | ||
|
||
.separator { | ||
background-color: #282828; | ||
border: none; | ||
height: 1px; | ||
min-height: 1px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters