Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 51 additions & 1 deletion css/apps/files.scss
Original file line number Diff line number Diff line change
Expand Up @@ -463,14 +463,64 @@ table.files-filestable {
}

.upload-picker__progress {
width: 320px;
width: 300px;
max-width: 320px;

//Adjusting the position of the progress bar to align with the secondary loader
margin-right: 6rem;
margin-top: 23px;
}

// Responsive adjustment for upload progress bar
@media screen and (max-width: $breakpoint-mobile-small) {
.upload-picker__progress {
width: 140px !important;
max-width: 320px;
margin-right: 4rem !important;
padding: 1rem;
background: var(--color-main-background);
z-index: 1;
position: absolute;
}

.upload-picker__cancel {
z-index: 1;
position: relative;
left: -148px;
float: left;
padding: 0;
background: var(--color-main-background);
}

.files-list__header-upload-button {
padding-left: 2rem;
background-color: var(--color-main-background);
z-index: 1;
}
}

@media (min-width: $breakpoint-mobile-small) and (max-width: $breakpoint-mobile-medium) {
.upload-picker__progress {
width: 300px;
max-width: 320px;
margin-right: 3rem;
margin-top: 23px;
padding: 1rem 0 1rem 1rem;
background: var(--color-main-background);
z-index: 1;
}
}
@media (min-width: $breakpoint-mobile-medium) and (max-width: $breakpoint-mobile) {
.upload-picker__progress {
margin-right: 2rem;
width: 260px;
}
}

.files-list__breadcrumbs--with-progress {
flex-direction: row !important;
}

.files-list__refresh-icon {
position: absolute;
right: 13rem;
Expand Down
6 changes: 6 additions & 0 deletions css/components/ncbreadcrumb.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

nav {
height: 44px;
margin: 0px 10px;
@media (min-width: $breakpoint-mobile-medium) and (max-width: $breakpoint-mobile) {
nav {
flex-shrink: 0;
}
}

ul.breadcrumb__crumbs {
// Display root as "Start" text
Expand Down
Loading