Skip to content

Commit

Permalink
Merge branch 'release-2.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
olgabrani committed Aug 1, 2019
2 parents 625b1c2 + 3b0d671 commit 9fe8d97
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 7 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.3.0](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.2.1...v2.3.0) - 2019-08-01

### Added

- Module discopower: Add style rules and logos for the buttons of the IdPs:
- Bitbucket
- Github


## [v2.2.1](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.2.0...v2.2.1) - 2019-07-03

### Fixed
Expand All @@ -19,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- QQ
- WeChat
- Epos
- Add info about compatiblity in README.
- Add info about compatibility in README.
- Enable/disable cookie banner functionality via setting in config file.

### Changed
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
simplesamlphp-module-themevanilla
version 2.2.1
version 2.3.0
1 change: 1 addition & 0 deletions www/resources/images/bitbucket.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added www/resources/images/github-mark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added www/resources/images/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion www/resources/sass/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ $openminted: #02bab4;
$wechat: #2dc101;
$qq: #4292FF;
$epos: #10482A;

$bitbucket: #0747a6;
$github: #24292e;
34 changes: 30 additions & 4 deletions www/resources/sass/_idps_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,35 @@
&.epos {
border-color: $epos;
background-color: $white;
img {
padding: 5px;
margin-right: 0;
}
img {
padding: 5px;
margin-right: 0;
}
}
&.bitbucket {
border-color: $bitbucket;
background-color: $white;
span {
display: none;
}
img {
padding: 5px;
margin-right: 0;
}
}
&.github {
border-color: $github;
background: $white url("../images/github.png") no-repeat center center;
background-size: 55%;
span {
display: none;
}
img {
visibility: hidden;
}
&:hover {
background: $white url("../images/github-mark.png") no-repeat center center;
background-size: 26px;
}
}
}

0 comments on commit 9fe8d97

Please sign in to comment.