-
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.
Merge pull request #621 from CuBoulder/issue/tiamat-theme/588
Adds Class Note Page + Class Notes List Page
- Loading branch information
Showing
8 changed files
with
496 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,101 @@ | ||
.ucb-class-note-link{ | ||
font-size: 200%; | ||
font-weight: 700; | ||
color: #959595 !important; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.ucb-class-note-year-container{ | ||
margin-bottom: 10px; | ||
} | ||
|
||
.ucb-class-note-link:hover{ | ||
color: #333 !important; | ||
} | ||
|
||
.ucb-class-notes-list-container{ | ||
margin-top: 20px; | ||
} | ||
|
||
.class-note-posted-date{ | ||
font-size: 75%; | ||
} | ||
|
||
.ucb-class-notes-list-note-item{ | ||
margin-bottom: 20px; | ||
border-bottom: 1px solid rgba(128, 128, 128, 0.333); | ||
/* padding-bottom: 20px; */ | ||
} | ||
|
||
.class-note-year-select, .ucb-class-notes-filter-label{ | ||
margin-right: 10px; | ||
} | ||
|
||
.ucb-list-msg { | ||
font-size: 1.25em; | ||
font-weight: bolder; | ||
text-align: center; | ||
} | ||
|
||
.ucb-loading-data { | ||
color: #01579b; | ||
text-align: center; | ||
} | ||
|
||
.ucb-list-msg, | ||
.ucb-loading-data { | ||
display: block; | ||
} | ||
.ucb-list-msg[hidden], | ||
.ucb-loading-data[hidden] { | ||
display: none; | ||
} | ||
|
||
.class-notes-list-filter{ | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
align-items: center; | ||
padding: 10px; | ||
border: 1px solid rgba(128, 128, 128, 0.333); | ||
min-width: auto; | ||
} | ||
|
||
.ucb-class-notes-filter-label{ | ||
font-size: 85%; | ||
font-weight: 600; | ||
} | ||
|
||
.ucb-class-notes-view-all-container{ | ||
flex: 1; | ||
text-align: right; | ||
font-size: 85%; | ||
} | ||
.ucb-class-notes-read-more-container{ | ||
text-align: center; | ||
} | ||
.ucb-class-notes-read-more{ | ||
padding: 5px 10px; | ||
font-weight: bold; | ||
font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif; | ||
margin-bottom: 5px; | ||
background-clip: padding-box; | ||
color: #0277BD !important; | ||
border: 1px solid #0277BD; | ||
border-radius: 0px; | ||
background-color: transparent; | ||
text-decoration: none; | ||
} | ||
|
||
.ucb-class-notes-read-more:hover { | ||
transition: background-color 0.25s ease,border-color 0.25s ease,color 0.25s ease; | ||
background-color: #0277BD; | ||
color: white !important; | ||
} | ||
|
||
@media only screen and (max-width: 525px) { | ||
.ucb-class-notes-view-all-container{ | ||
flex: auto; | ||
text-align: inherit; | ||
} | ||
} |
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,3 @@ | ||
.ucb-class-notes{ | ||
padding: 20px 0; | ||
} |
Oops, something went wrong.