Skip to content
Open
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
62 changes: 31 additions & 31 deletions contrib/explorer-nothumbs-nofoldertypes.reg
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

your line ending settings changed this file accidentally

Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
Windows Registry Editor Version 5.00

; this will do 3 things, all optional:
; 1) disable thumbnails
; 2) delete all existing folder type settings/detections
; 3) disable folder type detection (force default columns)
;
; this makes the file explorer way faster,
; especially on slow/networked locations


; =====================================================================
; 1) disable thumbnails

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"IconsOnly"=dword:00000001


; =====================================================================
; 2) delete all existing folder type settings/detections

[-HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags]

[-HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU]


; =====================================================================
; 3) disable folder type detection

[HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell]
"FolderType"="NotSpecified"
Windows Registry Editor Version 5.00
; this will do 3 things, all optional:
; 1) disable thumbnails
; 2) delete all existing folder type settings/detections
; 3) disable folder type detection (force default columns)
;
; this makes the file explorer way faster,
; especially on slow/networked locations
; =====================================================================
; 1) disable thumbnails
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"IconsOnly"=dword:00000001
; =====================================================================
; 2) delete all existing folder type settings/detections
[-HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags]
[-HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU]
; =====================================================================
; 3) disable folder type detection
[HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell]
"FolderType"="NotSpecified"
78 changes: 75 additions & 3 deletions copyparty/web/browser.css
Original file line number Diff line number Diff line change
Expand Up @@ -3231,14 +3231,86 @@ html.d #treepar {



@media (max-width: 28em) {
#u2conf {
font-size: .8em;
}
}
@media (max-width: 32em) {
#u2conf {
font-size: .9em;
}
}
@media (max-width: 28em) {
#u2conf {
font-size: .8em;
@media (max-width: 35em) {
#ops,
.opview,
.opbox,
#srch_form,
#path,
#wrap {
margin-left: 0 !important;
margin-right: 0 !important;
}
.opbox,
#srch_form {
max-width: none;
width: auto;
border-radius: 0;
}
#wrap {
flex: 1 1 auto;
min-height: 0;
width: 100%;
max-width: 100%;
box-sizing: border-box;
padding-right: 0;
overflow-x: hidden;
}
#files {
display: block;
width: 100%;
max-width: 100%;
box-sizing: border-box;
overflow-x: auto;
overflow-y: visible;
-webkit-overflow-scrolling: touch;
}
#tree {
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
z-index: 4;
}
#treeh,
#treepar,
#treeul {
width: 100% !important;
box-sizing: border-box;
}
#treepar,
#treeul {
left: 0;
}
#treepar {
right: 0;
}
#wtoggle {
left: 0;
right: 0;
height: auto;
min-height: 1em;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
touch-action: pan-x;
scrollbar-gutter: stable;
border-radius: 0;
padding-left: 0;
padding-bottom: .35em;
}
#wtoggle>* {
flex: 0 0 auto;
}
}
@media (min-width: 70em) {
Expand Down