File tree Expand file tree Collapse file tree 2 files changed +27
-12
lines changed
openid-connect-server-webapp/src/main/webapp/resources Expand file tree Collapse file tree 2 files changed +27
-12
lines changed Original file line number Diff line number Diff line change @@ -186,3 +186,9 @@ h1,label {
186
186
.user-profile dd , .user-profile dt {
187
187
height : 20px ;
188
188
}
189
+
190
+ /* Client table images */
191
+ .client-logo {
192
+ max-width : 64px ;
193
+ max-height : 64px
194
+ }
Original file line number Diff line number Diff line change 28
28
</td >
29
29
30
30
< td >
31
- < div >
32
- < span class = "clientid-substring" title = "<%- client.clientId %> (click to display client ID)" > < % - client . clientName != null ? client . clientName : ( client . clientId . substr ( 0 , 8 ) + '...' ) % > < / span >
33
- </ div >
34
- < div >
35
- < input type = "text" readonly style = "cursor: text" class = "clientid-full input-xxlarge" value = "<%- client.clientId %>" />
36
- < / d i v >
37
- < div >
38
- < % if ( client . dynamicallyRegistered ) { % >
39
- < span class = "label label-inverse dynamically-registered" > < i class = "icon-globe icon-white" > </ i > </ span >
40
- < % } % >
41
- < % if ( client . allowIntrospection ) { % >
42
- < span class = "label allow-introspection" > < i class = "icon-eye-open icon-white" > </ i > </ span >
31
+
32
+ < div class = "media" >
33
+ < % if ( client . logoUri ) { % >
34
+ < span class = "pull-left" > < img class = "media-object client-logo" src = "<%- client.logoUri %>" > </ span >
43
35
< % } % >
36
+
37
+ < div class = "media-body" >
38
+ < span class = "clientid-substring" title = "<%- client.clientId %> (click to display client ID)" > < % - client . clientName != null ? client . clientName : ( client . clientId . substr ( 0 , 8 ) + '...' ) % > </ span >
39
+ </ div >
40
+ < div >
41
+ < input type = "text" readonly style = "cursor: text" class = "clientid-full input-xxlarge" value = "<%- client.clientId %>" />
42
+ </ div >
43
+ < div >
44
+ < % if ( client . dynamicallyRegistered ) { % >
45
+ < span class = "label label-inverse dynamically-registered" > < i class = "icon-globe icon-white" > </ i > </ span >
46
+ < % } % >
47
+ < % if ( client . allowIntrospection ) { % >
48
+ < span class = "label allow-introspection" > < i class = "icon-eye-open icon-white" > </ i > </ span >
49
+ < % } % >
50
+ </ div >
44
51
</ div >
52
+
53
+
45
54
< div >
46
55
< small class = "muted" title = "<%- hoverCreationDate %>" > < i class = "icon-time" > </ i > < span data-i18n = "client.client-table.registered" > Registered</ span > < % - displayCreationDate % > </ small >
47
56
</ div >
You can’t perform that action at this time.
0 commit comments