English 中文(简体)
我如何利用科学、科学、科学、科学、技术和革新中心总结新的谷歌日历活动案文?
原标题:How do I make the new Google calendar event text wrap around using CSS?

我可以读一下我的谷歌日历活动的全称,因为它们被重新拖到日子。 因此,打印件的用处不大。

曾经有过一种 gr子,使科学、技术和革新委员会得以确定,但谷歌重新设计了日历,现在标题相互重叠,可以适当阅读。

现在我需要增加哪一页,才能使活动标题完全化? 这是Greasemonkey plugin的现行法典:

function buildStyle()
{
    var st = "div.rb-n, span, nobr { white-space: normal; }";
    var dochead = document.getElementsByTagName("head")[0];
    var stEl = document.createElement("style");
    stEl.setAttribute("type", "text/css");
    stEl.innerHTML = st;
    dochead.appendChild(stEl);
}

window.addEventListener("load", function(e) {
    buildStyle();
}, false);

http://userscripts.org/scripts/show/97755“rel=“nofollow”http://userscripts.org/scripts/show/97755。 纽约总部 如果你把谷歌日历恢复到传统观点,但不能为新观点而努力,就可以看到它的工作是正确的。

最新资料:

我挽救了谷歌日历的榜样,显示两个测试活动:

最佳回答

根据所提供的页面样本,你将使用这些风格:

.rb-n {
    white-space: normal !important;
}
.te {
    overflow: inherit !important;
    white-space: normal !important;
}

<>说明:

  1. If you are just changing styles, then it is far superior to use Stylish.

    甲型六氯环己烷的快速度; 甲型六氯环己烷的改变更为容易/易于维持; 改动在无任何微薄或延迟的情况下适用;而且经常有人在Userets.org上张贴了你想要的许多内容。

  2. 同样,你也不需要利用所有联合材料来增加Grecemonuis的风格。 Use the

    GM_addStyle ( "                                 
        .rb-n {                                     
            white-space:    normal !important;      
        }                                           
        .te {                                       
            overflow:       inherit !important;     
            white-space:    normal !important;      
        }                                           
    " );
    
  3. 谷歌快速和无警告地改变其网页:Firebug,可帮助确定新的变化,而CSS的工作情况则如上所示。

问题回答

I used a different tutorial, 并且将CSS与Soriginal CSS, 这里是为了方便和历史参考。 非常感谢Jodie Miners的辛勤工作。

.rb-ni, .rb-n {
border:none;
display: inline-table; 
white-space: pre-wrap;
    font-size: 11px;
    font-weight: bold;
}

.st-c-pos > div[style] {
border:none !important;}

.st-dtitle-nonmonth {
color:lightgray;
font-size: 10px !important;
}

.st-dtitle{
font-size:14px;
font-weight:bold;
}

.date-top{
font-weight:bold;
font-size:20px;
}

.st-dtitle-today {
border-color: #DDD !important;
background-color: #FFF !important;
}

.st-bg-today, .st-bg-td-first, .st-bg-td-last {
background-color: #FFF !important;
border-color: #DDD !important;
}

@media print  { .noprint  { display: none; } }
@media print { .noprint { display: inline !important; }
#funbox {display:none !important;}
 }


#topLeftNavigation{
left: -10px !important;
}
.applogo{
display:none;
}
#gb {display:none}
#topRightNavigation {display:none}

有权申请从开始。 。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签