-
-
Notifications
You must be signed in to change notification settings - Fork 725
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up SCSS as suggested by scss-lint
- Loading branch information
1 parent
350f002
commit 9bcca71
Showing
6 changed files
with
30 additions
and
20 deletions.
There are no files selected for viewing
18 changes: 10 additions & 8 deletions
18
app/assets/stylesheets/admin/pages/product_image_upload_modal.css.scss
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
@import 'foundation'; | ||
@import 'foundation-icons'; | ||
|
||
@import 'base/*'; | ||
@import '*'; | ||
@import 'pages/*'; | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
$modal-background-color: #efefef; | ||
$modal-content-background-color: #fff; | ||
$modal-alert-link-color: #fff; | ||
$modal-alert-link-hover-color: rgba(255, 255, 255, .7); |
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
22 changes: 11 additions & 11 deletions
22
app/assets/stylesheets/darkswarm/pages/login_modal.css.scss
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
@import '../base/colors'; | ||
|
||
// Styling for login modal to style tabs | ||
.reveal-modal.login-modal { | ||
border-bottom-color: #efefef; | ||
border-bottom-color: $modal-background-color; | ||
} | ||
|
||
.login-modal { | ||
background: #efefef; | ||
background: $modal-background-color; | ||
|
||
.tabs-content { | ||
background: #fff; | ||
background: $modal-content-background-color; | ||
padding-top: 10px; | ||
} | ||
|
||
.alert-box { | ||
a { | ||
color: white; | ||
text-decoration: underline; | ||
.alert-box a { | ||
color: $modal-alert-link-color; | ||
text-decoration: underline; | ||
|
||
&:hover { | ||
color: rgba(255, 255, 255, 0.7); | ||
text-decoration: underline; | ||
} | ||
&:hover { | ||
color: $modal-alert-link-hover-color; | ||
text-decoration: underline; | ||
} | ||
} | ||
} |