forked from appsembler/xblock-video
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.10.1: Improve Safari UX; enhance Studio editor (#303)
* Bump __version__ to 0.10.0 * Catch API connection exception * Improve accordion transcripts switch UX in studio view (#300) * Add multiple transcripts downloading (#301) * Fix Safari empty transcripts issue * Fix empty transcripts generator case * Brightcove retranscode issue (#302) * Normalize retranscode studio editor section * Add Brightcove API retranscode error handling * Hide back transcripts download url * Prepare CHANGELOG.md for a new release * Bump __version__ to 0.10.1
- Loading branch information
1 parent
b859c69
commit abb7fae
Showing
17 changed files
with
232 additions
and
72 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 |
---|---|---|
|
@@ -50,7 +50,7 @@ def package_data(pkg, roots): | |
dependency_links=[ | ||
# At the moment of writing PyPI hosts outdated version of xblock-utils, hence git | ||
# Replace dependency links with numbered versions when it's released on PyPI | ||
'git+https://github.com/edx/[email protected].2#egg=xblock-utils-1.0.5', | ||
'git+https://github.com/edx/[email protected].5#egg=xblock-utils==1.0.5', | ||
], | ||
install_requires=[ | ||
'XBlock>=0.4.10,<2.0.0', | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,54 @@ | ||
/* Style the buttons that are used to open and close the accordion panel */ | ||
.accordion-btn { | ||
background-color: #eee; | ||
border: none; | ||
/*background-color: #eee;*/ | ||
border: 1px solid #009fe6; | ||
color: #444; | ||
cursor: pointer; | ||
padding: 18px; | ||
text-align: left; | ||
transition: 0.4s; | ||
transition: 1s; | ||
width: 100%; | ||
} | ||
|
||
.accordion-btn::after { | ||
content: '\002B'; | ||
content: 'OFF'; | ||
color: #777; | ||
font-weight: bold; | ||
float: right; | ||
margin-left: 5px; | ||
} | ||
|
||
.accordion-btn.active::after { | ||
content: "\2212"; | ||
content: "ON"; | ||
color: #0D6; | ||
} | ||
|
||
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */ | ||
.accordion-btn.active, .accordion-btn:hover { | ||
.accordion-btn.active { | ||
background-color: #009fe6; | ||
color: #fff; | ||
} | ||
|
||
.accordion-btn.active:hover { | ||
background-color: #009fe6; | ||
} | ||
|
||
.accordion-btn:hover { | ||
background-color: #0D6; | ||
} | ||
|
||
/* Style the accordion panel. Note: hidden by default */ | ||
.accordion-panel { | ||
max-height: 0; | ||
background-color: white; | ||
border: 1px solid #009fe6; | ||
display: none; | ||
border: none; | ||
display: block; | ||
overflow: hidden; | ||
padding: 0 18px; | ||
transition: max-height 0.2s ease-out; | ||
transition: max-height 1.5s; | ||
} | ||
|
||
.accordion-panel.active { | ||
display: block; | ||
border: 5px solid #009fe6; | ||
max-height: 1080px; | ||
} |
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
Oops, something went wrong.