Merge pull request #9049 from owncloud/fix-upload-button
fix CSS for upload button - fixes #8939
This commit is contained in:
commit
08c8ae699f
|
@ -62,4 +62,9 @@ table td.filename .nametext .innernametext {
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* shorten elements for mobile */
|
||||||
|
#uploadprogressbar {
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,22 +37,26 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#uploadprogresswrapper {
|
#uploadprogresswrapper, #uploadprogresswrapper * {
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
#uploadprogresswrapper {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
#uploadprogresswrapper > input[type='button'] {
|
#uploadprogresswrapper > input[type='button'] {
|
||||||
height: 36px;
|
height: 36px;
|
||||||
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
#uploadprogressbar {
|
#uploadprogressbar {
|
||||||
position:relative;
|
position:relative;
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 12px;
|
width: 200px;
|
||||||
width: 100%;
|
|
||||||
height: 36px;
|
height: 36px;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,11 +129,6 @@ table.multiselect thead {
|
||||||
left: 0 !important;
|
left: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* shorten elements for mobile */
|
|
||||||
#uploadprogresswrapper {
|
|
||||||
width: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* fix controls bar jumping when navigation is slid out */
|
/* fix controls bar jumping when navigation is slid out */
|
||||||
.snapjs-left #app-navigation-toggle,
|
.snapjs-left #app-navigation-toggle,
|
||||||
|
|
Loading…
Reference in New Issue