@conduction/nextcloud-vue 1.0.0-beta.16 → 1.0.0-beta.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6260,6 +6260,55 @@ to { opacity: 1; max-height: 600px;
6260
6260
  }
6261
6261
 
6262
6262
 
6263
+ .cn-form-page {
6264
+ display: flex;
6265
+ flex-direction: column;
6266
+ gap: 1rem;
6267
+ padding: 1rem;
6268
+ max-width: 720px;
6269
+ margin: 0 auto;
6270
+ color: var(--color-main-text);
6271
+ }
6272
+ .cn-form-page__form {
6273
+ display: flex;
6274
+ flex-direction: column;
6275
+ gap: 1rem;
6276
+ }
6277
+ .cn-form-page__field {
6278
+ display: flex;
6279
+ flex-direction: column;
6280
+ gap: 0.25rem;
6281
+ }
6282
+ .cn-form-page__field-help {
6283
+ color: var(--color-text-maxcontrast);
6284
+ font-size: 0.85em;
6285
+ }
6286
+ .cn-form-page__error {
6287
+ color: var(--color-error);
6288
+ background: var(--color-error-hover, transparent);
6289
+ padding: 0.5rem 0.75rem;
6290
+ border-radius: var(--border-radius);
6291
+ }
6292
+ .cn-form-page__success {
6293
+ color: var(--color-success-text, var(--color-main-text));
6294
+ background: var(--color-success-hover, transparent);
6295
+ padding: 1rem;
6296
+ border-radius: var(--border-radius);
6297
+ text-align: center;
6298
+ }
6299
+ .cn-form-page__actions {
6300
+ display: flex;
6301
+ justify-content: flex-end;
6302
+ gap: 0.5rem;
6303
+ }
6304
+ .cn-form-page__submit {
6305
+ display: flex;
6306
+ justify-content: flex-start;
6307
+ gap: 0.5rem;
6308
+ margin-top: 0.5rem;
6309
+ }
6310
+
6311
+
6263
6312
  .cn-page-renderer {
6264
6313
  display: contents;
6265
6314
  }