blob: 9e1a3d7aa8a23b69f009e8b55eba2714c7a3bcd6 [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
Akron6b75d122022-05-12 17:39:05 +020060#client_source {
61 white-space: pre;
62 border-radius: $standard-border-radius;
63 border-color: $ids-grey-2;
64 border-style: solid;
65 background-color: $light-orange;
66}
67
Akron9ffb4a32021-06-08 16:11:21 +020068li.token {
69 list-style-type: none;
70}
71
72
73label[for=token] {
74 font-weight: bold;
75
76 &::before {
77 @include icon-font;
78 font-feature-settings: "ss01" on;
79 margin-left: -1.5em;
80 display: inline-block;
81 width: 1.5em;
82 content: $fa-token;
83 color: $ids-blue-1 !important;
84 font-size: 100%;
85 font-weight: 900;
86 }
87}