kimrabbit95 / clien mobile wrap

// ==UserScript==
// @namespace  http://openuserjs.org?users/injeomiyahoo.com
// @name  clien mobile wrap
// @description  clien mobile web site posting title wrap
// @copyright 2019, injeolmiyahoo.com (https://openuserjs.org/users/injeolmiyahoo.com)
// @license  MIT
// @include  https://m.clien.net/*
// @grant    GM_addStyle
// ==/UserScript==

function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}

addGlobalStyle('.list_item { height: auto !important; } ');
addGlobalStyle('.list_title { height: auto !important; } ');
addGlobalStyle('.list_row { height: auto !important; } ');
addGlobalStyle('.list_subject { white-space: initial !important; height: auto !important; } ');
addGlobalStyle('.list_author { position: initial !important;} ');