forked from sakaiproject/sakai
-
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.
SAK-42891 Styled Gradebook Settings panels as expandable (sakaiprojec…
- Loading branch information
1 parent
8d39ed1
commit 21adc79
Showing
3 changed files
with
27 additions
and
1 deletion.
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
25 changes: 25 additions & 0 deletions
25
library/src/morpheus-master/sass/modules/tool/_elements.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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.sakai-accordion { | ||
.panel-heading > .panel-title { | ||
padding: 0; | ||
|
||
a { | ||
padding: $standard-spacing; | ||
} | ||
a, a:hover { | ||
text-decoration: none; | ||
} | ||
a:focus { | ||
outline-offset: -#{$focus-outline-width}; // keep outline contained within the element | ||
} | ||
a::before { | ||
content: "\f0da"; // fa-caret-right | ||
display: inline-block; | ||
width: 0.75em; // fixed width for both icons, similar to .fa-fw | ||
font-family: FontAwesome; | ||
text-align: center; | ||
} | ||
a[aria-expanded="true"]::before { | ||
content: "\f0d7"; // fa-caret-down | ||
} | ||
} | ||
} |
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