-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: openid connect support (#2873)
- Loading branch information
Showing
28 changed files
with
851 additions
and
229 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
30 changes: 20 additions & 10 deletions
30
app/assets/stylesheets/application/components/_login_form.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 |
---|---|---|
@@ -1,22 +1,32 @@ | ||
.loginForm { | ||
|
||
} | ||
.loginForm {} | ||
|
||
|
||
.loginForm__input { | ||
margin-bottom:15px; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.loginForm__submit { | ||
display:flex; | ||
justify-content:space-between; | ||
align-items:center; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
|
||
.loginForm__links { | ||
font-size:12px; | ||
color:#999; | ||
font-size: 12px; | ||
color: #999; | ||
text-decoration: underline; | ||
line-height:1.7; | ||
line-height: 1.7; | ||
} | ||
|
||
.loginForm__divider { | ||
margin-top: 25px; | ||
margin-bottom: 25px; | ||
border-top: 1px solid #e4e8ef; | ||
} | ||
|
||
.loginForm__localTitle { | ||
text-align: center; | ||
margin-bottom: 15px; | ||
color: #999; | ||
} |
75 changes: 34 additions & 41 deletions
75
app/assets/stylesheets/application/components/_user_list.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 |
---|---|---|
@@ -1,74 +1,67 @@ | ||
.userList { | ||
border-radius:4px; | ||
color:$darkBlue; | ||
overflow:hidden; | ||
box-shadow:0 0 10px rgba(0,0,0,0.2); | ||
border-radius: 4px; | ||
color: $darkBlue; | ||
overflow: hidden; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.userList__item { | ||
display:block; | ||
background:#fff; | ||
padding:15px; | ||
display:flex; | ||
display: block; | ||
background: #fff; | ||
padding: 15px; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.userList__item:nth-child(even) { | ||
background:none; | ||
background: none; | ||
} | ||
|
||
.userList__item + .userList__item { | ||
border-top:1px solid lighten(#ccd4e0, 10%); | ||
} | ||
|
||
.userList__avatar { | ||
width:50px; | ||
height:50px; | ||
border-radius:50%; | ||
background:#fff; | ||
border:2px solid #efefef; | ||
padding:3px; | ||
flex: 0 0 auto; | ||
.userList__item+.userList__item { | ||
border-top: 1px solid lighten(#ccd4e0, 10%); | ||
} | ||
|
||
.userList__details { | ||
flex: 1 1 auto; | ||
margin:0 25px; | ||
margin: 0 0; | ||
} | ||
|
||
|
||
.userList__actions { | ||
flex: 0 0 auto; | ||
width:180px; | ||
font-size:12px; | ||
line-height:1.5; | ||
color:#999; | ||
text-decoration: underline; | ||
width: 120px; | ||
font-size: 12px; | ||
line-height: 1.5; | ||
color: #999; | ||
|
||
a { | ||
text-decoration: underline; | ||
} | ||
} | ||
|
||
.userList__name { | ||
font-weight:600; | ||
font-size:16px; | ||
margin-bottom:3px; | ||
font-weight: 600; | ||
font-size: 16px; | ||
margin-bottom: 3px; | ||
} | ||
|
||
.userList__owner { | ||
vertical-align:2px; | ||
margin-left:5px; | ||
background-color:$orange; | ||
vertical-align: 2px; | ||
margin-left: 5px; | ||
background-color: $orange; | ||
} | ||
|
||
.userList__pending { | ||
vertical-align:2px; | ||
margin-left:5px; | ||
background-color:#ccc; | ||
vertical-align: 2px; | ||
margin-left: 5px; | ||
background-color: #ccc; | ||
} | ||
|
||
.userList__admin { | ||
vertical-align:2px; | ||
margin-left:5px; | ||
background-color:$blue; | ||
.userList__tag { | ||
vertical-align: 2px; | ||
margin-left: 3px; | ||
} | ||
|
||
.userList__revoke { | ||
color:$red; | ||
color: $red; | ||
} |
Oops, something went wrong.