More Sass quality fixes

This commit is contained in:
Andy Armstrong
2017-10-11 17:18:58 -04:00
parent 6387e3a813
commit bd1a0d96cf
78 changed files with 1869 additions and 1641 deletions

View File

@@ -3,6 +3,7 @@
.CodeMirror {
@include box-sizing(border-box);
width: 100%;
position: relative;
height: 379px;

View File

@@ -18,11 +18,13 @@
.editor-with-tabs {
@include clearfix();
position: relative;
.edit-header {
@include box-sizing(border-box);
padding: 18px $baseline;
top: 0 !important; // ugly override for second level tab override
right: 0;
@@ -62,17 +64,19 @@
margin-left: 8px;
a.tab {
@include font-size(14);
@include linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
border: 1px solid $blue-d1;
border-radius: 3px;
padding: ($baseline/4) ($baseline);
background-color: $blue;
font-weight: bold;
color: $white;
@include font-size(14);
@include linear-gradient(top, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
border: 1px solid $blue-d1;
border-radius: 3px;
padding: ($baseline/4) ($baseline);
background-color: $blue;
font-weight: bold;
color: $white;
&.current {
@include linear-gradient($blue, $blue);
color: $blue-d1;
box-shadow: inset 0 1px 2px 1px $shadow-l1;
background-color: $blue-d4;
@@ -81,7 +85,7 @@
&:hover, &:focus {
box-shadow: inset 0 1px 2px 1px $shadow;
background-image: linear-gradient(#009FE6, #009FE6) !important;
background-image: linear-gradient(#009fe6, #009fe6) !important;
}
}
}