rbtech / css-purge

A CSS tool written in Node JS as a command line app or library for the purging, burning, reducing, shortening, compressing, cleaning, trimming and formatting of duplicate, extra, excess or bloated CSS.
http://rbtech.github.io/css-purge
MIT License
125 stars 19 forks source link

After purge, all the hover styles are removed. #55

Open metalbrick opened 3 years ago

metalbrick commented 3 years ago
.toppest-right .iconfont {
  font-size: 1.4rem;
}
.toppest-right a:hover {
  text-decoration: none;
  color: #23a4db;
}
#topHeader {
  background: #08a1e5 url("../img/top-header.jpg") top no-repeat;
}

After css-purge

.toppest-right .iconfont {
  font-size: 1.4rem;
}
#topHeader {
  background: #08a1e5 url("../img/top-header.jpg") top no-repeat;
}