Widen Microsoft Learn main contents on mouse over.
See the behavior on https://x.com/i/status/1812272997304250612
Widen Microsoft Learn main contents by horihiro
Details
Authorhorihiro
LicenseNo License
Categorymicrosoft
Created
Updated
Size716 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Widen Microsoft Learn main contents
@version 20241014.06.51
@namespace https://userstyles.world/user/horihiro
@description Widen Microsoft Learn main contents on mouse over
@author horihiro
@license No License
==/UserStyle== */
@-moz-document domain("learn.microsoft.com") {
/* #main-column:hover{
transition: width 0.2s;
width: 100%;
}
#main-column:hover + #ms--additional-resources {
visibility: hidden !important;
}
*/
#ms--additional-resources {
position: fixed;
top: 0;
left: 98%;
right: unset;
background-color: var(--theme-body-background);
}
#ms--additional-resources:hover {
left: unset;
right: 0;
}
#main-column{
width: 100%;
}
}