override - CSS overriding when using inheritance -
override - CSS overriding when using inheritance -
i'm trying override css class used display arrow. want create arrow disappear. class found in liferay theme.
this css class:
.v-tabsheet-tabitem-selected:after { border: 10px solid; border-bottom-width: 0; border-color: #333 transparent transparent; bottom: -6px; content: '-'; display: block; height: 0; left: 50%; margin-left: -10px; position: absolute; text-indent: -9999px; width: 0; }
i did:
.v-tabsheet-tabitem-selected:after{ content: none; }
it not seem work, there other way?
it looks arrow beingness drawn css borders, seek overriding this:
.v-tabsheet-tabitem-selected:after {border: none;}
css override
Comments
Post a Comment