Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi Elliot,
If I understand correctly you would like to remove the box-shadow of Kendo UI Button? This can be achieved using the following CSS rule:
.k-button,
.k-button:hover,
.k-button.k-state-hover,
.k-button.k-state-focused,
.k-button:focus,
.k-button:focus:not(.k-state-disabled):not([disabled]),
.k-button:focus:active:not(.k-state-disabled):not([disabled]) {
box-shadow:
none
;
}
Thanks. I ended up creating a new class (.k-button-flat) that I assign to the button I want to be flat and used the following css:
.k-button.k-button-flat:not(:hover):not(:focus){ background-color: transparent; border-color: transparent; } .k-button.k-button-flat, .k-button.k-button-flat:hover, .k-button.k-button-flat.k-state-hover, .k-button.k-button-flat.k-state-focused, .k-button.k-button-flat:focus, .k-button.k-button-flat:focus:not(.k-state-disabled):not([disabled]), .k-button.k-button-flat:focus:active:not(.k-state-disabled):not([disabled]) { box-shadow: none; }
to support https://material.angularjs.org/latest/#/demo/material.components.button