bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/presentation-uploader/styles.scss

501 lines
8.4 KiB
SCSS
Raw Normal View History

2020-02-26 03:29:14 +08:00
@import "/imports/ui/stylesheets/variables/_all";
@import "/imports/ui/stylesheets/mixins/_scrollable";
:root {
--uploadIconSize: 2.286rem;
--statusIconSize: 16px;
--statusInfoHeight: 8px;
--toast-md-margin: .5rem;
--iconLineHeight: 2.35rem;
--iconPadding-md: .65rem;
--fileLineWidth: 16.75rem;
--itemActionsWidth: 68px; // size of the 2 icons (check/trash)
--uploadListHeight: 30vh;
--modalInnerWidth: 37.5rem;
}
2017-05-04 00:36:16 +08:00
2017-05-06 04:17:38 +08:00
@keyframes bar-stripes {
from { background-position: 1rem 0; }
2017-05-06 04:17:38 +08:00
to { background-position: 0 0; }
}
2020-02-26 03:29:14 +08:00
@keyframes rotate {
0% { transform: rotate(0); }
100% { transform: rotate(360deg); }
}
.visuallyHidden {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px; width: 1px;
margin: -1px; padding: 0; border: 0;
}
2017-05-04 00:36:16 +08:00
.fileList {
@include scrollbox-vertical();
2020-02-26 03:29:14 +08:00
height: 100%;
max-height: var(--uploadListHeight);
padding: 1px;
margin-bottom: 2rem;
overflow-x: hidden;
2017-05-04 00:36:16 +08:00
}
2017-04-29 02:42:32 +08:00
.table {
2020-02-26 03:29:14 +08:00
position: relative;
2017-04-29 02:42:32 +08:00
width: 100%;
border-spacing: 0;
border-collapse: collapse;
> thead {
}
> tbody {
text-align: left;
[dir="rtl"] & {
text-align: right;
}
2017-04-29 02:42:32 +08:00
> tr {
border-bottom: 1px solid var(--color-gray-light);
2017-04-29 02:42:32 +08:00
&:last-child {
border-bottom: 0;
}
&:hover,
&:focus {
background-color: transparentize(#8B9AA8, .85);
2017-04-29 02:42:32 +08:00
}
th,
td {
padding: calc(var(--sm-padding-y) * 2) calc(var(--sm-padding-x) / 2);
2017-04-29 02:42:32 +08:00
white-space: nowrap;
}
th {
font-weight: bold;
color: var(--color-gray-dark);
2017-04-29 02:42:32 +08:00
}
td {
}
}
}
}
.tableItemIcon,
.tableItemActions,
2017-12-05 00:10:37 +08:00
.tableItemStatus,
.tableItemCurrent {
2017-04-29 02:42:32 +08:00
width: 1%;
}
.tableItemActions {
2020-02-26 03:29:14 +08:00
min-width: var(--itemActionsWidth);
text-align: left;
[dir="rtl"] & {
text-align: right;
}
}
2017-05-06 04:17:38 +08:00
.tableItemIcon > i {
font-size: 1.35rem;
}
2017-04-29 02:42:32 +08:00
.tableItemName {
height: 1rem;
2017-04-29 02:42:32 +08:00
width: auto;
position: relative;
&:before {
2017-12-05 00:10:37 +08:00
content: "\00a0";
2017-04-29 02:42:32 +08:00
visibility: hidden;
}
> span {
@extend %text-elipsis;
position: absolute;
left: 0;
right: 0;
[dir="rtl"] & {
right: 1rem;
}
2017-04-29 02:42:32 +08:00
}
}
2017-12-05 00:10:37 +08:00
.tableItemCurrent {
padding-left: 0;
padding-right: inherit;
[dir="rtl"] & {
padding-left: inherit;
padding-right: 0;
}
2017-12-05 00:10:37 +08:00
}
2017-05-06 04:17:38 +08:00
.tableItemStatus {
text-align: right;
[dir="rtl"] & {
text-align: left;
}
2017-05-06 04:17:38 +08:00
}
2017-04-29 02:42:32 +08:00
.tableItemNew {
2018-10-25 20:46:31 +08:00
background-color: rgba(0, 128, 129, 0.05);
2017-04-29 02:42:32 +08:00
}
2017-05-06 04:17:38 +08:00
.tableItemUploading {
2018-10-25 20:46:31 +08:00
background-color: rgba(0, 128, 129, 0.25);
2017-05-06 04:17:38 +08:00
}
.tableItemConverting {
2018-10-25 20:46:31 +08:00
background-color: rgba(0, 128, 129, 0.25);
2017-05-06 04:17:38 +08:00
}
.tableItemError {
2018-10-25 20:46:31 +08:00
background-color: rgba(223, 39, 33, 0.25);
2017-05-06 04:17:38 +08:00
}
2017-09-08 02:18:14 +08:00
.tableItemAnimated {
2017-05-06 04:17:38 +08:00
background-image: linear-gradient(45deg,
rgba(255, 255, 255, .15) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, .15) 50%,
rgba(255, 255, 255, .15) 75%,
transparent 75%,
transparent
2017-05-06 04:17:38 +08:00
);
background-size: 1rem 1rem;
:global(.animationsEnabled) & {
animation: bar-stripes 1s linear infinite;
}
2017-05-06 04:17:38 +08:00
}
.itemAction {
margin-left: var(--sm-padding-x);
div > i {
margin-top: .25rem;
}
}
.itemAction,
.itemAction > i {
2017-05-04 04:51:17 +08:00
display: inline-block;
2020-02-26 03:29:14 +08:00
border: 0;
2017-05-04 04:51:17 +08:00
background: transparent;
cursor: pointer;
font-size: 1.35rem;
color: var(--color-gray-light);
2017-05-04 04:51:17 +08:00
padding: 0;
:global(.animationsEnabled) & {
transition: all .25s;
}
:hover, :focus {
padding: unset !important;
}
2017-05-06 04:17:38 +08:00
}
.itemActionRemove {
background-color: transparent;
border: 0 !important;
& > i:focus,
& > i:hover {
color: var(--color-danger) !important;
2017-05-06 04:17:38 +08:00
}
2017-09-27 03:45:33 +08:00
&[aria-disabled="true"] {
cursor: not-allowed;
opacity: .5;
2017-09-27 03:45:33 +08:00
box-shadow: none;
pointer-events: none;
}
2017-05-04 04:51:17 +08:00
}
.checked > i {
color: var(--color-success);
}
.dropzoneWrapper {
2017-04-29 02:42:32 +08:00
width: 100%;
display: flex;
margin-top: calc(var(--lg-padding-y) * 5);
}
.dropzone {
flex: auto;
2020-02-26 03:29:14 +08:00
border: var(--border-size) dashed var(--color-gray);
color: var(--color-gray);
border-radius: var(--border-radius);
padding: calc(var(--lg-padding-y) * 2.5) var(--lg-padding-x);
2017-04-29 02:42:32 +08:00
text-align: center;
font-size: var(--font-size-large);
2017-04-29 02:42:32 +08:00
cursor: pointer;
}
.dropzoneActive {
background-color: var(--color-gray-lighter);
2017-04-29 02:42:32 +08:00
}
.dropzoneIcon {
font-size: calc(var(--font-size-large) * 3);
2017-04-29 02:42:32 +08:00
}
.dropzoneMessage {
margin: var(--md-padding-y) 0;
2017-04-29 02:42:32 +08:00
}
.dropzoneLink {
color: var(--color-link);
2017-04-29 02:42:32 +08:00
text-decoration: underline;
font-size: 80%;
display: block;
}
2017-12-05 00:10:37 +08:00
.currentLabel {
display: inline;
padding: .25em .5em;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: var(--color-white);
background: var(--color-primary);
2017-12-05 00:10:37 +08:00
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
text-transform: uppercase;
}
2020-02-26 03:29:14 +08:00
.uploadIcon {
background-color: var(--color-primary);
color: var(--color-white);
height: var(--uploadIconSize);
width: var(--uploadIconSize);
border-radius: 50%;
font-size: 135%;
line-height: var(--iconLineHeight);
margin-right: var(--sm-padding-x);
[dir="rtl"] & {
margin-left: var(--sm-padding-x);
margin-right: 0;
}
}
.uploadToastTitle {
position: fixed;
font-weight: 600;
margin-top: var(--toast-md-margin);
}
.uploadToastHeader {
position: relative;
margin-bottom: var(--toast-md-margin);
padding-bottom: var(--sm-padding-x);
border-bottom: 1px var(--color-gray-separator) solid;
}
.toastFileName {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
height: 1.25rem !important;
}
.toastFileName,
.fileName {
margin-left: var(--lg-padding-x);
top: var(--border-size-large);
height: 1rem;
width: auto;
position: relative;
text-align: left;
font-weight: var(--headings-font-weight);
[dir="rtl"] & {
margin-right: var(--lg-padding-x);
margin-left: 0;
text-align: right;
}
}
.fileIcon {
width: 1%;
padding-bottom: var(--iconPadding-md);
i {
position: relative;
top: var(--border-size-large);
}
2020-02-26 03:29:14 +08:00
}
.loading {
color: var(--color-gray-lightest);
border: 1px solid;
border-radius: 50%;
border-right-color: var(--color-gray);
animation: rotate 1s linear infinite;
}
.done {
color: var(--color-success);
}
.err {
color: var(--color-danger);
}
.loading,
.done,
.err{
position: relative;
width: var(--statusIconSize);
height: var(--statusIconSize);
font-size: 117%;
bottom: var(--border-size);
left: var(--statusInfoHeight);
}
.uploadRow {
display: flex;
flex-direction: column;
margin-bottom: var(--statusInfoHeight);
margin-top: var(--statusInfoHeight);
}
.textErr,
.textInfo {
font-size: 70%;
}
.textErr {
display: inline-block;
2020-02-26 03:29:14 +08:00
color: var(--color-danger);
}
.statusInfo {
padding: 0;
bottom: var(--toast-md-margin);
position: relative;
left: var(--border-size-large);
max-height: var(--statusInfoHeight);
height: var(--statusInfoHeight);
[dir="rtl"] & {
right: var(--border-size-large);
left: 0;
}
}
.fileLine {
display: flex;
flex-direction: row;
width: var(--fileLineWidth);
}
.statusIcon {
margin-left: auto;
[dir="rtl"] & {
margin-right: auto;
margin-left: 0;
}
i {
position: relative;
top: 1px;
height: var(--statusIconSize);
width: var(--statusIconSize);
}
2020-02-26 03:29:14 +08:00
}
.modal {
background-color: white;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1300;
}
.modalInner {
margin-left: auto;
margin-right: auto;
width: var(--modalInnerWidth);
max-height: 100%;
max-width: 100%;
padding-bottom: .75rem;
overflow-y: auto;
@include mq($small-only) {
padding-left: var(--statusInfoHeight);
padding-right: var(--statusInfoHeight);
}
}
.modalHeader {
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: var(--border-size) solid var(--color-gray-lighter);
margin-bottom: 2rem;
h1 {
font-weight: var(--modal-title-fw);
}
div {
display: flex;
flex-direction: row;
justify-content: space-between;
}
}
.modalHint {
margin-bottom: 2rem;
color: var(--color-text);
font-weight: normal;
}
.actionWrapper {
display: flex;
align-items: center;
2020-02-26 03:29:14 +08:00
}
.confirm,
.dismiss {
width: 6rem;
height: 1.875rem;
}
.dismiss {
margin-right: var(--toast-md-margin);
}
.innerToast {
@include scrollbox-vertical();
2020-02-26 03:29:14 +08:00
position: relative;
width: 100%;
height: 100%;
max-height: var(--uploadListHeight);
overflow-y: auto;
padding-right: 1rem;
box-sizing: content-box;
background: none;
2020-02-26 03:29:14 +08:00
}
.toastWrapper {
max-height: 50%;
width: var(--fileLineWidth);
}