Created
April 4, 2017 12:06
-
-
Save jessengatai/960fd9ddf8701fb91a0d4c64bd937aae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* re-skin the title sections */ | |
#customize-theme-controls li.accordion-sectional-title { | |
display: block !important; | |
background: none; | |
outline: none; | |
padding: 25px 15px 10px 15px; | |
border: none; | |
} | |
#customize-theme-controls li.accordion-sectional-title h3 { | |
font-size: 18px; | |
line-height: 1.6; | |
font-weight: 400; | |
padding: 0; | |
margin: 0; | |
outline: none; | |
color: #2d3136 !important; /* no visual hover effects */ | |
border: none !important; /* no visual hover effects */ | |
background: none !important; /* no visual hover effects */ | |
} | |
/* hide the title arrow */ | |
#customize-theme-controls li.accordion-sectional-title h3:after { | |
display: none; | |
} | |
/* style the description */ | |
span.sectional-title-description { | |
margin-top: 5px; | |
display: block; | |
font-style: italic; | |
} | |
/* if title is first in custmiser panel, remove top border */ | |
#customize-theme-controls li.accordion-sectional-title:nth-child(2) { | |
border-top: none; | |
padding-top: 15px; | |
} | |
#customize-theme-controls li.accordion-sectional-title + li.accordion-section { | |
border-top: 1px solid #ddd; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment