356 lines
No EOL
8.1 KiB
SCSS
356 lines
No EOL
8.1 KiB
SCSS
@import "../../../../css/static/mixin";
|
|
@import "../../../../css/static/properties";
|
|
|
|
.container {
|
|
padding: 1em;
|
|
position: relative;
|
|
padding-bottom: 4em; /* for the transfer info */
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
|
|
flex-shrink: 1;
|
|
flex-grow: 1;
|
|
|
|
width: 90em;
|
|
min-width: 10em;
|
|
max-width: 100%;
|
|
|
|
height: 55em;
|
|
max-height: 100%;
|
|
min-height: 10em;
|
|
|
|
.navigation {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
|
|
.containerIcon {
|
|
margin: auto .25em;
|
|
padding: .2em;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
> div {
|
|
padding: .1em;
|
|
}
|
|
}
|
|
|
|
.refreshIcon {
|
|
border-radius: 1px;
|
|
|
|
@include transition(background-color $button_hover_animation_time ease-in-out);
|
|
|
|
> div {
|
|
padding: .1em;
|
|
}
|
|
|
|
&.enabled {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: #ffffff0e;
|
|
}
|
|
}
|
|
}
|
|
|
|
.directoryIcon {
|
|
margin-right: -.25em;
|
|
}
|
|
|
|
input {
|
|
margin-left: .5em;
|
|
}
|
|
|
|
.containerPath {
|
|
@include user-select(none);
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
|
|
width: calc(100% - 1em); /* some space for the text editing */
|
|
|
|
a.pathShrink {
|
|
flex-shrink: 1;
|
|
min-width: 5em;
|
|
|
|
@include text-dotdotdot();
|
|
}
|
|
|
|
a {
|
|
cursor: pointer;
|
|
|
|
@include transition(color $button_hover_animation_time ease-in-out);
|
|
&:hover, &.hovered {
|
|
color: #E6E6E6;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.fileTable {
|
|
min-height: 5em;
|
|
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
margin-top: 1em;
|
|
|
|
border: 1px #161616 solid;
|
|
border-radius: 0.2em;
|
|
background-color: #28292b;
|
|
|
|
.header {
|
|
z-index: 1;
|
|
padding-top: .2em;
|
|
padding-bottom: .2em;
|
|
|
|
background-color: #28292b;
|
|
|
|
.columnName, .columnSize, .columnType, .columnChanged {
|
|
position: relative;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
|
|
.seperator {
|
|
position: absolute;
|
|
right: .2em;
|
|
top: .2em;
|
|
bottom: .2em;
|
|
|
|
width: .1em;
|
|
background-color: #999999;
|
|
}
|
|
}
|
|
|
|
.columnSize {
|
|
width: 8em;
|
|
text-align: end;
|
|
}
|
|
|
|
.columnName {
|
|
padding-left: .5em;
|
|
}
|
|
|
|
> div:last-of-type {
|
|
.seperator {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.body {
|
|
@include user-select(none);
|
|
@include chat-scrollbar-vertical();
|
|
|
|
.columnName {
|
|
padding-left: .5em;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
|
|
a, div, img {
|
|
align-self: center;
|
|
margin-right: .5em;
|
|
|
|
@include text-dotdotdot();
|
|
}
|
|
|
|
img, div {
|
|
flex-shrink: 0;
|
|
|
|
height: 1em;
|
|
width: 1em;
|
|
}
|
|
|
|
input {
|
|
height: 1.3em;
|
|
align-self: center;
|
|
|
|
flex-grow: 1;
|
|
margin-right: .5em;
|
|
|
|
border-style: inherit;
|
|
padding: .1em;
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
a {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.overlayError {
|
|
a {
|
|
font-size: 1.2em;
|
|
color: #9e9494;
|
|
}
|
|
}
|
|
|
|
.overlayEmptyFolder {
|
|
align-self: center;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.directoryEntry {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: #2c2d2f;
|
|
}
|
|
|
|
&.selected {
|
|
background-color: #1a1a1b;
|
|
}
|
|
|
|
/* drag hovered overrides selected */
|
|
&.hovered {
|
|
background-color: #2c2d2f;
|
|
}
|
|
|
|
$indicator_transform_time: .5s;
|
|
.indicator {
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
right: 30%;
|
|
top: 0;
|
|
bottom: 0;
|
|
|
|
opacity: .4;
|
|
margin-right: 10px; /* for the gradient at the end */
|
|
|
|
.status {
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
|
|
width: 2px;
|
|
@include transition(all $indicator_transform_time ease-in-out);
|
|
}
|
|
|
|
&:after {
|
|
content: ' ';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
height: 100%;
|
|
width: 10px;
|
|
|
|
background-image: linear-gradient(to right, #28292b, #28292b);
|
|
@include transition(all $indicator_transform_time ease-in-out);
|
|
}
|
|
@include transition(all $indicator_transform_time ease-in-out);
|
|
|
|
@mixin define-indicator($color, $colorLight) {
|
|
background-color: $color;
|
|
|
|
.status {
|
|
background-color: $colorLight;
|
|
|
|
-webkit-box-shadow: 0 0 12px 3px $colorLight;
|
|
-moz-box-shadow: 0 0 12px 3px $colorLight;
|
|
box-shadow: 0 0 12px 3px $colorLight;
|
|
}
|
|
|
|
&:after {
|
|
background-image: linear-gradient(to right, $color, #28292b);
|
|
}
|
|
}
|
|
|
|
&.red {
|
|
@include define-indicator(#a10000, #e60000);
|
|
}
|
|
|
|
&.blue {
|
|
@include define-indicator(#005fa1, #007acc);
|
|
}
|
|
|
|
&.green {
|
|
@include define-indicator(#389738, #4ecc4e);
|
|
}
|
|
|
|
&.hidden {
|
|
@include define-indicator(#28292b00, #28292b00);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.columnSize {
|
|
text-align: end;
|
|
|
|
a {
|
|
margin-right: 1em;
|
|
}
|
|
}
|
|
|
|
.columnType {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.row {
|
|
|
|
}
|
|
}
|
|
|
|
.arrow {
|
|
width: 1em;
|
|
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
.inner {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
|
|
align-self: center;
|
|
margin-left: -.09em;
|
|
|
|
transform: rotate(-45deg);
|
|
-webkit-transform: rotate(-45deg);
|
|
|
|
display: inline-block;
|
|
border: solid #999999;
|
|
|
|
border-width: 0 0.125em 0.125em 0;
|
|
padding: 0.15em;
|
|
|
|
height: 0.15em;
|
|
width: .15em;
|
|
}
|
|
} |