Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 2565333002: Remove details panel. (Closed)
Patch Set: Rebased. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/chromeos_switches.cc ('k') | ui/file_manager/file_manager/foreground/js/app_state_controller.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/css/file_manager.css
diff --git a/ui/file_manager/file_manager/foreground/css/file_manager.css b/ui/file_manager/file_manager/foreground/css/file_manager.css
index ae775ffeedd63ebd09540d69296cd0a08d470c74..a8b95ab76650ed19493395b7a4cc1eb9a037202e 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -80,129 +80,6 @@ a:focus {
flex-direction: column;
}
-/* Details pane */
-.details-container {
- background-color: rgb(250, 250, 250);
- display: flex;
- flex: none;
- max-width: 30%;
- min-width: 100px;
- overflow: hidden;
- position: relative;
- width: 240px;
-}
-
-#list-details-splitter:not([activated]) {
- display: none;
-}
-
-.details-container:not([activated]) {
- display: none;
-}
-
-.details-container > div:not([activated]) {
- display: none !important;
-}
-
-/* Filetype icons in details panel */
-
-.details-container .thumbnail-container {
- box-sizing: border-box;
- padding: 6px;
- position: relative;
- width: 100%;
-}
-
-.details-container .thumbnail-container:before {
- content: "";
- display: block;
- padding-top: 100%;
-}
-
-.details-container .thumbnail-container > .thumbnail {
- background-color: rgb(230, 230, 230);
- background-position: center;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
-}
-
-/* File thumbnails/quick previews in details panel */
-
-.details-container .thumbnail > img {
- height: 100%;
- object-fit: contain;
- width: 100%;
-}
-
-.details-container .thumbnail > video {
- height: 100%;
- object-fit: contain;
- width: 100%;
-}
-
-.details-container .thumbnail > audio {
- bottom: 0px;
- left: 0px;
- height: auto;
- position: absolute;
- width: 100%;
-}
-
-/* Details panel for single file */
-
-.details-container > #single-file-details {
- display: flex;
- flex: auto;
- flex-direction: column;
- width: 100%;
-}
-
-#single-file-details > .filename-container {
- align-items: center;
- display: flex;
- flex-direction: row;
- height: 40px;
- padding: 0 6px;
- width: 100%;
-}
-
-#single-file-details > .filename-container > .filename {
- -webkit-padding-end: 6px;
- flex: auto;
- font-weight: 500;
- overflow: hidden;
-}
-
-#single-file-details > .thumbnail-container > .thumbnail.loaded {
- background-image: none;
-}
-
-#single-file-details > .details-list {
- flex: auto;
- width: 100%;
-}
-
-#single-file-details > .details-list > li:not(.available) {
- display: none;
-}
-
-/* Filetype icon of details panel for multiple files */
-
-.details-container > #multi-file-details {
- display: flex;
- flex: auto;
- flex-direction: column;
- width: 100%;
-}
-
-#multi-file-details > .details-list {
- flex: auto;
- width: 100%;
-}
-
/* Directory tree at the left. */
.dialog-navigation-list {
-webkit-border-end: 1px solid rgba(0, 0, 0, 0.15);
@@ -537,24 +414,6 @@ body.check-select #sort-button {
display: none;
}
-#details-button {
- /**
- * TODO(ryoh): This should be removed after we finally implement details
- * panel.
- */
- display: none;
-}
-
-#details-button > .icon {
- background-image: -webkit-image-set(
- url(../images/files/ui/info_white.png) 1x,
- url(../images/files/ui/2x/info_white.png) 2x);
-}
-
-body.check-select #details-button {
- display: none;
-}
-
#gear-button > .icon {
background-image: -webkit-image-set(
url(../images/files/ui/menu_white.png) 1x,
« no previous file with comments | « chromeos/chromeos_switches.cc ('k') | ui/file_manager/file_manager/foreground/js/app_state_controller.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698