aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/css
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-06-18 08:01:52 +0200
committerGitHub <noreply@github.com>2018-06-18 08:01:52 +0200
commit0ad1f19a74a52e270b488dc04ffbbfd692cd68ce (patch)
tree831f9e397c36993afbd93c0d84b345f7c174ba1c /apps/files/css
parentc8e61cc252196a9d1d7c356a0961686f04ef9f9c (diff)
parent419d72e0eed300e5792f02c8d458a5da0367541d (diff)
downloadnextcloud-server-0ad1f19a74a52e270b488dc04ffbbfd692cd68ce.tar.gz
nextcloud-server-0ad1f19a74a52e270b488dc04ffbbfd692cd68ce.zip
Merge pull request #9717 from nextcloud/feature/actions-menu
New Feature/actions file menu
Diffstat (limited to 'apps/files/css')
-rw-r--r--apps/files/css/files.scss28
-rw-r--r--apps/files/css/mobile.scss11
2 files changed, 20 insertions, 19 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss
index d2d810c1e6c..38c74d242bc 100644
--- a/apps/files/css/files.scss
+++ b/apps/files/css/files.scss
@@ -176,9 +176,11 @@ table th .columntitle {
-moz-box-sizing: border-box;
vertical-align: middle;
}
+table.multiselect th .columntitle {
+ display: inline-block;
+}
table th .columntitle.name {
padding-left: 5px;
- padding-right: 80px;
margin-left: 50px;
}
@@ -246,7 +248,7 @@ table th.column-last, table td.column-last {
}
table.multiselect thead {
position: fixed;
- top: 89px;
+ top: 94px;
z-index: 55;
-moz-box-sizing: border-box;
box-sizing: border-box;
@@ -474,19 +476,19 @@ a.action > img {
/* Actions for selected files */
.selectedActions {
- position: absolute;
- top: 0;
- right: 0;
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+}
+.selectedActions.hidden {
+ display: none;
}
.selectedActions a {
display: inline;
- font-size: 11px;
line-height: 50px;
- padding: 18px 5px;
-}
-.selectedActions a.delete-selected {
- padding-right: 15px;
+ padding: 16px 5px;
}
+
.selectedActions a.hidden {
display: none;
}
@@ -495,9 +497,9 @@ a.action > img {
vertical-align: text-bottom;
margin-bottom: -1px;
}
-/* hide the delete icon in name column normal resolutions */
-table th#headerName .selectedActions .delete-selected {
- display: none;
+
+.selectedActions .actions-selected .icon-more {
+ margin-top: -3px;
}
#fileList td a {
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss
index c5bb8193924..a53066c4452 100644
--- a/apps/files/css/mobile.scss
+++ b/apps/files/css/mobile.scss
@@ -28,7 +28,7 @@ table td {
table.multiselect thead {
padding-left: 0;
}
-
+
#fileList a.action.action-menu img {
padding-left: 0;
}
@@ -41,10 +41,6 @@ table.multiselect thead {
display: none !important;
}
-/* show the delete icon in name column in lower resolutions */
-table th#headerName .selectedActions .delete-selected {
- display: inline;
-}
/* proper notification area for multi line messages */
#notification-container {
@@ -71,7 +67,10 @@ table.dragshadow {
}
@media only screen and (max-width: 480px) {
/* Only show icons */
- table th .selectedActions a span:not(.icon) {
+ table th .selectedActions {
+ float: right;
+ }
+ table th .selectedActions > a span:not(.icon) {
display: none;
}