blob: 262b2b4565b03f8c5c1e6945b5de52b9fc2ef27b [file] [log] [blame]
Akron7e5afce2020-08-25 15:50:19 +02001@import "../util";
2
3/**
4 * Styles for OAuth management form.
5 */
6
Akron0f1b93b2020-03-17 11:37:19 +01007ul.client-list {
8 padding-left: 1.5em;
Akron7e5afce2020-08-25 15:50:19 +02009
Akron1a9d5be2020-03-19 17:28:33 +010010 li.client {
Akron0f1b93b2020-03-17 11:37:19 +010011 list-style-type: none;
Akronb6b156e2022-03-31 14:57:49 +020012 margin-bottom: 1.5em;
Akron7e5afce2020-08-25 15:50:19 +020013
14 span.client-name::before {
15 margin-left: -1.5em;
Akron0f1b93b2020-03-17 11:37:19 +010016 }
Akron7e5afce2020-08-25 15:50:19 +020017
Akronb6b156e2022-03-31 14:57:49 +020018 p.client-desc, p.client-url {
19 font-weight: normal;
20 font-size: 80%;
21 margin-top: .2em;
22 margin-bottom: .2em;
Akron0f1b93b2020-03-17 11:37:19 +010023 }
24 }
Akron9ffb4a32021-06-08 16:11:21 +020025
Akron5f756412021-06-18 11:35:58 +020026 br {
27 display: block;
28 margin: 3pt 0;
Akron9ffb4a32021-06-08 16:11:21 +020029 }
Akron1a9d5be2020-03-19 17:28:33 +010030}
31
32span.client-name {
Akron7e5afce2020-08-25 15:50:19 +020033 font-weight: bold;
34
Akron1a9d5be2020-03-19 17:28:33 +010035 &::before {
Akron7e5afce2020-08-25 15:50:19 +020036 @include icon-font;
37 display: inline-block;
38 width: 1.5em;
Akronb45300f2022-04-28 14:03:53 +020039 content: $fa-client;
Akron7e5afce2020-08-25 15:50:19 +020040 color: $ids-blue-1;
Akron1a9d5be2020-03-19 17:28:33 +010041 font-size: 100%;
42 }
Akron9ffb4a32021-06-08 16:11:21 +020043}
44
Akronb45300f2022-04-28 14:03:53 +020045.client-type-confidential::after {
46 @include icon-font;
47 margin-left: .3em;
48 display: inline-block;
49 width: 1.5em;
50 font-size: 70%;
51 line-hight: top;
52 vertical-align: text-top;
53}
54
55.client-type-confidential::after {
56 content: $fa-confidential;
57 color: $ids-blue-1;
58}
59
Akron9ffb4a32021-06-08 16:11:21 +020060li.token {
61 list-style-type: none;
62}
63
64
65label[for=token] {
66 font-weight: bold;
67
68 &::before {
69 @include icon-font;
70 font-feature-settings: "ss01" on;
71 margin-left: -1.5em;
72 display: inline-block;
73 width: 1.5em;
74 content: $fa-token;
75 color: $ids-blue-1 !important;
76 font-size: 100%;
77 font-weight: 900;
78 }
79}