File tree 4 files changed +45
-3
lines changed
theme/assets/semantic-ui/less/invenio_app_rdm/theme
4 files changed +45
-3
lines changed Original file line number Diff line number Diff line change @@ -935,6 +935,7 @@ def github_link_render(record):
935
935
"metadata.version" ,
936
936
"metadata.publisher" ,
937
937
],
938
+ "funding-section" : ["metadata.funding" ],
938
939
"alternate-identifiers-section" : ["metadata.identifiers" ],
939
940
"related-works-section" : ["metadata.related_identifiers" ],
940
941
"visibility-section" : ["access.embargo.until" ],
Original file line number Diff line number Diff line change 155
155
156
156
.generate-ck-editor-heights(30);
157
157
158
- .ui.form .error -label {
158
+ .ui.form .accordion -label {
159
159
padding: 0.5rem 0.7rem !important;
160
- background-color: @errorTextColor;
161
- color: white;
162
160
margin-left: 1rem;
161
+ &.error {
162
+ background-color: @errorTextColor;
163
+ color: white;
164
+ }
165
+ &.info {
166
+ background-color: @infoBackgroundColor;
167
+ color: @infoTextColor;
168
+ }
169
+ &.warning {
170
+ background-color: @warningBackgroundColor;
171
+ color: @warningTextColor;
172
+ }
173
+ &.failure {
174
+ background-color: @errorBackgroundColor;
175
+ color: @errorTextColor;
176
+ }
163
177
}
164
178
165
179
.ui.form .success.message,
Original file line number Diff line number Diff line change 3
3
***********************************************/
4
4
5
5
@infoTextColor: #0e576c;
6
+ @infoBackgroundColor: #f8ffff;
7
+ @infoBorderColor: #a9d5de;
Original file line number Diff line number Diff line change 28
28
&.transparent {
29
29
background-color: transparent;
30
30
}
31
+
32
+ &.info {
33
+ border: 1px solid @infoBorderColor;
34
+ background-color: @infoBackgroundColor;
35
+ color: @infoTextColor;
36
+ }
37
+
38
+ &.warning {
39
+ border: 1px solid @warningColor;
40
+ background-color: @warningBackgroundColor;
41
+ color: @warningColor;
42
+ }
43
+
44
+ &.failure {
45
+ border: 1px solid @errorTextColor;
46
+ background-color: @errorBackgroundColor;
47
+ color: @errorTextColor;
48
+ }
49
+ }
50
+
51
+
52
+ .ui.prompt.label.warning
53
+ {
54
+ background-color: @warningColor;
55
+
31
56
}
32
57
33
58
.subject {
You can’t perform that action at this time.
0 commit comments