Skip to content

Commit 9fe8d97

Browse files
committed
Merge branch 'release-2.3.0'
2 parents 625b1c2 + 3b0d671 commit 9fe8d97

File tree

7 files changed

+44
-7
lines changed

7 files changed

+44
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v2.3.0](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.2.1...v2.3.0) - 2019-08-01
8+
9+
### Added
10+
11+
- Module discopower: Add style rules and logos for the buttons of the IdPs:
12+
- Bitbucket
13+
- Github
14+
15+
716
## [v2.2.1](https://github.com/rciam/simplesamlphp-module-themevanilla/compare/v2.2.0...v2.2.1) - 2019-07-03
817

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

2534
### Changed

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
simplesamlphp-module-themevanilla
2-
version 2.2.1
2+
version 2.3.0

www/resources/images/bitbucket.svg

Lines changed: 1 addition & 0 deletions
Loading
4.17 KB
Loading

www/resources/images/github.png

12.7 KB
Loading

www/resources/sass/_colors.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ $openminted: #02bab4;
4141
$wechat: #2dc101;
4242
$qq: #4292FF;
4343
$epos: #10482A;
44-
44+
$bitbucket: #0747a6;
45+
$github: #24292e;

www/resources/sass/_idps_buttons.scss

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,35 @@
142142
&.epos {
143143
border-color: $epos;
144144
background-color: $white;
145-
img {
146-
padding: 5px;
147-
margin-right: 0;
148-
}
145+
img {
146+
padding: 5px;
147+
margin-right: 0;
148+
}
149+
}
150+
&.bitbucket {
151+
border-color: $bitbucket;
152+
background-color: $white;
153+
span {
154+
display: none;
155+
}
156+
img {
157+
padding: 5px;
158+
margin-right: 0;
159+
}
160+
}
161+
&.github {
162+
border-color: $github;
163+
background: $white url("../images/github.png") no-repeat center center;
164+
background-size: 55%;
165+
span {
166+
display: none;
167+
}
168+
img {
169+
visibility: hidden;
170+
}
171+
&:hover {
172+
background: $white url("../images/github-mark.png") no-repeat center center;
173+
background-size: 26px;
174+
}
149175
}
150176
}

0 commit comments

Comments
 (0)