mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-02-04 14:32:59 -05:00
3287 lines
91 KiB
CSS
3287 lines
91 KiB
CSS
.tooltip-box {
|
|
position: absolute;
|
|
padding: 10px;
|
|
z-index: 100;
|
|
background: #fff;
|
|
-moz-border-radius: 8px;
|
|
border-radius: 8px;
|
|
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-10px);
|
|
-moz-transform: translateY(-10px);
|
|
-ms-transform: translateY(-10px);
|
|
transform: translateY(-10px);
|
|
-webkit-transition:
|
|
opacity 0.3s ease,
|
|
-webkit-transform 0.3s ease;
|
|
transition:
|
|
opacity 0.3s ease,
|
|
-webkit-transform 0.3s ease;
|
|
-moz-transition:
|
|
opacity 0.3s ease,
|
|
transform 0.3s ease,
|
|
-moz-transform 0.3s ease;
|
|
transition:
|
|
opacity 0.3s ease,
|
|
transform 0.3s ease;
|
|
transition:
|
|
opacity 0.3s ease,
|
|
transform 0.3s ease,
|
|
-webkit-transform 0.3s ease,
|
|
-moz-transform 0.3s ease;
|
|
}
|
|
.tooltip-box.show {
|
|
opacity: 1;
|
|
-webkit-transform: translateY(0);
|
|
-moz-transform: translateY(0);
|
|
-ms-transform: translateY(0);
|
|
transform: translateY(0);
|
|
}
|
|
.tooltip-box.hide {
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-10px);
|
|
-moz-transform: translateY(-10px);
|
|
-ms-transform: translateY(-10px);
|
|
transform: translateY(-10px);
|
|
}
|
|
.tooltip-title {
|
|
color: #333;
|
|
font-size: 14px;
|
|
margin-bottom: 5px;
|
|
}
|
|
.tooltip-content {
|
|
color: #666;
|
|
font-size: 12px;
|
|
}
|
|
.comments-form-inner .form .form-textarea-wrap {
|
|
border-color: var(--comments-textarea-wrapper-border-color);
|
|
}
|
|
.comments-form-inner .form .form-textarea-wrap:after {
|
|
background-color: var(--comments-textarea-wrapper-after-bg-color);
|
|
}
|
|
.comments-form-inner .form .form-textarea,
|
|
.comments-form-inner .form .form-textarea__input,
|
|
.comments-form-inner .form .form-textarea__suggestions__list {
|
|
color: var(--comments-textarea-text-color);
|
|
}
|
|
.comments-form-inner .form .form-textarea:placeholder,
|
|
.comments-form-inner .form .form-textarea__input:placeholder,
|
|
.comments-form-inner .form .form-textarea__suggestions__list:placeholder {
|
|
color: var(--comments-textarea-text-placeholder-color);
|
|
}
|
|
.comments-form-inner .form .form-textarea__suggestions__list {
|
|
background-color: var(--body-bg-color);
|
|
}
|
|
.comments-form-inner .form strong {
|
|
background-color: var(--comment-text-mentions-background-color-highlight);
|
|
}
|
|
.comments-list-inner {
|
|
border-color: var(--comments-list-inner-border-color);
|
|
}
|
|
.comment-author {
|
|
color: var(--comment-author-text-color);
|
|
}
|
|
.comment-author a {
|
|
color: var(--comment-author-text-color);
|
|
}
|
|
.comment-date {
|
|
color: var(--comment-date-text-color);
|
|
-webkit-text-decoration-color: var(--comment-date-text-color);
|
|
-moz-text-decoration-color: var(--comment-date-text-color);
|
|
text-decoration-color: var(--comment-date-text-color);
|
|
}
|
|
.comment-date a {
|
|
color: var(--comment-date-text-color);
|
|
-webkit-text-decoration-color: var(--comment-date-text-color);
|
|
-moz-text-decoration-color: var(--comment-date-text-color);
|
|
text-decoration-color: var(--comment-date-text-color);
|
|
}
|
|
.comment-date a:hover {
|
|
color: var(--comment-date-hover-text-color);
|
|
-webkit-text-decoration-color: var(--comment-date-hover-text-color);
|
|
-moz-text-decoration-color: var(--comment-date-hover-text-color);
|
|
text-decoration-color: var(--comment-date-hover-text-color);
|
|
}
|
|
.comment-text {
|
|
color: var(--comment-text-color);
|
|
}
|
|
.comment-actions button:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.comment-actions .circle-icon-button {
|
|
background-color: var(--body-bg-color);
|
|
}
|
|
.comment-actions .material-icons:hover,
|
|
.comment-actions .material-icons:focus {
|
|
color: var(--comment-actions-material-icon-text-color);
|
|
}
|
|
.comment-actions .likes-num,
|
|
.comment-actions .dislikes-num {
|
|
color: var(--comment-actions-likes-num-text-color);
|
|
}
|
|
.comment-actions .reply-comment > button {
|
|
color: var(--comment-actions-reply-button-text-color);
|
|
background: none;
|
|
}
|
|
.comment-actions .reply-comment > button:hover,
|
|
.comment-actions .reply-comment > button:focus {
|
|
color: var(--comment-actions-reply-button-hover-text-color);
|
|
}
|
|
.comment-actions .reply-comment > button:hover .material-icons,
|
|
.comment-actions .reply-comment > button:focus .material-icons {
|
|
color: var(--comment-actions-reply-button-hover-text-color);
|
|
}
|
|
.comment-actions .remove-comment .popup-message-bottom button.cancel-comment-removal {
|
|
color: var(--comment-actions-cancel-removal-button-text-color);
|
|
}
|
|
.comment-actions .remove-comment .popup-message-bottom button.cancel-comment-removal:hover,
|
|
.comment-actions .remove-comment .popup-message-bottom button.cancel-comment-removal:focus {
|
|
color: var(--comment-actions-cancel-removal-button-hover-text-color);
|
|
}
|
|
.comment-actions .remove-comment .popup-message-bottom button.cancel-comment-removal:hover .material-icons,
|
|
.comment-actions .remove-comment .popup-message-bottom button.cancel-comment-removal:focus .material-icons {
|
|
color: var(--comment-actions-cancel-removal-button-hover-text-color);
|
|
}
|
|
.comments-form {
|
|
position: relative;
|
|
margin: 0 0 1.5rem;
|
|
}
|
|
.comments-form-inner {
|
|
min-height: 40px;
|
|
}
|
|
.comments-form-inner .thumbnail {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin: 0;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.comments-form-inner .form {
|
|
position: relative;
|
|
width: 100%;
|
|
padding-left: 56px;
|
|
}
|
|
.comments-form-inner .form .form-textarea-wrap {
|
|
position: relative;
|
|
display: block;
|
|
padding: 0 0 0.3em;
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
}
|
|
.comments-form-inner .form .form-textarea-wrap:after {
|
|
content: " ";
|
|
display: block;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
position: absolute;
|
|
bottom: -1px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
-webkit-transition: opacity 0.2s;
|
|
-moz-transition: opacity 0.2s;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.comments-form-inner .form .form-textarea-wrap.focused:after {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
.comments-form-inner .form .form-textarea,
|
|
.comments-form-inner .form .form-textarea__input {
|
|
position: relative;
|
|
resize: none;
|
|
display: block;
|
|
min-width: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
outline: 0;
|
|
border-style: solid;
|
|
border: 0;
|
|
min-height: 20px;
|
|
height: auto;
|
|
text-decoration: none;
|
|
overflow-y: hidden;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
vertical-align: baseline;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
background-color: rgba(0, 0, 0, 0);
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
line-height: 21px;
|
|
}
|
|
.comments-form-inner .form .form-textarea:placeholder,
|
|
.comments-form-inner .form .form-textarea__input:placeholder {
|
|
font-size: 15px;
|
|
font-weight: 300;
|
|
}
|
|
.comments-form-inner .form .form-textarea:focus,
|
|
.comments-form-inner .form .form-textarea__input:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.comments-form-inner .form a.form-textarea-wrap {
|
|
text-decoration: none;
|
|
}
|
|
.comments-form-inner .form a.form-textarea-wrap:focus {
|
|
outline: 1px dotted rgba(10, 10, 10, 0.5);
|
|
}
|
|
.comments-form-inner .form a.form-textarea-wrap .form-textarea,
|
|
.comments-form-inner .form a.form-textarea-wrap .form-textarea__input {
|
|
opacity: 0.5;
|
|
}
|
|
.comments-form-inner .form .form-buttons {
|
|
margin-top: 8px;
|
|
text-align: right;
|
|
}
|
|
.comments-form-inner .form .form-buttons a,
|
|
.comments-form-inner .form .form-buttons button {
|
|
display: inline-block;
|
|
padding: 12px 16px 10px;
|
|
margin-left: 8px;
|
|
line-height: 1;
|
|
font-weight: 400;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
border: 0;
|
|
-moz-border-radius: 1px;
|
|
border-radius: 1px;
|
|
}
|
|
.comments-form-inner .form .form-buttons a.disabled,
|
|
.comments-form-inner .form .form-buttons button.disabled {
|
|
opacity: 0.2;
|
|
}
|
|
.comments-list {
|
|
white-space: pre-wrap;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
.comments-list-inner {
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
padding-top: 16px;
|
|
margin-bottom: 8px;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.comments-list-inner {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.comments-list-inner {
|
|
padding-top: 24px;
|
|
margin-bottom: 0;
|
|
border-bottom: 0;
|
|
border-top-width: 1px;
|
|
border-top-style: solid;
|
|
}
|
|
}
|
|
.comments-list-inner h2 {
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
margin: 0 2rem 1.5rem 0;
|
|
}
|
|
.comments-list-inner .disabled-comments-msg {
|
|
display: block;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.ratings-container + .comments-list .comments-list-inner {
|
|
margin-top: -16px;
|
|
border-top-width: 0;
|
|
}
|
|
.comment-replies-inner {
|
|
display: inline-block;
|
|
}
|
|
.comment {
|
|
position: relative;
|
|
width: 100%;
|
|
display: inline-block;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.comment-inner {
|
|
position: relative;
|
|
}
|
|
.comment-author-thumb {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
-moz-border-radius: 9999px;
|
|
border-radius: 9999px;
|
|
}
|
|
.comment-author-thumb img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
.comment-content {
|
|
position: relative;
|
|
width: auto;
|
|
margin: 0 0 0 56px;
|
|
display: inline-block;
|
|
}
|
|
.comment-content .toggle-more {
|
|
padding: 0;
|
|
margin: 8px 0 0 0;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
overflow-wrap: break-word;
|
|
border: 0;
|
|
}
|
|
.comment-meta {
|
|
display: block;
|
|
margin-bottom: 2px;
|
|
}
|
|
.comment-author {
|
|
display: inline-block;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
line-height: 18px;
|
|
margin: 0 4px 2px 0;
|
|
}
|
|
.comment-author a {
|
|
text-decoration: none;
|
|
}
|
|
.comment-date {
|
|
display: inline-block;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
}
|
|
.comment-date a {
|
|
text-transform: none;
|
|
}
|
|
.comment-text {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
white-space: pre-wrap;
|
|
overflow: hidden;
|
|
max-height: 100px;
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.comment-text {
|
|
max-height: 80px;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1216px) {
|
|
.comment-text {
|
|
max-height: 60px;
|
|
}
|
|
}
|
|
.comment-text.show-all {
|
|
max-height: 100%;
|
|
}
|
|
.comment-text strong {
|
|
font-weight: 500;
|
|
}
|
|
.comment-text a {
|
|
text-decoration: none;
|
|
}
|
|
.comment-text a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.comment-text p {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0.5rem 0;
|
|
}
|
|
.comment-text p:empty {
|
|
display: none;
|
|
}
|
|
.comment-actions {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
margin-top: 4px;
|
|
color: #909090;
|
|
}
|
|
.comment-actions .circle-icon-button {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
.comment-actions .material-icons {
|
|
color: #909090;
|
|
font-size: 16px;
|
|
margin-bottom: 2px;
|
|
}
|
|
.comment-actions .comment-action {
|
|
display: inline-block;
|
|
}
|
|
.comment-actions .comment-action ~ * {
|
|
margin-left: 8px;
|
|
}
|
|
.comment-actions .likes-num,
|
|
.comment-actions .dislikes-num {
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
}
|
|
.comment-actions .reply-comment > button,
|
|
.comment-actions .remove-comment > button {
|
|
padding: 8px 16px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
font-weight: 400;
|
|
line-height: 15px;
|
|
border: 0;
|
|
-moz-border-radius: 1px;
|
|
border-radius: 1px;
|
|
}
|
|
.comment-actions .remove-comment {
|
|
position: relative;
|
|
width: auto;
|
|
margin-top: 0.5rem;
|
|
}
|
|
.comment-actions .remove-comment > button {
|
|
color: #fff;
|
|
}
|
|
.comment-actions .remove-comment .popup {
|
|
position: absolute;
|
|
bottom: 100%;
|
|
left: 0;
|
|
margin-bottom: 8px;
|
|
}
|
|
.comment-actions .remove-comment .popup .popup-message-bottom button {
|
|
position: relative;
|
|
width: auto;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
.comment-actions .remove-comment .popup .popup-message-bottom button.cancel-comment-removal,
|
|
.comment-actions .remove-comment .popup .popup-message-bottom button.proceed-comment-removal {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.comment-actions .remove-comment .popup .popup-message-bottom button.proceed-comment-removal {
|
|
float: right;
|
|
}
|
|
.comment-actions .remove-comment .popup .popup-message-bottom button.cancel-comment-removal {
|
|
float: left;
|
|
}
|
|
.playlist-form-field.playlist-title.focused:after,
|
|
.playlist-form-field.playlist-description.focused:after {
|
|
background-color: var(--playlist-form-title-focused-bg-color);
|
|
}
|
|
.playlist-privacy {
|
|
border-color: var(--playlist-privacy-border-color);
|
|
}
|
|
.playlist-form-wrap .playlist-form-actions button.cancel-btn {
|
|
color: var(--playlist-form-cancel-button-text-color);
|
|
}
|
|
.playlist-form-wrap .playlist-form-actions button.cancel-btn:hover,
|
|
.playlist-form-wrap .playlist-form-actions button.cancel-btn:focus {
|
|
color: var(--playlist-form-cancel-button-hover-text-color);
|
|
}
|
|
.playlist-form-wrap textarea,
|
|
.playlist-form-wrap input[type="text"] {
|
|
color: var(--playlist-form-field-text-color);
|
|
border-color: var(--playlist-form-field-border-color);
|
|
}
|
|
.playlist-form-wrap textarea:focus,
|
|
.playlist-form-wrap input[type="text"]:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.playlist-form-field.playlist-title,
|
|
.playlist-form-field.playlist-description {
|
|
position: relative;
|
|
}
|
|
.playlist-form-field.playlist-title.focused:after,
|
|
.playlist-form-field.playlist-description.focused:after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: -1px;
|
|
width: 100%;
|
|
height: 2px;
|
|
display: block;
|
|
}
|
|
.playlist-form-field.playlist-title.invalid:after,
|
|
.playlist-form-field.playlist-description.invalid:after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: -1px;
|
|
width: 100%;
|
|
height: 2px;
|
|
display: block;
|
|
background-color: rgba(255, 0, 0, 0.8);
|
|
}
|
|
.playlist-privacy {
|
|
padding-bottom: 12px;
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
}
|
|
.playlist-form-wrap .playlist-form-field {
|
|
position: relative;
|
|
margin: 0 24px;
|
|
margin-top: 16px;
|
|
}
|
|
.playlist-form-wrap .playlist-form-label {
|
|
display: block;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
letter-spacing: 0.132px;
|
|
}
|
|
.playlist-form-wrap .playlist-form-actions {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
float: left;
|
|
margin-top: 4px;
|
|
padding: 8px;
|
|
}
|
|
.playlist-form-wrap .playlist-form-actions button {
|
|
height: 40px;
|
|
padding: 10px 16px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
letter-spacing: 0.007px;
|
|
font-weight: 500;
|
|
border-width: 0;
|
|
background: none;
|
|
position: relative;
|
|
width: auto;
|
|
float: left;
|
|
}
|
|
.playlist-form-wrap .playlist-form-actions button.create-btn {
|
|
float: right;
|
|
color: var(--theme-color, var(--default-theme-color));
|
|
}
|
|
.playlist-form-wrap label,
|
|
.playlist-form-wrap textarea,
|
|
.playlist-form-wrap input[type="text"] {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.playlist-form-wrap textarea {
|
|
min-width: 100%;
|
|
max-width: 100%;
|
|
min-height: 21px;
|
|
height: 24px;
|
|
line-height: 21px;
|
|
overflow-y: hidden;
|
|
overflow-wrap: break-word;
|
|
vertical-align: baseline;
|
|
resize: none;
|
|
}
|
|
.playlist-form-wrap textarea,
|
|
.playlist-form-wrap input[type="text"] {
|
|
padding: 0px 0 2px 0;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
border-width: 0 0 1px;
|
|
background: none;
|
|
outline: 0;
|
|
}
|
|
.playlist-form-wrap textarea::-webkit-input-placeholder,
|
|
.playlist-form-wrap input[type="text"]::-webkit-input-placeholder {
|
|
color: #909090;
|
|
opacity: 1;
|
|
}
|
|
.playlist-form-wrap textarea::-moz-placeholder,
|
|
.playlist-form-wrap input[type="text"]::-moz-placeholder {
|
|
color: #909090;
|
|
opacity: 1;
|
|
}
|
|
.playlist-form-wrap textarea:-ms-input-placeholder,
|
|
.playlist-form-wrap input[type="text"]:-ms-input-placeholder {
|
|
color: #909090;
|
|
opacity: 1;
|
|
}
|
|
.playlist-form-wrap textarea::-ms-input-placeholder,
|
|
.playlist-form-wrap input[type="text"]::-ms-input-placeholder {
|
|
color: #909090;
|
|
opacity: 1;
|
|
}
|
|
.playlist-form-wrap textarea::placeholder,
|
|
.playlist-form-wrap input[type="text"]::placeholder {
|
|
color: #909090;
|
|
opacity: 1;
|
|
}
|
|
.playlist-form-wrap textarea:-ms-input-placeholder,
|
|
.playlist-form-wrap input[type="text"]:-ms-input-placeholder {
|
|
color: #909090;
|
|
}
|
|
.playlist-form-wrap textarea::-ms-input-placeholder,
|
|
.playlist-form-wrap input[type="text"]::-ms-input-placeholder {
|
|
color: #909090;
|
|
}
|
|
.playlist-form-wrap input[type="radio"] {
|
|
margin-right: 16px;
|
|
vertical-align: middle;
|
|
}
|
|
.playlist-form-wrap label {
|
|
padding: 4px 0;
|
|
font-size: 14px;
|
|
line-height: 21px;
|
|
cursor: pointer;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup {
|
|
color: var(--playlist-save-popup-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-select,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-create,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-new-playlist {
|
|
border-color: var(--playlist-save-popup-border-color);
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-title
|
|
.circle-icon-button:hover,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-title
|
|
.circle-icon-button:focus,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-title
|
|
.circle-icon-button:active {
|
|
color: var(--playlist-save-popup-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-create {
|
|
color: var(--playlist-save-popup-text-color);
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-create
|
|
.material-icons {
|
|
color: var(--playlist-save-popup-create-icon-text-color);
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-create:focus
|
|
> * {
|
|
background-color: var(--playlist-save-popup-create-focus-bg-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen {
|
|
padding-top: 64px;
|
|
padding-bottom: 8px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup {
|
|
max-width: 280px;
|
|
padding: 0;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-select,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-create,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-new-playlist {
|
|
border-width: 1px 0 0;
|
|
border-style: solid;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-title {
|
|
height: 52px;
|
|
padding: 16px 52px 15px 24px;
|
|
line-height: 20px;
|
|
font-size: 16px;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-title
|
|
.circle-icon-button {
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 6px;
|
|
background: none;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-select {
|
|
overflow: auto;
|
|
padding: 12px 18px 12px 24px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-select > * {
|
|
width: 100%;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-select label {
|
|
position: relative;
|
|
display: table;
|
|
width: 100%;
|
|
padding: 4px 0;
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
cursor: pointer;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-select
|
|
label
|
|
> * {
|
|
display: table-cell;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-select
|
|
label
|
|
input[type="checkbox"] {
|
|
display: inline-block;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-select
|
|
label
|
|
span {
|
|
width: 100%;
|
|
padding: 0 4px 0 16px;
|
|
text-align: initial;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-select
|
|
label
|
|
.material-icons {
|
|
width: 18px;
|
|
padding-top: 4px;
|
|
text-align: right;
|
|
font-size: 18px;
|
|
vertical-align: top;
|
|
color: #909090;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-create {
|
|
width: 100%;
|
|
height: 52px;
|
|
font-size: 14px;
|
|
line-height: 21px;
|
|
text-align: initial;
|
|
background: none;
|
|
-moz-border-radius: 0;
|
|
border-radius: 0;
|
|
}
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div.saveto-popup .saveto-create > * {
|
|
padding: 0 24px;
|
|
-moz-border-radius: 0;
|
|
border-radius: 0;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.save
|
|
.popup-fullscreen
|
|
.popup-main
|
|
> div.saveto-popup
|
|
.saveto-create
|
|
.material-icons {
|
|
margin-right: 16px;
|
|
}
|
|
.playlist-view {
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
.dark_theme .playlist-view {
|
|
border: 1px solid hsla(0, 0%, 100%, 0.1);
|
|
}
|
|
.playlist-view .playlist-header {
|
|
background-color: var(--playlist-view-header-bg-color);
|
|
}
|
|
.playlist-view .playlist-header .toggle-playlist-view {
|
|
color: var(--playlist-view-header-toggle-text-color);
|
|
background-color: var(--playlist-view-header-toggle-bg-color);
|
|
}
|
|
.playlist-view .playlist-title a {
|
|
color: var(--playlist-view-title-link-text-color);
|
|
}
|
|
.playlist-view .playlist-meta {
|
|
color: var(--playlist-view-meta-text-color);
|
|
}
|
|
.playlist-view .playlist-meta .counter {
|
|
color: var(--item-meta-text-color);
|
|
}
|
|
.playlist-view .playlist-meta a {
|
|
color: var(--playlist-view-meta-link-color);
|
|
}
|
|
.playlist-view .playlist-meta a:hover {
|
|
color: var(--playlist-view-meta-link-hover-text-color);
|
|
}
|
|
.playlist-view .playlist-status {
|
|
color: var(--playlist-view-status-text-color);
|
|
background-color: var(--playlist-view-status-bg-color);
|
|
}
|
|
.playlist-view .playlist-status .material-icons {
|
|
color: var(--playlist-view-status-icon-text-color);
|
|
}
|
|
.playlist-view .playlist-actions {
|
|
background-color: var(--playlist-view-actions-bg-color);
|
|
}
|
|
.playlist-view .playlist-actions .circle-icon-button {
|
|
background-color: var(--playlist-view-actions-bg-color);
|
|
}
|
|
.playlist-view .playlist-media {
|
|
background-color: var(--playlist-view-media-bg-color);
|
|
}
|
|
.playlist-view .playlist-media .item-order-number {
|
|
color: var(--playlist-view-media-order-number-color);
|
|
}
|
|
.playlist-view .playlist-media .item-main {
|
|
line-height: 1;
|
|
}
|
|
.playlist-view .playlist-media .item-main h3 {
|
|
color: var(--playlist-view-item-title-text-color);
|
|
}
|
|
.playlist-view .playlist-media .item-main h3 span {
|
|
line-height: var(--playlist-item-title-line-height);
|
|
max-height: -webkit-calc(var(--horizontal-item-title-max-lines) * var(--playlist-item-title-line-height));
|
|
max-height: -moz-calc(var(--horizontal-item-title-max-lines) * var(--playlist-item-title-line-height));
|
|
max-height: calc(var(--horizontal-item-title-max-lines) * var(--playlist-item-title-line-height));
|
|
background-color: var(--playlist-view-media-bg-color);
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.playlist-view .playlist-media .item-meta {
|
|
line-height: 1.230769231em;
|
|
color: var(--item-meta-text-color);
|
|
}
|
|
.playlist-view-wrap {
|
|
position: relative;
|
|
display: block;
|
|
margin-bottom: 24px;
|
|
}
|
|
.playlist-view {
|
|
display: block;
|
|
}
|
|
.playlist-view a {
|
|
text-decoration: none;
|
|
}
|
|
.playlist-view .playlist-header {
|
|
position: relative;
|
|
padding: 12px 16px;
|
|
}
|
|
.playlist-view .playlist-header .toggle-playlist-view {
|
|
position: absolute;
|
|
top: 15px;
|
|
right: 17px;
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
.playlist-view.playlist-expanded-view .playlist-header {
|
|
padding-bottom: 0;
|
|
}
|
|
.playlist-view .playlist-title {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
}
|
|
.playlist-view .playlist-meta {
|
|
margin-top: 4px;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
}
|
|
.playlist-view .playlist-status {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-right: 8px;
|
|
padding: 2px 4px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
line-height: 12px;
|
|
-moz-border-radius: 2px;
|
|
border-radius: 2px;
|
|
}
|
|
.playlist-view .playlist-status .material-icons {
|
|
font-size: 13px;
|
|
display: inline-block;
|
|
margin: 0 3px 0 0;
|
|
}
|
|
.playlist-view .playlist-status div {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
.playlist-view .playlist-status div:first-letter {
|
|
text-transform: capitalize;
|
|
}
|
|
.playlist-view .playlist-actions {
|
|
padding: 0 16px 0 8px;
|
|
}
|
|
.playlist-view .playlist-actions .circle-icon-button {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
}
|
|
.playlist-view .playlist-actions .circle-icon-button.active {
|
|
color: var(--theme-color, var(--default-theme-color));
|
|
}
|
|
.playlist-view .playlist-actions .circle-icon-button.add-to-playlist {
|
|
float: right;
|
|
}
|
|
.playlist-view .playlist-actions .circle-icon-button:first-child {
|
|
margin-left: 0;
|
|
}
|
|
.playlist-view .playlist-media {
|
|
max-height: 415px;
|
|
padding: 4px 0;
|
|
overflow: auto;
|
|
}
|
|
.playlist-view .playlist-media .items-list-outer {
|
|
max-width: 100%;
|
|
}
|
|
.playlist-view .playlist-media .item {
|
|
position: relative;
|
|
padding: 4px 8px 4px 28px;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
-webkit-transition: background-color 0.05s linear;
|
|
-moz-transition: background-color 0.05s linear;
|
|
transition: background-color 0.05s linear;
|
|
}
|
|
.playlist-view .playlist-media .item:hover,
|
|
.playlist-view .playlist-media .item.pl-active-item {
|
|
background-color: var(--nav-menu-item-hover-bg-color);
|
|
}
|
|
.playlist-view .playlist-media .item-order-number {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
display: block;
|
|
width: 28px;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
}
|
|
.playlist-view .playlist-media .item-order-number > div {
|
|
display: table;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.playlist-view .playlist-media .item-order-number > div > div {
|
|
display: table-cell;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
.playlist-view .playlist-media .item-order-number .material-icons {
|
|
font-size: 17px;
|
|
}
|
|
.playlist-view .playlist-media .items-list-wrap {
|
|
min-height: 64px;
|
|
}
|
|
.playlist-view .playlist-media .item-content {
|
|
padding-left: 100px !important;
|
|
}
|
|
.playlist-view .playlist-media .item-thumb {
|
|
width: 100px !important;
|
|
height: 56px !important;
|
|
}
|
|
.playlist-view .playlist-media .item-main {
|
|
width: auto;
|
|
display: block;
|
|
min-height: 56px !important;
|
|
}
|
|
.playlist-view .playlist-media .item-main .item-content-link {
|
|
float: left;
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
.playlist-view .playlist-media .item-main h3 {
|
|
position: relative;
|
|
float: left;
|
|
width: 100%;
|
|
margin: 0 !important;
|
|
}
|
|
.visible-sidebar .page-main-wrap {
|
|
padding-left: 0;
|
|
}
|
|
.media-author-actions .popup-message-bottom button.cancel-comment-removal {
|
|
color: var(--media-author-actions-popup-bottom-cancel-removal-button-text-color);
|
|
}
|
|
.media-author-actions .popup-message-bottom button.cancel-comment-removal:hover,
|
|
.media-author-actions .popup-message-bottom button.cancel-comment-removal:focus {
|
|
color: var(--media-author-actions-popup-bottom-cancel-removal-button-hover-text-color);
|
|
}
|
|
.media-author-actions .popup-message-bottom button.cancel-comment-removal:hover .material-icons,
|
|
.media-author-actions .popup-message-bottom button.cancel-comment-removal:focus .material-icons {
|
|
color: var(--media-author-actions-popup-bottom-cancel-removal-button-hover-icon-text-color);
|
|
}
|
|
.profile-banner-wrap .popup-message-bottom button.cancel-profile-removal {
|
|
color: var(--profile-banner-wrap-popup-bottom-cancel-removal-button-text-color);
|
|
}
|
|
.profile-banner-wrap .popup-message-bottom button.cancel-profile-removal:hover,
|
|
.profile-banner-wrap .popup-message-bottom button.cancel-profile-removal:focus {
|
|
color: var(--profile-banner-wrap-popup-bottom-cancel-removal-button-hover-text-color);
|
|
}
|
|
.profile-banner-wrap .popup-message-bottom button.cancel-profile-removal:hover .material-icons,
|
|
.profile-banner-wrap .popup-message-bottom button.cancel-profile-removal:focus .material-icons {
|
|
color: var(--profile-banner-wrap-popup-bottom-cancel-removal-button-hover-icon-text-color);
|
|
}
|
|
.media-title-banner {
|
|
border-color: var(--media-title-banner-border-color);
|
|
}
|
|
.media-title-banner .media-labels-area .media-label-state > * {
|
|
color: var(--media-title-labels-area-text-color);
|
|
background-color: var(--media-title-labels-area-bg-color);
|
|
}
|
|
.media-title-banner .media-labels-area .helper-icon .material-icons {
|
|
color: var(--media-title-labels-area-text-color);
|
|
}
|
|
.media-title-banner .media-views {
|
|
color: var(--media-title-views-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) .circle-icon-button:focus > * {
|
|
background-color: var(--media-actions-not-popup-circle-icon-focus-bg-color);
|
|
}
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) .circle-icon-button:active > * {
|
|
background-color: var(--media-actions-not-popup-circle-icon-active-bg-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.like:before,
|
|
.media-title-banner .media-actions > * > *.dislike:before {
|
|
border-color: var(--media-actions-like-before-border-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-popup-title {
|
|
color: var(--media-actions-share-title-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .previous-slide .circle-icon-button,
|
|
.media-title-banner .media-actions > * > *.share .share-options .next-slide .circle-icon-button {
|
|
color: var(--media-actions-share-options-nav-button-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option a,
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option button {
|
|
color: var(--media-actions-share-options-link-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .copy-field > div {
|
|
border-color: var(--media-actions-share-copy-field-border-color);
|
|
background-color: var(--media-actions-share-copy-field-bg-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .copy-field input[type="text"] {
|
|
color: var(--media-actions-share-copy-field-input-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
background-color: var(--media-actions-more-options-popup-bg-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu a,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu button,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.video-download-options .nav-menu a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu a,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu button,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options .nav-menu a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button {
|
|
color: var(--media-actions-more-options-popup-nav-link-text-color);
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .popup-fullscreen .popup-main > div,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div,
|
|
.media-title-banner .media-actions > * > *.more-options .popup-fullscreen .popup-main > div,
|
|
.media-title-banner .media-actions > * > *.video-downloads .popup-fullscreen .popup-main > div {
|
|
background-color: var(--media-actions-share-fullscreen-popup-main-bg-color);
|
|
}
|
|
.report-form .form-title {
|
|
color: var(--report-form-title-text-color);
|
|
}
|
|
.report-form .form-field .label {
|
|
color: var(--report-form-field-label-text-color);
|
|
}
|
|
.report-form .form-field input[type="text"],
|
|
.report-form .form-field textarea {
|
|
color: var(--report-form-field-input-text-color);
|
|
border-color: var(--report-form-field-input-border-color);
|
|
background-color: var(--report-form-field-input-bg-color);
|
|
}
|
|
.report-form .form-help-text {
|
|
color: var(--report-form-help-text-color);
|
|
}
|
|
.form-actions-bottom {
|
|
border-top-color: var(--form-actions-bottom-border-top-color);
|
|
}
|
|
.media-info-content .media-author-banner .author-banner-name {
|
|
color: var(--media-author-banner-name-text-color);
|
|
}
|
|
.media-info-content .media-author-banner .author-banner-date {
|
|
color: var(--media-author-banner-date-text-color);
|
|
}
|
|
.media-info-content .media-content-banner {
|
|
border-color: var(--media-content-banner-border-color);
|
|
}
|
|
.share-embed-inner .on-right-top,
|
|
.share-embed-inner .on-right-bottom {
|
|
border-color: var(--share-embed-inner-on-right-border-color);
|
|
}
|
|
.share-embed-inner .on-right-top .on-right-top-inner .ttl {
|
|
color: var(--share-embed-inner-on-right-ttl-text-color);
|
|
}
|
|
.share-embed-inner .on-right-top .on-right-top-inner .circle-icon-button {
|
|
color: var(--share-embed-inner-on-right-icon-text-color);
|
|
}
|
|
.share-embed-inner .on-right-middle textarea {
|
|
color: var(--share-embed-inner-textarea-text-color);
|
|
border-color: var(--share-embed-inner-textarea-border-color);
|
|
background-color: var(--share-embed-inner-textarea-bg-color);
|
|
}
|
|
.share-embed-inner .media-embed-wrap .circle-icon-button {
|
|
color: var(--share-embed-inner-embed-wrap-iconn-text-color);
|
|
}
|
|
.media-status-info li span {
|
|
color: var(--media-status-info-item-text-color);
|
|
}
|
|
.viewer-sidebar .auto-play .item {
|
|
border-bottom-color: var(--viewer-sidebar-auto-play-border-bottom-color);
|
|
}
|
|
.viewer-sidebar .auto-play-header .next-label {
|
|
color: var(--viewer-sidebar-auto-play-next-label-text-color);
|
|
}
|
|
.viewer-sidebar .auto-play-header .auto-play-option {
|
|
color: var(--viewer-sidebar-auto-play-option-text-color);
|
|
}
|
|
.viewer-section {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
max-width: 1328px;
|
|
}
|
|
.viewer-section .viewer-section.viewer-section-nested {
|
|
max-width: 1328px;
|
|
}
|
|
.viewer-section.viewer-wide {
|
|
max-width: 1754px;
|
|
}
|
|
.viewer-section.viewer-wide .viewer-section.viewer-section-nested {
|
|
max-width: 1754px;
|
|
}
|
|
.viewer-section.theater-mode {
|
|
max-width: 100%;
|
|
}
|
|
.viewer-section.theater-mode .video-js.vjs-mediacms {
|
|
padding: 0;
|
|
}
|
|
.viewer-container,
|
|
.viewer-info {
|
|
position: relative;
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
.viewer-container .vjs-theater-mode-control {
|
|
display: none !important;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.viewer-container {
|
|
padding: 24px 24px 0 24px;
|
|
}
|
|
.viewer-container .vjs-theater-mode-control {
|
|
display: inline-block !important;
|
|
}
|
|
}
|
|
.viewer-section.theater-mode .viewer-container {
|
|
width: 100%;
|
|
padding: 0;
|
|
}
|
|
.viewer-container .vjs-fullscreen .vjs-theater-mode-control {
|
|
display: none !important;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.viewer-info-inner {
|
|
margin: 0 24px;
|
|
}
|
|
}
|
|
.viewer-sidebar {
|
|
position: relative;
|
|
float: right;
|
|
width: 100%;
|
|
padding: 12px 16px 24px;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.viewer-sidebar {
|
|
padding: 24px;
|
|
}
|
|
}
|
|
.viewer-sidebar .load-more {
|
|
margin-top: 16px;
|
|
margin-bottom: 0;
|
|
}
|
|
.viewer-sidebar .load-more:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.viewer-sidebar .auto-play .items-list-wrap {
|
|
min-height: 0;
|
|
}
|
|
.viewer-sidebar .auto-play .item {
|
|
margin-bottom: 16px;
|
|
padding-bottom: 16px;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
}
|
|
.viewer-sidebar .auto-play-header {
|
|
position: relative;
|
|
width: 100%;
|
|
min-height: 22px;
|
|
display: table;
|
|
margin: 0 auto 24px;
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.viewer-sidebar .auto-play-header {
|
|
margin: 0 auto 12px;
|
|
}
|
|
}
|
|
.viewer-sidebar .auto-play-header > * {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.viewer-sidebar .auto-play-header .next-label {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
}
|
|
.viewer-sidebar .auto-play-header .auto-play-option {
|
|
text-align: right;
|
|
}
|
|
.viewer-sidebar .auto-play-header .auto-play-option label {
|
|
font-weight: 500;
|
|
font-size: 0.928571429em;
|
|
letter-spacing: 0.007px;
|
|
margin: 0;
|
|
}
|
|
.viewer-sidebar .auto-play-header .auto-play-option .checkbox-label:focus {
|
|
outline: 0;
|
|
}
|
|
.viewer-sidebar .auto-play-header .auto-play-option .selectbox {
|
|
width: 1.231em;
|
|
height: 1.231em;
|
|
margin-top: -2px;
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.viewer-info {
|
|
width: 58.398%;
|
|
}
|
|
.viewer-sidebar {
|
|
width: 41.602%;
|
|
padding: 24px 24px 24px 0;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1216px) {
|
|
.viewer-container,
|
|
.viewer-info {
|
|
width: 67.921%;
|
|
}
|
|
.viewer-wide .viewer-container,
|
|
.viewer-wide .viewer-info {
|
|
width: 68.813%;
|
|
}
|
|
.viewer-sidebar {
|
|
width: 32.079%;
|
|
}
|
|
.viewer-wide .viewer-sidebar {
|
|
width: 31.187%;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1440px) {
|
|
.viewer-container,
|
|
.viewer-info {
|
|
width: 67.921%;
|
|
}
|
|
.viewer-wide .viewer-container,
|
|
.viewer-wide .viewer-info {
|
|
width: 75.712%;
|
|
}
|
|
.viewer-sidebar {
|
|
width: 32.079%;
|
|
}
|
|
.viewer-wide .viewer-sidebar {
|
|
width: 24.288%;
|
|
}
|
|
}
|
|
.viewer-container .player-container {
|
|
position: relative;
|
|
padding-top: 56.25%;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.viewer-section.theater-mode .viewer-container .player-container {
|
|
padding-top: 40.1%;
|
|
}
|
|
}
|
|
.viewer-container .player-container.audio-player-container:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: 0;
|
|
margin-top: -2rem;
|
|
margin-left: -2rem;
|
|
font-size: 4rem;
|
|
line-height: 1;
|
|
padding: 0;
|
|
font-family: "Material Icons";
|
|
text-decoration: none;
|
|
color: #888;
|
|
}
|
|
.viewer-container .player-container.audio-player-container .vjs-control-bar {
|
|
-webkit-transform: none !important;
|
|
-moz-transform: none !important;
|
|
-ms-transform: none !important;
|
|
transform: none !important;
|
|
}
|
|
.viewer-container .player-container-inner {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
.embedded-app .viewer-container,
|
|
.embedded-app .viewer-info {
|
|
width: 100%;
|
|
}
|
|
.viewer-image-container {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
.viewer-image-container img {
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
}
|
|
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
}
|
|
.slideshow-container {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
width: auto;
|
|
max-width: 90%;
|
|
}
|
|
.slideshow-image img {
|
|
display: block;
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 100%;
|
|
max-height: 90vh;
|
|
-moz-border-radius: 0;
|
|
border-radius: 0;
|
|
-webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
-webkit-transition:
|
|
opacity 60 ease-in-out,
|
|
-webkit-transform 60s ease-in-out;
|
|
transition:
|
|
opacity 60 ease-in-out,
|
|
-webkit-transform 60s ease-in-out;
|
|
-moz-transition:
|
|
transform 60s ease-in-out,
|
|
opacity 60 ease-in-out,
|
|
-moz-transform 60s ease-in-out;
|
|
transition:
|
|
transform 60s ease-in-out,
|
|
opacity 60 ease-in-out;
|
|
transition:
|
|
transform 60s ease-in-out,
|
|
opacity 60 ease-in-out,
|
|
-webkit-transform 60s ease-in-out,
|
|
-moz-transform 60s ease-in-out;
|
|
}
|
|
.slideshow-title {
|
|
margin-top: 10px;
|
|
text-align: start;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #bdb6b6;
|
|
z-index: 1200;
|
|
}
|
|
.arrow {
|
|
position: absolute;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
width: 40px;
|
|
height: 40px;
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%);
|
|
-moz-transform: translateY(-50%);
|
|
-ms-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
border: none;
|
|
color: #fff;
|
|
font-size: 2rem;
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
-moz-border-radius: 50%;
|
|
border-radius: 50%;
|
|
z-index: 1000;
|
|
-webkit-transition:
|
|
background-color 0.2s ease,
|
|
-webkit-transform 0.2s ease;
|
|
transition:
|
|
background-color 0.2s ease,
|
|
-webkit-transform 0.2s ease;
|
|
-moz-transition:
|
|
background-color 0.2s ease,
|
|
transform 0.2s ease,
|
|
-moz-transform 0.2s ease;
|
|
transition:
|
|
background-color 0.2s ease,
|
|
transform 0.2s ease;
|
|
transition:
|
|
background-color 0.2s ease,
|
|
transform 0.2s ease,
|
|
-webkit-transform 0.2s ease,
|
|
-moz-transform 0.2s ease;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
|
|
}
|
|
.arrow:hover {
|
|
background: rgba(92, 78, 78, 0.6);
|
|
-webkit-transform: translateY(-50%) scale(1.1);
|
|
-moz-transform: translateY(-50%) scale(1.1);
|
|
-ms-transform: translateY(-50%) scale(1.1);
|
|
transform: translateY(-50%) scale(1.1);
|
|
}
|
|
.arrow.left {
|
|
left: 10px;
|
|
}
|
|
.arrow.right {
|
|
right: 10px;
|
|
}
|
|
.thumbnail-navigation {
|
|
position: fixed;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
gap: 10px;
|
|
bottom: 10%;
|
|
left: 50%;
|
|
-webkit-transform: translateX(-50%);
|
|
-moz-transform: translateX(-50%);
|
|
-ms-transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
}
|
|
.thumbnail-container {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
gap: 10px;
|
|
overflow-x: auto;
|
|
scroll-behavior: smooth;
|
|
max-width: 80%;
|
|
padding: 10px 0;
|
|
scrollbar-width: none;
|
|
}
|
|
.thumbnail-container.center-thumbnails {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
overflow: visible;
|
|
}
|
|
.thumbnail-container::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.thumbnail {
|
|
width: 60px;
|
|
height: 60px;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
border: 2px solid rgba(0, 0, 0, 0);
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
-webkit-transition: -webkit-transform 0.3s ease;
|
|
transition: -webkit-transform 0.3s ease;
|
|
-moz-transition:
|
|
transform 0.3s ease,
|
|
-moz-transform 0.3s ease;
|
|
transition: transform 0.3s ease;
|
|
transition:
|
|
transform 0.3s ease,
|
|
-webkit-transform 0.3s ease,
|
|
-moz-transform 0.3s ease;
|
|
}
|
|
.thumbnail.active {
|
|
border-color: #fff;
|
|
}
|
|
.thumbnail:hover {
|
|
-webkit-transform: scale(1.1);
|
|
-moz-transform: scale(1.1);
|
|
-ms-transform: scale(1.1);
|
|
transform: scale(1.1);
|
|
}
|
|
@media screen and (min-width: 480px) {
|
|
.viewer-container .player-container {
|
|
-moz-border-radius: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
@media screen and (min-width: 480px) {
|
|
.viewer-container .player-container.audio-player-container {
|
|
padding-top: 42.1875%;
|
|
}
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.viewer-container .player-container.audio-player-container {
|
|
padding-top: 28.125%;
|
|
}
|
|
}
|
|
.viewer-container .player-container.audio-player-container .video-js.vjs-mediacms {
|
|
padding-top: 0;
|
|
}
|
|
.viewer-container .pdf-container {
|
|
overflow-y: auto;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 400px;
|
|
}
|
|
@media (min-width: 768px) and (max-width: 1023px) {
|
|
.viewer-container .pdf-container {
|
|
width: 90%;
|
|
height: 600px;
|
|
}
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.viewer-container .pdf-container {
|
|
width: 85%;
|
|
height: 900px;
|
|
}
|
|
}
|
|
.viewer-container .player-container.viewer-pdf-container,
|
|
.viewer-container .player-container.viewer-attachment-container {
|
|
background-color: var(--item-thumb-bg-color);
|
|
min-height: 129.5px;
|
|
padding-top: 14.0625%;
|
|
}
|
|
.viewer-container .player-container.viewer-pdf-container .player-container-inner .material-icons,
|
|
.viewer-container .player-container.viewer-attachment-container .player-container-inner .material-icons {
|
|
font-size: 4rem;
|
|
color: #888;
|
|
}
|
|
.viewer-container .player-container.viewer-pdf-container .player-container-inner > span,
|
|
.viewer-container .player-container.viewer-attachment-container .player-container-inner > span {
|
|
position: absolute;
|
|
display: table;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.viewer-container .player-container.viewer-pdf-container .player-container-inner > span span,
|
|
.viewer-container .player-container.viewer-attachment-container .player-container-inner > span span {
|
|
display: table-cell;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
.media-author-actions {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-family: inherit;
|
|
margin-bottom: -8px;
|
|
}
|
|
.media-author-actions button:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.media-author-actions .edit-media-icon,
|
|
.media-author-actions .remove-media-icon {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
border: 0;
|
|
line-height: 1;
|
|
padding: 0;
|
|
width: 40px;
|
|
height: 40px;
|
|
-moz-border-radius: 50%;
|
|
border-radius: 50%;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
-webkit-transition: all 0.3s ease;
|
|
-moz-transition: all 0.3s ease;
|
|
transition: all 0.3s ease;
|
|
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.media-author-actions .edit-media-icon .material-icons,
|
|
.media-author-actions .remove-media-icon .material-icons {
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
.media-author-actions .edit-media-icon:active,
|
|
.media-author-actions .remove-media-icon:active {
|
|
-webkit-transform: scale(0.98);
|
|
-moz-transform: scale(0.98);
|
|
-ms-transform: scale(0.98);
|
|
transform: scale(0.98);
|
|
}
|
|
.media-author-actions .edit-media-icon {
|
|
background-color: rgba(0, 153, 51, 0.9);
|
|
}
|
|
.media-author-actions .edit-media-icon:hover {
|
|
background-color: #093;
|
|
-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
-webkit-transform: scale(1.05);
|
|
-moz-transform: scale(1.05);
|
|
-ms-transform: scale(1.05);
|
|
transform: scale(1.05);
|
|
}
|
|
.dark_theme .media-author-actions .edit-media-icon {
|
|
background-color: rgba(102, 187, 102, 0.9);
|
|
}
|
|
.dark_theme .media-author-actions .edit-media-icon:hover {
|
|
background-color: #6b6;
|
|
}
|
|
.media-author-actions .remove-media-icon {
|
|
background-color: rgba(220, 53, 69, 0.9);
|
|
}
|
|
.media-author-actions .remove-media-icon:hover {
|
|
background-color: #dc3545;
|
|
-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
-webkit-transform: scale(1.05);
|
|
-moz-transform: scale(1.05);
|
|
-ms-transform: scale(1.05);
|
|
transform: scale(1.05);
|
|
}
|
|
.dark_theme .media-author-actions .remove-media-icon {
|
|
background-color: rgba(255, 107, 107, 0.9);
|
|
}
|
|
.dark_theme .media-author-actions .remove-media-icon:hover {
|
|
background-color: #ff6b6b;
|
|
}
|
|
.media-author-actions .popup {
|
|
position: absolute;
|
|
bottom: 100%;
|
|
left: 0;
|
|
margin-bottom: 8px;
|
|
}
|
|
.media-author-actions .popup-message-bottom button {
|
|
position: relative;
|
|
width: auto;
|
|
padding: 0;
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
.media-author-actions .popup-message-bottom button.proceed-comment-removal {
|
|
float: right;
|
|
}
|
|
.media-author-actions .popup-message-bottom button.cancel-comment-removal {
|
|
float: left;
|
|
}
|
|
.media-title-banner {
|
|
position: relative;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
min-height: 64px;
|
|
padding: 20px 12px 0 16px;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.media-title-banner {
|
|
padding: 20px 0 0;
|
|
}
|
|
}
|
|
.media-title-banner h1 {
|
|
display: inline-block;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
line-height: 1.333333;
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
overflow-wrap: break-word;
|
|
}
|
|
.media-title-banner .media-labels-area {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
.media-title-banner .media-labels-area .media-labels-area-inner {
|
|
display: table;
|
|
}
|
|
.media-title-banner .media-labels-area .media-labels-area-inner > * {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.media-title-banner .media-labels-area .media-label-state > * {
|
|
padding: 2px 4px;
|
|
margin-right: 4px;
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
text-transform: capitalize;
|
|
-moz-border-radius: 2px;
|
|
border-radius: 2px;
|
|
}
|
|
.media-title-banner .media-labels-area .helper-icon {
|
|
padding: 0 4px 1px 0;
|
|
cursor: help;
|
|
}
|
|
.media-title-banner .media-labels-area .helper-icon .material-icons {
|
|
display: inline-block;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
}
|
|
.media-title-banner .media-views-actions {
|
|
position: relative;
|
|
display: table;
|
|
width: 100%;
|
|
min-height: 40px;
|
|
z-index: 999;
|
|
}
|
|
.media-title-banner .media-views-actions > * {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.media-title-banner .media-views {
|
|
line-height: 1.25;
|
|
font-family: inherit;
|
|
}
|
|
.media-title-banner .media-actions > * {
|
|
position: relative;
|
|
float: right;
|
|
}
|
|
.media-title-banner .media-actions > * > * {
|
|
position: relative;
|
|
width: auto;
|
|
float: left;
|
|
margin-left: 8px;
|
|
padding-bottom: 8px;
|
|
color: #909090;
|
|
}
|
|
.media-title-banner .media-actions > * > * button,
|
|
.media-title-banner .media-actions > * > * .circle-icon-button {
|
|
color: #909090;
|
|
}
|
|
.media-title-banner .media-actions > * > * button:focus,
|
|
.media-title-banner .media-actions > * > * .circle-icon-button:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) {
|
|
display: table;
|
|
cursor: pointer;
|
|
}
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) > * {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) > *:nth-child(2) {
|
|
padding-right: 8px;
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) > *:nth-child(2) {
|
|
display: none !important;
|
|
}
|
|
}
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) .circle-icon-button {
|
|
display: inline-block;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
@media screen and (max-width: 359px) {
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) .circle-icon-button {
|
|
width: 2.25rem;
|
|
height: 2.25rem;
|
|
}
|
|
}
|
|
@media screen and (max-width: 319px) {
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) .circle-icon-button {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
}
|
|
@media screen and (max-width: 299px) {
|
|
.media-title-banner .media-actions > * > * > *:not(.popup) .circle-icon-button {
|
|
width: 1.75rem;
|
|
height: 1.75rem;
|
|
}
|
|
}
|
|
.media-title-banner .media-actions > * > * .popup {
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 0;
|
|
margin-top: -4px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.like > *:not(.popup),
|
|
.media-title-banner .media-actions > * > *.dislike > *:not(.popup),
|
|
.media-title-banner .media-actions > * > *.share > *:not(.popup),
|
|
.media-title-banner .media-actions > * > *.save > *:not(.popup),
|
|
.media-title-banner .media-actions > * > *.download > *:not(.popup),
|
|
.media-title-banner .media-actions > * > *.video-downloads > *:not(.popup) {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
.media-title-banner .media-actions > * > *.like > *:not(.popup) > *,
|
|
.media-title-banner .media-actions > * > *.dislike > *:not(.popup) > *,
|
|
.media-title-banner .media-actions > * > *.share > *:not(.popup) > *,
|
|
.media-title-banner .media-actions > * > *.save > *:not(.popup) > *,
|
|
.media-title-banner .media-actions > * > *.download > *:not(.popup) > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads > *:not(.popup) > * {
|
|
display: inline-block;
|
|
}
|
|
.media-title-banner .media-actions > * > *.like,
|
|
.media-title-banner .media-actions > * > *.dislike,
|
|
.media-title-banner .media-actions > * > *.more-options {
|
|
letter-spacing: 0.0007px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.like:before,
|
|
.media-title-banner .media-actions > * > *.dislike:before {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: -4px;
|
|
right: -4px;
|
|
border-bottom: 2px solid;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .scrollable-content {
|
|
display: block;
|
|
padding-bottom: 8px;
|
|
overflow: auto;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-popup-title {
|
|
margin-bottom: 16px;
|
|
line-height: 1.25;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options {
|
|
margin-bottom: 16px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-options-inner {
|
|
position: relative;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
scroll-behavior: smooth;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .previous-slide,
|
|
.media-title-banner .media-actions > * > *.share .share-options .next-slide {
|
|
position: absolute;
|
|
top: 78px;
|
|
z-index: 1;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .previous-slide {
|
|
left: 8px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .next-slide {
|
|
right: 8px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option {
|
|
vertical-align: top;
|
|
position: relative;
|
|
display: inline-block;
|
|
padding-right: 8px;
|
|
text-align: center;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option a,
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option button {
|
|
padding: 5px 5px 2px;
|
|
margin: 1px 0;
|
|
display: block;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option a > *:first-child,
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option button > *:first-child {
|
|
display: block;
|
|
width: 60px;
|
|
height: 60px;
|
|
line-height: 60px;
|
|
margin: 0 auto 8px;
|
|
-moz-border-radius: 50%;
|
|
border-radius: 50%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option a > *:last-child,
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option button > *:last-child {
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
overflow: hidden;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option a .material-icons,
|
|
.media-title-banner .media-actions > * > *.share .share-options .sh-option button .material-icons {
|
|
padding: 0;
|
|
margin: 0 0 0 1px;
|
|
line-height: 1;
|
|
font-size: 30px;
|
|
overflow: hidden;
|
|
color: #fff;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-embed-opt a > *:first-child,
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-embed-opt button > *:first-child {
|
|
background-color: #f4f4f4;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-embed-opt a .material-icons,
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-embed-opt button .material-icons {
|
|
color: #6f6f6f;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-email a > *:first-child,
|
|
.media-title-banner .media-actions > * > *.share .share-options .share-email button > *:first-child {
|
|
background-color: #888;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .copy-field {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .copy-field > div {
|
|
display: block;
|
|
padding-right: 5.5rem;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
-moz-border-radius: 2px;
|
|
border-radius: 2px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .copy-field input[type="text"] {
|
|
width: 100%;
|
|
height: 42px;
|
|
padding: 1px 0 1px 16px;
|
|
font-family: Arial;
|
|
font-size: 14px;
|
|
line-height: normal;
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .copy-field button {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 5.5rem;
|
|
height: 100%;
|
|
line-height: 20px;
|
|
border: 0;
|
|
background: none;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share,
|
|
.media-title-banner .media-actions > * > *.save,
|
|
.media-title-banner .media-actions > * > *.download a {
|
|
color: #909090;
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .circle-icon-button,
|
|
.media-title-banner .media-actions > * > *.video-downloads .circle-icon-button {
|
|
outline-width: initial;
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup {
|
|
width: auto;
|
|
overflow: visible;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
-webkit-box-shadow:
|
|
0 16px 24px 2px rgba(0, 0, 0, 0.14),
|
|
0 6px 30px 5px rgba(0, 0, 0, 0.12),
|
|
0 8px 10px -5px rgba(0, 0, 0, 0.4);
|
|
box-shadow:
|
|
0 16px 24px 2px rgba(0, 0, 0, 0.14),
|
|
0 6px 30px 5px rgba(0, 0, 0, 0.12),
|
|
0 8px 10px -5px rgba(0, 0, 0, 0.4);
|
|
}
|
|
@media screen and (max-width: 1007px) {
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
width: 300px;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
width: 368px;
|
|
}
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
width: 220px;
|
|
}
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-mediaStatusInfo .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *.main-options,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-mediaStatusInfo .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > *.main-options,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options {
|
|
width: 240px;
|
|
-webkit-box-shadow:
|
|
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
0 1px 5px 0 rgba(0, 0, 0, 0.12),
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
box-shadow:
|
|
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
0 1px 5px 0 rgba(0, 0, 0, 0.12),
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-videoDownloadOptions .popup > *.main-options,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > *.main-options,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options {
|
|
width: 160px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.video-download-options .nav-menu,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options .nav-menu,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu {
|
|
padding: 8px 0;
|
|
}
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-main
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-main
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
.menu-item-icon,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
.menu-item-icon {
|
|
margin-right: 16px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu a,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu button,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.video-download-options .nav-menu a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu a,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu button,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options .nav-menu a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
button,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button {
|
|
padding: 0 16px;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
}
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu a > *,
|
|
.media-title-banner .media-actions > * > *.more-options .nav-page-main .popup > *.main-options .nav-menu button > *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
a
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
button
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.more-options
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button
|
|
> *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu a > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .nav-menu button > *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-main
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
a
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.nav-menu
|
|
button
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
a
|
|
> *,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.nav-menu
|
|
button
|
|
> * {
|
|
line-height: 48px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .popup-fullscreen .popup-main,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main,
|
|
.media-title-banner .media-actions > * > *.more-options .popup-fullscreen .popup-main,
|
|
.media-title-banner .media-actions > * > *.video-downloads .popup-fullscreen .popup-main {
|
|
overflow: visible;
|
|
}
|
|
.media-title-banner .media-actions > * > *.share .popup-fullscreen .popup-main > div,
|
|
.media-title-banner .media-actions > * > *.save .popup-fullscreen .popup-main > div,
|
|
.media-title-banner .media-actions > * > *.more-options .popup-fullscreen .popup-main > div,
|
|
.media-title-banner .media-actions > * > *.video-downloads .popup-fullscreen .popup-main > div {
|
|
position: relative;
|
|
width: auto;
|
|
width: 100%;
|
|
max-width: 518px;
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
text-align: initial;
|
|
-webkit-box-shadow:
|
|
rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
|
|
rgba(0, 0, 0, 0.12) 0px 6px 30px 5px,
|
|
rgba(0, 0, 0, 0.4) 0px 8px 10px;
|
|
box-shadow:
|
|
rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
|
|
rgba(0, 0, 0, 0.12) 0px 6px 30px 5px,
|
|
rgba(0, 0, 0, 0.4) 0px 8px 10px;
|
|
}
|
|
.media-title-banner .media-actions > * > *.video-downloads .circle-icon-button {
|
|
outline-width: initial;
|
|
}
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup {
|
|
width: auto;
|
|
overflow: visible;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
-webkit-box-shadow:
|
|
0 16px 24px 2px rgba(0, 0, 0, 0.14),
|
|
0 6px 30px 5px rgba(0, 0, 0, 0.12),
|
|
0 8px 10px -5px rgba(0, 0, 0, 0.4);
|
|
box-shadow:
|
|
0 16px 24px 2px rgba(0, 0, 0, 0.14),
|
|
0 6px 30px 5px rgba(0, 0, 0, 0.12),
|
|
0 8px 10px -5px rgba(0, 0, 0, 0.4);
|
|
}
|
|
@media screen and (max-width: 1007px) {
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
width: 300px;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
width: 368px;
|
|
}
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > * {
|
|
width: 220px;
|
|
}
|
|
}
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-videoDownloadOptions .popup > *.main-options,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options {
|
|
width: 240px;
|
|
-webkit-box-shadow:
|
|
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
0 1px 5px 0 rgba(0, 0, 0, 0.12),
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
box-shadow:
|
|
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
0 1px 5px 0 rgba(0, 0, 0, 0.12),
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.main-options .popup-main,
|
|
.media-title-banner .media-actions > * > *.video-downloads .nav-page-main .popup > *.video-download-options .popup-main,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.main-options
|
|
.popup-main,
|
|
.media-title-banner
|
|
.media-actions
|
|
> *
|
|
> *.video-downloads
|
|
.nav-page-videoDownloadOptions
|
|
.popup
|
|
> *.video-download-options
|
|
.popup-main {
|
|
min-height: 0;
|
|
max-height: 16em;
|
|
max-height: 33.333vh;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
.nav-page-loggedInReportMedia .popup-main > div {
|
|
padding: 0 !important;
|
|
max-width: 450px !important;
|
|
}
|
|
.report-form {
|
|
display: block;
|
|
overflow: auto;
|
|
max-height: 50%;
|
|
}
|
|
.report-form .form-title {
|
|
padding: 20px 24px 0;
|
|
}
|
|
.report-form .form-field {
|
|
padding: 24px 24px;
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
.report-form .form-field + .form-field {
|
|
padding: 0 24px 24px 24px;
|
|
}
|
|
.report-form .form-field .label {
|
|
display: block;
|
|
line-height: 1.5;
|
|
font-size: 13px;
|
|
margin-bottom: 8px;
|
|
font-weight: 500;
|
|
}
|
|
.report-form .form-field input[type="text"],
|
|
.report-form .form-field textarea {
|
|
min-width: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 42px;
|
|
padding: 1px 12px;
|
|
margin: 0;
|
|
font-family: Arial;
|
|
font-size: 14px;
|
|
line-height: normal;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
-moz-border-radius: 2px;
|
|
border-radius: 2px;
|
|
}
|
|
.report-form .form-field *[readonly] {
|
|
cursor: default;
|
|
cursor: not-allowed;
|
|
}
|
|
.report-form .form-field input[type="text"] {
|
|
font-size: 14px;
|
|
}
|
|
.report-form .form-field textarea {
|
|
line-height: 1.4;
|
|
padding: 8px 12px;
|
|
min-height: 80px;
|
|
min-height: 20vh;
|
|
max-height: 50vh;
|
|
}
|
|
.report-form .form-help-text {
|
|
font-family: inherit;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
margin-bottom: 8px;
|
|
}
|
|
.form-actions-bottom {
|
|
display: block;
|
|
text-align: right;
|
|
padding: 8px;
|
|
border-top-width: 1px;
|
|
border-top-style: solid;
|
|
}
|
|
.form-actions-bottom button {
|
|
font-size: 14px;
|
|
font-stretch: 100%;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
letter-spacing: 0.007px;
|
|
text-align: center;
|
|
padding: 10px 16px;
|
|
margin: 0;
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
.form-actions-bottom button.cancel {
|
|
color: inherit !important;
|
|
}
|
|
.media-info-content .media-author-banner {
|
|
display: table;
|
|
padding: 0 16px;
|
|
margin: 16px 0;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.media-info-content .media-author-banner {
|
|
padding: 0;
|
|
margin: 16px 0 10px;
|
|
}
|
|
}
|
|
.media-info-content .media-author-banner > * {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.media-info-content .media-author-banner .author-banner-thumb span {
|
|
display: block;
|
|
width: 48px;
|
|
height: 48px;
|
|
margin-right: 16px;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
overflow: hidden;
|
|
-moz-border-radius: 50%;
|
|
border-radius: 50%;
|
|
}
|
|
.media-info-content .media-author-banner .author-banner-thumb span img {
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
}
|
|
.media-info-content .media-author-banner .author-banner-name {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
text-decoration: none;
|
|
}
|
|
.media-info-content .media-author-banner .author-banner-date {
|
|
display: block;
|
|
font-size: 14px;
|
|
line-height: 1.384615;
|
|
font-family: inherit;
|
|
}
|
|
.media-info-content .media-content-banner {
|
|
white-space: pre-wrap;
|
|
overflow-wrap: break-word;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
padding-bottom: 16px;
|
|
margin-bottom: 8px;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
margin-top: 20px;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.media-info-content .media-content-banner {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.media-info-content .media-content-banner {
|
|
margin-bottom: 0;
|
|
border: 0;
|
|
}
|
|
}
|
|
.media-info-content .media-content-banner .media-content-banner-inner {
|
|
font-family: inherit;
|
|
}
|
|
.media-info-content .media-content-banner .media-content-banner-inner > * {
|
|
margin-bottom: 16px;
|
|
}
|
|
.media-info-content .media-content-banner .media-content-banner-inner > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.media-info-content .media-content-banner .media-content-banner-inner .load-more {
|
|
margin-bottom: 24px;
|
|
}
|
|
.media-info-content .media-content-banner .media-content-description p,
|
|
.media-info-content .media-content-banner .media-content-description ul {
|
|
margin: 0;
|
|
}
|
|
.media-info-content .media-author-banner + .media-content-banner {
|
|
margin-top: 0;
|
|
padding-top: 16px;
|
|
border-top-width: 1px;
|
|
border-top-style: solid;
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
.media-info-content .media-author-banner + .media-content-banner {
|
|
padding-top: 0;
|
|
padding-left: 64px;
|
|
border-top-width: 0;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.media-info-content .media-author-banner + .media-content-banner {
|
|
border: 0;
|
|
}
|
|
}
|
|
.media-info-content .media-author-banner + .media-content-banner .media-content-banner-inner {
|
|
max-width: 615px;
|
|
}
|
|
.media-content-field {
|
|
position: relative;
|
|
width: 100%;
|
|
display: inline-block;
|
|
font-family: inherit;
|
|
line-height: 21px;
|
|
color: #888;
|
|
}
|
|
.media-content-field-label {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 126px;
|
|
padding-right: 16px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.media-content-field-label h4 {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 21px;
|
|
}
|
|
.media-content-field-content {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: auto;
|
|
padding-left: 126px;
|
|
word-break: break-word;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 21px;
|
|
color: var(--body-text-color);
|
|
}
|
|
.media-content-field-content > * {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-right: 4px;
|
|
}
|
|
.media-content-field-content a {
|
|
text-decoration: none;
|
|
}
|
|
.media-content-field-content a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.media-content-banner.large-fields-title .media-content-field-label {
|
|
width: 160px;
|
|
}
|
|
.media-content-banner.large-fields-title .media-content-field-content {
|
|
padding-left: 160px;
|
|
}
|
|
.share-embed-outer {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: block;
|
|
border: 2px solid red;
|
|
}
|
|
.share-embed {
|
|
overflow: auto;
|
|
}
|
|
.popup-main .share-embed {
|
|
padding: 0 !important;
|
|
max-width: 426px !important;
|
|
}
|
|
@media screen and (min-width: 1157px) {
|
|
.popup-main .share-embed {
|
|
max-width: 1280px !important;
|
|
}
|
|
}
|
|
.share-embed-popup {
|
|
padding: 72px 0;
|
|
}
|
|
.share-embed-popup .popup-main {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
.share-embed-inner {
|
|
position: relative;
|
|
width: 100%;
|
|
float: left;
|
|
}
|
|
.share-embed-inner .on-left,
|
|
.share-embed-inner .on-right {
|
|
position: relative;
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
.share-embed-inner .on-right {
|
|
overflow: hidden;
|
|
}
|
|
.share-embed-inner .on-right-top,
|
|
.share-embed-inner .on-right-bottom {
|
|
border-style: solid;
|
|
}
|
|
.share-embed-inner .on-right-top {
|
|
border-width: 0 0 1px;
|
|
}
|
|
.share-embed-inner .on-right-top:after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: -5px;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 5px;
|
|
left: 0;
|
|
opacity: 1;
|
|
pointer-events: none;
|
|
-webkit-box-shadow: inset 0px 4px 8px -3px rgba(17, 17, 17, 0.06);
|
|
box-shadow: inset 0px 4px 8px -3px rgba(17, 17, 17, 0.06);
|
|
}
|
|
.share-embed-inner .on-right-top .on-right-top-inner {
|
|
display: block;
|
|
padding: 16px;
|
|
}
|
|
.share-embed-inner .on-right-top .on-right-top-inner .ttl {
|
|
font-size: 16px;
|
|
line-height: 1.25;
|
|
}
|
|
.share-embed-inner .on-right-top .on-right-top-inner .circle-icon-button {
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 8px;
|
|
}
|
|
.share-embed-inner .on-right-middle {
|
|
position: absolute;
|
|
top: 60px;
|
|
bottom: 60px;
|
|
right: 0;
|
|
left: 0;
|
|
padding: 16px;
|
|
word-break: break-word;
|
|
overflow: auto;
|
|
}
|
|
@media screen and (max-width: 1156px) {
|
|
.share-embed-inner .on-right-middle {
|
|
position: relative;
|
|
top: auto !important;
|
|
bottom: auto !important;
|
|
}
|
|
}
|
|
.share-embed-inner .on-right-middle textarea {
|
|
min-width: 314px;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
min-height: 126px;
|
|
min-height: 132px;
|
|
height: 152px;
|
|
max-height: 100%;
|
|
padding: 16px;
|
|
cursor: text;
|
|
font-family: "Roboto Mono", monospace;
|
|
font-size: 14px;
|
|
line-height: 1.714285714;
|
|
outline: 0;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
-moz-border-radius: 2px;
|
|
border-radius: 2px;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config {
|
|
display: block;
|
|
padding: 16px 0 0;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-options-title {
|
|
display: block;
|
|
padding: 0 0 16px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option {
|
|
display: block;
|
|
color: var(--share-embed-inner-on-right-ttl-text-color);
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .options-group {
|
|
width: 50%;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .options-group input[type="checkbox"] {
|
|
margin-left: 0;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .ratio-options {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .ratio-options input[type="checkbox"] {
|
|
margin-left: 0;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .ratio-options select {
|
|
width: 167px;
|
|
max-width: 92%;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .num-value-unit {
|
|
position: relative;
|
|
width: 100%;
|
|
display: inline-block;
|
|
margin-bottom: 16px;
|
|
margin-right: 0;
|
|
}
|
|
.share-embed-inner .on-right-middle .iframe-config-option .option-content .num-value-unit .value-input {
|
|
max-width: 56%;
|
|
}
|
|
.share-embed-inner .on-right-bottom {
|
|
padding: 8px;
|
|
text-align: right;
|
|
border-width: 1px 0 0;
|
|
}
|
|
.share-embed-inner .on-right-bottom button {
|
|
padding: 10px 16px;
|
|
width: 5.5rem;
|
|
height: 100%;
|
|
line-height: 20px;
|
|
border: 0;
|
|
background: none;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
@media screen and (min-width: 1157px) {
|
|
.share-embed-inner .on-left {
|
|
width: 66.6666666667%;
|
|
}
|
|
.share-embed-inner .on-right {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 33.3333333333%;
|
|
}
|
|
.share-embed-inner .on-right-bottom {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
.share-embed-inner .on-right-bottom {
|
|
bottom: 0;
|
|
}
|
|
}
|
|
.share-embed-inner .media-embed-wrap {
|
|
display: block;
|
|
}
|
|
.share-embed-inner .media-embed-wrap .player-container,
|
|
.share-embed-inner .media-embed-wrap .player-container-inner {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.share-embed-inner .media-embed-wrap button {
|
|
color: #fff;
|
|
}
|
|
.share-embed-inner .media-embed-wrap .video-js.vjs-mediacms {
|
|
padding-top: 56.25%;
|
|
}
|
|
.media-status-info {
|
|
list-style: none;
|
|
padding: 8px 0;
|
|
margin: 0;
|
|
}
|
|
.media-status-info li {
|
|
padding: 8px 20px;
|
|
font-size: 13px;
|
|
}
|
|
.media-status-info li span {
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
}
|
|
.media-status-info li.reports span {
|
|
color: red;
|
|
}
|
|
.loggedin-media-reported .menu-item-icon .material-icons {
|
|
color: red;
|
|
color: rgba(255, 0, 0, 0.8);
|
|
}
|
|
@media screen and (min-width: 1008px) {
|
|
.viewer-sidebar .item-thumb,
|
|
.viewer-sidebar a.item-thumb,
|
|
.sliding-sidebar .viewer-sidebar .item-thumb,
|
|
.sliding-sidebar .viewer-sidebar a.item-thumb,
|
|
.visible-sidebar .viewer-sidebar .item-thumb,
|
|
.visible-sidebar .viewer-sidebar a.item-thumb {
|
|
width: 168px;
|
|
height: 94.2648px;
|
|
}
|
|
.viewer-sidebar .item-content,
|
|
.sliding-sidebar .viewer-sidebar .item-content,
|
|
.visible-sidebar .viewer-sidebar .item-content {
|
|
padding-left: 168px;
|
|
}
|
|
.viewer-sidebar .item-meta > *:nth-child(n + 2):before,
|
|
.sliding-sidebar .viewer-sidebar .item-meta > *:nth-child(n + 2):before,
|
|
.visible-sidebar .viewer-sidebar .item-meta > *:nth-child(n + 2):before {
|
|
display: none;
|
|
}
|
|
.viewer-sidebar .item-meta .item-date:before,
|
|
.sliding-sidebar .viewer-sidebar .item-meta .item-date:before,
|
|
.visible-sidebar .viewer-sidebar .item-meta .item-date:before {
|
|
content: "•";
|
|
content: "•";
|
|
margin: 0 4px;
|
|
}
|
|
.viewer-sidebar .item-meta .item-author,
|
|
.sliding-sidebar .viewer-sidebar .item-meta .item-author,
|
|
.visible-sidebar .viewer-sidebar .item-meta .item-author {
|
|
display: block;
|
|
}
|
|
.viewer-sidebar .item-main,
|
|
.sliding-sidebar .viewer-sidebar .item-main,
|
|
.visible-sidebar .viewer-sidebar .item-main {
|
|
padding-left: 8px;
|
|
min-height: 94.2648px;
|
|
}
|
|
.viewer-sidebar .item-main h3,
|
|
.sliding-sidebar .viewer-sidebar .item-main h3,
|
|
.visible-sidebar .viewer-sidebar .item-main h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 4px;
|
|
font-size: var(--item-title-font-size);
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
.media-under-title-categories {
|
|
margin: 16px 0;
|
|
color: var(--item-meta-text-color);
|
|
}
|
|
.media-under-title-categories.over-title {
|
|
margin: 0;
|
|
}
|
|
.media-under-title-categories span {
|
|
display: inline-block;
|
|
margin-right: 4px;
|
|
}
|
|
.media-under-title-categories span:after {
|
|
content: ",";
|
|
}
|
|
.media-under-title-categories span:last-child {
|
|
margin-right: 0;
|
|
}
|
|
.media-under-title-categories span:last-child:after {
|
|
content: "";
|
|
}
|
|
.media-under-title-categories a {
|
|
text-decoration: none;
|
|
}
|
|
.media-under-title-categories a:hover {
|
|
text-decoration: underline;
|
|
}
|