From 3e079a2fb4da270b36775fa959cec8600b020812 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 6 Apr 2016 02:54:45 -0700 Subject: [PATCH 1/2] Torrent list title: Show more of the title --- renderer/index.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/renderer/index.css b/renderer/index.css index dc3d755a..4b6eeeb3 100644 --- a/renderer/index.css +++ b/renderer/index.css @@ -370,10 +370,15 @@ input { position: absolute; top: 20px; left: 20px; - width: calc(100% - 150px); + right: 20px; + width: calc(100% - 40px); text-shadow: rgba(0, 0, 0, 0.5) 0 0 4px; } +.torrent:hover .metadata { + width: calc(100% - 150px); +} + .torrent .metadata span:not(:last-child)::after { content: ' — '; } From 10d96789468eec305dbe1bf6facf7451718ba885 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 6 Apr 2016 03:27:43 -0700 Subject: [PATCH 2/2] Shortcut tweak --- main/menu.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main/menu.js b/main/menu.js index d514ca9b..d1dada05 100644 --- a/main/menu.js +++ b/main/menu.js @@ -270,7 +270,9 @@ function getAppMenuTemplate () { }, { label: 'Show WebTorrent Process', - accelerator: 'CmdOrCtrl+Alt+P', + accelerator: process.platform === 'darwin' + ? 'Alt+Command+P' + : 'Ctrl+Shift+P', click: showWebTorrentWindow }, {