Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
yuguang committed Mar 15, 2015
2 parents 5aca42c + 3f309ef commit cb7ef81
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
10 changes: 10 additions & 0 deletions static/css/fiddle.css
Expand Up @@ -353,3 +353,13 @@ div#source .ui-tabs {
border: 0;
box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
}
.ui-accordion-header:nth-of-type(1) a {
background-color: #2dd2b4 !important;
}
.ui-accordion-header:nth-of-type(2) a {
background-color: #f85857 !important;
}
.ui-accordion-header:nth-of-type(2) a,
.ui-accordion-header:nth-of-type(1) a {
color: white;
}
14 changes: 14 additions & 0 deletions static/css/fiddle.less
@@ -1,4 +1,6 @@
@import "scrollbar.less";
@fiddle-green: #2dd2b4;
@fiddle-red: #f85857;

html {
overflow-y: hidden;
Expand Down Expand Up @@ -393,4 +395,16 @@ div#source {
border: 0;
box-shadow: inset 0 12px 12px -12px rgba(0,0,0,0.5);
}
}

.ui-accordion-header:nth-of-type(1) a {
background-color: @fiddle-green !important;
}

.ui-accordion-header:nth-of-type(2) a {
background-color: @fiddle-red !important;
}

.ui-accordion-header:nth-of-type(2) a, .ui-accordion-header:nth-of-type(1) a {
color: white;
}

0 comments on commit cb7ef81

Please sign in to comment.