Skip to content

Commit

Permalink
removed COMPASS SASS
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Lin committed Jan 3, 2023
1 parent bee2ea3 commit 20a8ab3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 31 deletions.
13 changes: 4 additions & 9 deletions source/assets/scss/system-requirements-check-frontend.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
@import "variables";
@import "systemrequirementscheckfont";
@import "compass/css3/box-sizing";
@import "compass/css3/opacity";

.system_req_check {

Expand All @@ -11,7 +9,7 @@
margin-bottom: 5px;
border-left: solid 4px $callout-border;
background-color: $callout-bg;
@include box-sizing( "border-box" );
box-sizing: border-box;

.warning {
color: #ff8100;
Expand Down Expand Up @@ -71,7 +69,7 @@
display: inline;
padding: 0;
margin: 0 10px 0 0;
@include opacity( .75 );
opacity: 0.75;
}

}
Expand All @@ -97,17 +95,14 @@
background-color: $callout-danger-bg;
}

span[class^="icon-"].big {
span[class^="icon-"].big,
span[class*=" icon-"].big {
display: inline-block;
font-size: 200%;
vertical-align: bottom;
margin-right: 10px;
}

span[class*=" icon-"].big {
@extend span[class^="icon-"].big;
}

.green {
color: $callout-success-border;
}
Expand Down
30 changes: 8 additions & 22 deletions source/assets/scss/system-requirements-check-settings.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
@import "variables";
@import "breakpoint";
@import "compass/css3/border-radius";
@import "compass/css3/box-shadow";
@import "compass/css3/box-sizing";

// settings page wrapper
.src-wrap {
Expand All @@ -23,10 +19,9 @@
padding: 16px;
margin-top: 16px;
background-color:#fff;

@include border-radius( 5px );
@include single-box-shadow( 0, 3px, 0, 0, #dbdbdb );
@include box-sizing( "border-box" );
border-radius: 5px;
box-shadow: 0 3px 0 0 #dbdbdb;
box-sizing: border-box;

h3 {
margin: 0;
Expand All @@ -46,10 +41,9 @@
padding: 16px 16px 0;
margin-top: 16px;
background-color:#fff;

@include border-radius( 5px );
@include single-box-shadow( 0, 3px, 0, 0, #dbdbdb );
@include box-sizing( "border-box" );
border-radius: 5px;
box-shadow: 0 3px 0 0 #dbdbdb;
box-sizing: border-box;

h3 {
margin: 0;
Expand Down Expand Up @@ -101,14 +95,6 @@
height: 25px;
}

@include breakpoint( max-width $mobile ) {

.src-cb {
display: block;
}

}

}

}
Expand All @@ -119,7 +105,7 @@
padding: 6px;
margin: 16px 0;
background-color: $callout-bg;
@include box-sizing( "border-box" );
box-sizing: border-box;

.src-cb {
font-weight: bold;
Expand All @@ -134,7 +120,7 @@
margin: 16px 0;
border-left: solid 4px $callout-border;
background-color: $callout-bg;
@include box-sizing( "border-box" );
box-sizing: border-box;
}

.callout.info {
Expand Down

0 comments on commit 20a8ab3

Please sign in to comment.