Skip to content

Instantly share code, notes, and snippets.

@admmssy
Created February 6, 2012 15:08
Show Gist options
  • Save admmssy/1752584 to your computer and use it in GitHub Desktop.
Save admmssy/1752584 to your computer and use it in GitHub Desktop.
Userscript for Chrome: doubles the width of the left hand column in Panopto session lists.
// ==UserScript==
// @name Panopto Wider Columns
// @namespace http://replay.aston.ac.uk
// @description Makes left column wider
// @include http://replay.aston.ac.uk/Panopto/Pages/Sessions/*
// ==/UserScript==
GM_addStyle(".leftcolumn { width: 504px; !important; }");
GM_addStyle(".rightcolumn { margin-left: 504px; !important; }");
@admmssy
Copy link
Author

admmssy commented Mar 28, 2012

Very quick, tested using Chrome. Change the references to our Panopto server to yours, save as anythingyoulike.user.js, then drag and drop into Chrome.

If you want to change the width (double seems pretty big on my 1280 screen at work), make sure that .leftcolumn's width is set to the same value as .rightcolumn's margin-left.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment