On one page I use several JS extensions ( DataTables and JqueryUI - Dialog ). And in the header I declare links to their default styles <link rel="stylesheet" type="text/css" href= . There is a conflict. How to specify for a particular div style? This is not how it works:
#dialog_create_product { @import url("https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"); }
jquery-ui.cssmay be styles for, for example, elements in thebody, and you lock styles for them inside#dialog_create_product. As a result, they will never be applied to the layout of jQueryUI components. - Vitaliy Emelyantsevdiv- Bogdan Shulgajquery-uido not need to, in principle, strive to connect in the context of a block. These are not modular styles. Connect them as they connected, through<link rel="...and fix conflicts by overloading custom styles. - Vitaly Emelyantsevthemes/ui-lightness), but instead style the interface yourself. - Vitaliy Emelyantsev