简体   繁体   English

kendoui Scheduler更改标题颜色

[英]kendoui scheduler change header color

I need to change those blu button color but I'm not able to find the correct selector (in my application I've got a site.css file that has all the custom css rules) 我需要更改那些蓝色按钮的颜色,但是我找不到正确的选择器(在我的应用程序中,我有一个包含所有自定义CSS规则的site.css文件)

I've also search on the telerik's online reference for the kendoui scheduler but with no luck 我也在telek的在线参考中搜索kendoui调度程序,但是没有运气

在此处输入图片说明

Anyone can help me please? 有人可以帮我吗? Thanks in advance 提前致谢

You can use the following selectors: 您可以使用以下选择器:

Views: 观看次数:

.k-scheduler-views .k-link { // For all the views
    background: blue;
}

.k-view-day .k-link { // For day view only
    background: blue;
}

.k-view-week .k-link { // For week view only
    background: blue;
}

.k-view-month .k-link { // month-view-only
    background: blue;
}

Date navigation: 日期导航:

.k-scheduler-navigation .k-link { // For all date navigation controls, including arrows, "Today" and the date picker
    background: blue;
}

.k-nav-today .k-link { // For the "Today" button only
    background: blue;
}

.k-nav-prev .k-link { // For the previous arrow only
    background: blue;
}

.k-nav-next .k-link { // For the next arrow only
    background: blue;
}

.k-nav-current .k-link { // For the date picker only
    background: blue;
}

Note that you can find all of these selectors in the "Elements" tab of the Dev Tools of any browser. 请注意,您可以在任何浏览器的开发工具的“元素”标签中找到所有这些选择器。

Check out the snippet below. 查看下面的代码段。

 <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>Kendo UI Snippet</title> <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2018.3.1017/styles/kendo.common.min.css"/> <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2018.3.1017/styles/kendo.rtl.min.css"/> <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2018.3.1017/styles/kendo.silver.min.css"/> <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2018.3.1017/styles/kendo.mobile.all.min.css"/> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script src="https://kendo.cdn.telerik.com/2018.3.1017/js/kendo.all.min.js"></script> <style> .k-scheduler-navigation .k-link { background: blue; } .k-nav-today .k-link { background: green; } .k-nav-prev .k-link { background: red; } .k-nav-next .k-link { background: yellow; } .k-nav-current .k-link { background: cyan; } .k-scheduler-views .k-link { background: blue; } .k-view-day .k-link { background: green; } .k-view-week .k-link { background: red; } .k-view-month .k-link { background: yellow; } </style> </head> <body> <div id="scheduler"></div> <script> $("#scheduler").kendoScheduler({ date: new Date("2013/6/6"), views: ["day", "week", "month", "agenda"], dataSource: [ { id: 1, start: new Date("2013/6/6 08:00 AM"), end: new Date("2013/6/6 09:00 AM"), title: "Interview" }, { id: 2, start: new Date("2013/6/6 08:00 AM"), end: new Date("2013/6/6 09:00 AM"), title: "Meeting" } ] }); </script> </body> </html> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM