-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copy .scss-lint.yml from equella_theme repo clean up a few SCSS files to reduce linting warnings
- Loading branch information
Showing
5 changed files
with
46 additions
and
49 deletions.
There are no files selected for viewing
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,17 @@ | ||
linters: | ||
# so many color references, some of which are fine (e.g. black, white) | ||
# we'll ignore this but could activatve once the code base is cleaner | ||
ColorVariable: | ||
enabled: false | ||
Comment: | ||
enabled: false | ||
# IDs are sadly necessary when customizing vendor sites | ||
IdSelector: | ||
enabled: false | ||
# many selectors target EQUELLA HTML where we don't control format | ||
# of IDs & class names, unable to meet this standard | ||
SelectorFormat: | ||
enabled: false | ||
|
||
Indentation: | ||
width: 4 |
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 |
---|---|---|
@@ -1,4 +1,25 @@ | ||
@import 'dashboard-base.scss'; | ||
@import 'quick-search.scss'; | ||
@import 'tour.scss'; | ||
@import 'campus-planning.scss'; | ||
@import 'dashboard-base'; | ||
@import 'quick-search'; | ||
@import 'tour'; | ||
@import 'campus-planning'; | ||
|
||
// gallery container & images | ||
.imgContainer { | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
box-sizing: border-box; | ||
display: none; | ||
width: 100%; | ||
|
||
&.active { | ||
display: block !important; | ||
|
||
a img:hover { | ||
opacity: .8; | ||
} | ||
|
||
img { | ||
display: none; | ||
} | ||
} | ||
} |
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,3 +1,3 @@ | ||
@import 'dashboard-base.scss'; | ||
@import 'quick-search.scss'; | ||
@import 'tour.scss'; | ||
@import 'dashboard-base'; | ||
@import 'quick-search'; | ||
@import 'tour'; |
This file was deleted.
Oops, something went wrong.