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

259 lines
4.1 KiB
SCSS
Raw Normal View History

2017-05-04 00:36:16 +08:00
@import "../../../stylesheets/variables/_all";
@import "../../../stylesheets/mixins/_scrollable";
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; }
}
.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();
2017-05-06 04:17:38 +08:00
max-height: 35vh;
2017-05-04 00:36:16 +08:00
}
2017-04-29 02:42:32 +08:00
.table {
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 {
min-width: 68px; // size of the 2 icons (check/trash)
text-align: left;
[dir="rtl"] & {
text-align: right;
}
}
.notDownloadable {
min-width: 48px;
}
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 {
div > i {
margin-top: .25rem;
}
}
.itemAction,
.itemAction > i {
2017-05-04 04:51:17 +08:00
display: inline-block;
border: none;
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;
background-color: transparent;
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;
2017-04-29 02:42:32 +08:00
border: 2px dashed;
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;
}