Created
January 28, 2015 15:12
-
-
Save Fannon/e82dcc6b90ecd3755023 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
/** | |
* Clean, light-grey style | |
* @author Simon Heimler 2015 | |
*/ | |
.ui-tabs .ui-tabs-panel { | |
padding: 4px 10px; | |
} | |
.ui-widget-header { | |
background: none; | |
} | |
.ui-state-active, | |
.ui-widget-content { | |
background: #FCFCFC !important; | |
} | |
.ui-tabs-nav a, .ui-tabs-nav a:visited { | |
color: #555 !important; | |
background: #FCFCFC; | |
border-color: #CCC; | |
border-radius: 3px 3px 0 0; | |
border-bottom: 1px solid #FCFCFC; | |
outline: none; /* Do not display the selection box from the browser if it's clicked */ | |
} | |
.ui-tabs-nav a { | |
background: #FFF; | |
} | |
.ui-tabs-nav .ui-state-active a { | |
background: #FCFCFC; | |
background: -moz-linear-gradient(top, #ededed 0%, #fcfcfc 100%); | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#fcfcfc)); | |
background: -webkit-linear-gradient(top, #ededed 0%,#fcfcfc 100%); | |
background: -ms-linear-gradient(top, #ededed 0%,#fcfcfc 100%); | |
background: linear-gradient(to bottom, #ededed 0%,#fcfcfc 100%); | |
} | |
.ui-widget-header { | |
border-bottom: 1px solid #CCC; | |
} | |
.ui-tabs-nav li { | |
border-color: #CCC !important; | |
border-radius: 3px 3px 0 0; | |
} | |
/* HeaderTabs SemanticForms error styling */ | |
.headerTabsErrorCount { | |
color: #E50909; | |
margin-left: 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment