Created
October 31, 2019 17:26
-
-
Save kanonji/308eb9a3a8f39e414c5770e9e095450d to your computer and use it in GitHub Desktop.
https://fortee.jp/phpcon-2019/timetable のタイムテーブルの横スクロールバーが出ない様にするbookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){$(".container.main").css("width","initial");$(".timetable.size-normal").css("width","initial");$(".scale").css("width","5%");$(".date").css("width","95%").css("display","table").css("table-layout","fixed");$(".track").css("width","initial").css("float","none").css("display","table-cell")})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
$('.container.main').css('width', 'initial'); | |
$('.timetable.size-normal').css('width', 'initial'); | |
$('.scale').css('width', '5%'); | |
$('.date').css('width', '95%').css('display', 'table').css('table-layout', 'fixed'); | |
$('.track').css('width', 'initial').css('float', 'none').css('display', 'table-cell'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment