-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(FEC-12097): More plugins - Manage the UI & order of the plugin ic…
…ons (#688) solves: FEC-12097 & FEC-12500, FEC-12497, FEC-12538, FEC-12553 related pr: kaltura/playkit-js-ui-managers#10 in addition to the required changes from upper bar manager pr the following general UI bugs were fixed: FEC-12500, FEC-12497, FEC-12538, FEC-12553
- Loading branch information
1 parent
f6186f8
commit 01d2efa
Showing
9 changed files
with
65 additions
and
9 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
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 |
---|---|---|
|
@@ -61,7 +61,7 @@ | |
.custom-captions-applied { | ||
margin-top: 50px; | ||
a { | ||
color: #01accd; | ||
color: $brand-color-light; | ||
} | ||
} | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.upper-bar-icon { | ||
width: 36px; | ||
height: 36px; | ||
border-radius: 4px; | ||
padding: 2px; | ||
cursor: pointer; | ||
color: $tone-1; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
opacity: 0.8; | ||
border: none; | ||
background-color: transparent; | ||
margin: 0 4px; | ||
|
||
&:hover { | ||
background-color: $tone-4; | ||
opacity: 1; | ||
} | ||
|
||
&:focus { | ||
background-color: $tone-6; | ||
opacity: 1; | ||
} | ||
|
||
&:disabled { | ||
opacity: 0.4; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Sass variables exported using the npm package for plugins usage | ||
|
||
// New version - upcoming | ||
$tone-1: #ffffff; | ||
$tone-2: #cccccc; | ||
$tone-3: #999999; | ||
$tone-4: #888888; | ||
$tone-5: #666666; | ||
$tone-6: #444444; | ||
$tone-7: #222222; | ||
$tone-8: #000000; |
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