/*------------------------------------*\
$reset.less
\*------------------------------------*/
// reset to prevent conflict for Joomla Template
* {
//safe to use width:100% without caring the padding
.box-sizing(border-box);
}
//reset some template add in value to :before :after
//e.g.:
with bullet
ul,ol,li {
margin: 0;
padding: 0;
// list-style: none;
&:before,
&:after {
background: none;
display: none;
}
}
tr, td {
border: 1px solid transparent;
}
a {
background: transparent;
&:link {
text-decoration: none;
}
&:hover {
color: @linkColorHover;
}
&:hover,
&:focus,
&:active {
color: @linkColor;
background-color: transparent;
}
}