@conduction/nextcloud-vue 1.0.0-beta.143 → 1.0.0-beta.144
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.
- package/dist/nextcloud-vue.css +137 -136
- package/package.json +1 -1
- package/src/css/dashboard.css +4 -3
package/dist/nextcloud-vue.css
CHANGED
|
@@ -1038,9 +1038,10 @@
|
|
|
1038
1038
|
padding: 20px;
|
|
1039
1039
|
max-width: 1400px;
|
|
1040
1040
|
}
|
|
1041
|
-
/* Widget grid item borders for non-tile widgets
|
|
1042
|
-
|
|
1043
|
-
|
|
1041
|
+
/* Widget grid item borders for non-tile widgets. This is a global stylesheet,
|
|
1042
|
+
not a scoped SFC block, so the descendant selector is written plainly — a Vue
|
|
1043
|
+
deep-selector wrapper here is invalid CSS and the whole rule gets dropped. */
|
|
1044
|
+
.cn-dashboard-grid .grid-stack-item-content:has(.cn-widget-wrapper) {
|
|
1044
1045
|
border: 1px solid var(--color-border);
|
|
1045
1046
|
}
|
|
1046
1047
|
/* Dashboard widget content area */
|
|
@@ -2316,50 +2317,50 @@ html[data-cn-ctx-menu] .cn-row-action--destructive {
|
|
|
2316
2317
|
word-wrap: break-word;
|
|
2317
2318
|
max-width: 100%;
|
|
2318
2319
|
}
|
|
2319
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2320
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2321
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2322
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2323
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2324
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2320
|
+
.cn-text-widget__content--markdown[data-v-006750a5] h1,
|
|
2321
|
+
.cn-text-widget__content--markdown[data-v-006750a5] h2,
|
|
2322
|
+
.cn-text-widget__content--markdown[data-v-006750a5] h3,
|
|
2323
|
+
.cn-text-widget__content--markdown[data-v-006750a5] h4,
|
|
2324
|
+
.cn-text-widget__content--markdown[data-v-006750a5] h5,
|
|
2325
|
+
.cn-text-widget__content--markdown[data-v-006750a5] h6 {
|
|
2325
2326
|
margin: 8px 0 4px;
|
|
2326
2327
|
font-weight: 600;
|
|
2327
2328
|
line-height: 1.3;
|
|
2328
2329
|
}
|
|
2329
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2330
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2331
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2332
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2330
|
+
.cn-text-widget__content--markdown[data-v-006750a5] p,
|
|
2331
|
+
.cn-text-widget__content--markdown[data-v-006750a5] ul,
|
|
2332
|
+
.cn-text-widget__content--markdown[data-v-006750a5] ol,
|
|
2333
|
+
.cn-text-widget__content--markdown[data-v-006750a5] blockquote {
|
|
2333
2334
|
margin: 4px 0;
|
|
2334
2335
|
}
|
|
2335
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2336
|
+
.cn-text-widget__content--markdown[data-v-006750a5] code {
|
|
2336
2337
|
padding: 1px 4px;
|
|
2337
2338
|
border-radius: 3px;
|
|
2338
2339
|
background: var(--color-background-hover);
|
|
2339
2340
|
font-family: var(--font-monospace, monospace);
|
|
2340
2341
|
font-size: 0.95em;
|
|
2341
2342
|
}
|
|
2342
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2343
|
+
.cn-text-widget__content--markdown[data-v-006750a5] pre {
|
|
2343
2344
|
padding: 8px;
|
|
2344
2345
|
border-radius: var(--border-radius);
|
|
2345
2346
|
background: var(--color-background-hover);
|
|
2346
2347
|
overflow: auto;
|
|
2347
2348
|
}
|
|
2348
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2349
|
+
.cn-text-widget__content--markdown[data-v-006750a5] pre code {
|
|
2349
2350
|
padding: 0;
|
|
2350
2351
|
background: transparent;
|
|
2351
2352
|
}
|
|
2352
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2353
|
+
.cn-text-widget__content--markdown[data-v-006750a5] blockquote {
|
|
2353
2354
|
padding-left: 8px;
|
|
2354
2355
|
border-left: 3px solid var(--color-border);
|
|
2355
2356
|
color: var(--color-text-maxcontrast);
|
|
2356
2357
|
}
|
|
2357
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2358
|
+
.cn-text-widget__content--markdown[data-v-006750a5] table {
|
|
2358
2359
|
border-collapse: collapse;
|
|
2359
2360
|
margin: 4px 0;
|
|
2360
2361
|
}
|
|
2361
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2362
|
-
.cn-text-widget__content--markdown[data-v-006750a5]
|
|
2362
|
+
.cn-text-widget__content--markdown[data-v-006750a5] th,
|
|
2363
|
+
.cn-text-widget__content--markdown[data-v-006750a5] td {
|
|
2363
2364
|
padding: 4px 8px;
|
|
2364
2365
|
border: 1px solid var(--color-border);
|
|
2365
2366
|
}
|
|
@@ -5560,7 +5561,7 @@ html[data-cn-ctx-menu] .cn-row-action--destructive {
|
|
|
5560
5561
|
.cn-filter-rows__row > *[data-v-d91c9982]:nth-child(3) {
|
|
5561
5562
|
flex: 2;
|
|
5562
5563
|
}
|
|
5563
|
-
.cn-filter-rows__row[data-v-d91c9982]
|
|
5564
|
+
.cn-filter-rows__row[data-v-d91c9982] .button-vue {
|
|
5564
5565
|
flex: 0 0 auto;
|
|
5565
5566
|
}
|
|
5566
5567
|
|
|
@@ -14291,24 +14292,24 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
14291
14292
|
|
|
14292
14293
|
|
|
14293
14294
|
/* Override CnDetailGrid item styling for a compact table-like appearance */
|
|
14294
|
-
[data-v-4d90250b]
|
|
14295
|
+
[data-v-4d90250b].cn-detail-grid__item {
|
|
14295
14296
|
background: none;
|
|
14296
14297
|
border-radius: 0;
|
|
14297
14298
|
border-bottom: 1px solid var(--color-border);
|
|
14298
14299
|
padding: calc(1.5 * var(--default-grid-baseline, 4px)) 0;
|
|
14299
14300
|
}
|
|
14300
|
-
[data-v-4d90250b]
|
|
14301
|
+
[data-v-4d90250b].cn-detail-grid__item:last-child {
|
|
14301
14302
|
border-bottom: none;
|
|
14302
14303
|
}
|
|
14303
|
-
[data-v-4d90250b]
|
|
14304
|
+
[data-v-4d90250b].cn-detail-grid--horizontal {
|
|
14304
14305
|
gap: 0;
|
|
14305
14306
|
}
|
|
14306
|
-
[data-v-4d90250b]
|
|
14307
|
+
[data-v-4d90250b].cn-detail-grid__label {
|
|
14307
14308
|
font-size: 0.8em;
|
|
14308
14309
|
text-transform: uppercase;
|
|
14309
14310
|
letter-spacing: 0.02em;
|
|
14310
14311
|
}
|
|
14311
|
-
[data-v-4d90250b]
|
|
14312
|
+
[data-v-4d90250b].cn-detail-grid__value {
|
|
14312
14313
|
font-size: 0.9em;
|
|
14313
14314
|
word-break: break-all;
|
|
14314
14315
|
margin: 0;
|
|
@@ -14323,14 +14324,14 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
14323
14324
|
.cn-json-viewer__codemirror[data-v-67810249] {
|
|
14324
14325
|
position: relative;
|
|
14325
14326
|
}
|
|
14326
|
-
.cn-json-viewer__codemirror[data-v-67810249]
|
|
14327
|
+
.cn-json-viewer__codemirror[data-v-67810249] .cm-editor {
|
|
14327
14328
|
height: 100%;
|
|
14328
14329
|
outline: none !important;
|
|
14329
14330
|
}
|
|
14330
|
-
.cn-json-viewer__codemirror[data-v-67810249]
|
|
14331
|
+
.cn-json-viewer__codemirror[data-v-67810249] .cm-scroller {
|
|
14331
14332
|
overflow: auto;
|
|
14332
14333
|
}
|
|
14333
|
-
.cn-json-viewer__codemirror[data-v-67810249]
|
|
14334
|
+
.cn-json-viewer__codemirror[data-v-67810249] .cm-content {
|
|
14334
14335
|
border-radius: 0 !important;
|
|
14335
14336
|
border: none !important;
|
|
14336
14337
|
}
|
|
@@ -14341,27 +14342,27 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
14341
14342
|
border: 1px dotted grey;
|
|
14342
14343
|
}
|
|
14343
14344
|
/* Text cursor */
|
|
14344
|
-
.cn-json-viewer__codemirror
|
|
14345
|
+
.cn-json-viewer__codemirror .cm-content *[data-v-67810249] {
|
|
14345
14346
|
cursor: text !important;
|
|
14346
14347
|
}
|
|
14347
14348
|
/* PATCH SELECTION COLOR - default selection system does not work */
|
|
14348
14349
|
/* Selection background — CodeMirror uses .cm-selectionBackground instead of ::selection */
|
|
14349
|
-
.cn-json-viewer__codemirror--light[data-v-67810249]
|
|
14350
|
+
.cn-json-viewer__codemirror--light[data-v-67810249] .cm-selectionBackground {
|
|
14350
14351
|
background: #3390ff !important;
|
|
14351
14352
|
}
|
|
14352
|
-
.cn-json-viewer__codemirror--light
|
|
14353
|
-
.cn-json-viewer__codemirror--light[data-v-67810249]
|
|
14353
|
+
.cn-json-viewer__codemirror--light .cm-selectionBackground + .cm-selectionBackground[data-v-67810249],
|
|
14354
|
+
.cn-json-viewer__codemirror--light[data-v-67810249] .cm-line ::selection {
|
|
14354
14355
|
color: white !important;
|
|
14355
14356
|
}
|
|
14356
|
-
.cn-json-viewer__codemirror--dark[data-v-67810249]
|
|
14357
|
+
.cn-json-viewer__codemirror--dark[data-v-67810249] .cm-selectionBackground {
|
|
14357
14358
|
background: #3390ff !important;
|
|
14358
14359
|
}
|
|
14359
14360
|
/* Selected text color */
|
|
14360
|
-
.cn-json-viewer__codemirror--light[data-v-67810249]
|
|
14361
|
+
.cn-json-viewer__codemirror--light[data-v-67810249] .cm-content ::selection {
|
|
14361
14362
|
background: #3390ff !important;
|
|
14362
14363
|
color: white !important;
|
|
14363
14364
|
}
|
|
14364
|
-
.cn-json-viewer__codemirror--dark[data-v-67810249]
|
|
14365
|
+
.cn-json-viewer__codemirror--dark[data-v-67810249] .cm-content ::selection {
|
|
14365
14366
|
background: #3390ff !important;
|
|
14366
14367
|
color: white !important;
|
|
14367
14368
|
}
|
|
@@ -14989,7 +14990,7 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
14989
14990
|
flex: 1;
|
|
14990
14991
|
min-width: 0;
|
|
14991
14992
|
}
|
|
14992
|
-
.cn-object-list-form__col-row[data-v-236c0b5b]
|
|
14993
|
+
.cn-object-list-form__col-row[data-v-236c0b5b] .button-vue {
|
|
14993
14994
|
flex: 0 0 auto;
|
|
14994
14995
|
}
|
|
14995
14996
|
|
|
@@ -17383,16 +17384,16 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
17383
17384
|
.tabContainer > * div[role="tabpanel"][data-v-11a6c4cd] {
|
|
17384
17385
|
margin-block-start: var(--OR-margin-10);
|
|
17385
17386
|
}
|
|
17386
|
-
[data-v-11a6c4cd]
|
|
17387
|
+
[data-v-11a6c4cd].nav-tabs {
|
|
17387
17388
|
border-bottom: 1px solid var(--color-border);
|
|
17388
17389
|
margin-bottom: 15px;
|
|
17389
17390
|
display: flex;
|
|
17390
17391
|
}
|
|
17391
|
-
[data-v-11a6c4cd]
|
|
17392
|
+
[data-v-11a6c4cd].nav-tabs .nav-item {
|
|
17392
17393
|
display: flex;
|
|
17393
17394
|
flex: 1;
|
|
17394
17395
|
}
|
|
17395
|
-
[data-v-11a6c4cd]
|
|
17396
|
+
[data-v-11a6c4cd].nav-tabs .nav-link {
|
|
17396
17397
|
flex: 1;
|
|
17397
17398
|
text-align: center;
|
|
17398
17399
|
border: none;
|
|
@@ -17404,27 +17405,27 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
17404
17405
|
gap: 8px;
|
|
17405
17406
|
justify-content: center;
|
|
17406
17407
|
}
|
|
17407
|
-
[data-v-11a6c4cd]
|
|
17408
|
+
[data-v-11a6c4cd].nav-tabs .nav-link.active {
|
|
17408
17409
|
color: var(--color-main-text);
|
|
17409
17410
|
border-bottom: 2px solid var(--color-primary);
|
|
17410
17411
|
background-color: transparent;
|
|
17411
17412
|
}
|
|
17412
|
-
[data-v-11a6c4cd]
|
|
17413
|
+
[data-v-11a6c4cd].nav-tabs .nav-link:hover {
|
|
17413
17414
|
border-bottom: 2px solid var(--color-border);
|
|
17414
17415
|
}
|
|
17415
|
-
[data-v-11a6c4cd]
|
|
17416
|
+
[data-v-11a6c4cd].nav-tabs .nav-link.disabled {
|
|
17416
17417
|
cursor: not-allowed;
|
|
17417
17418
|
opacity: 0.5;
|
|
17418
17419
|
color: var(--color-text-maxcontrast);
|
|
17419
17420
|
pointer-events: auto;
|
|
17420
17421
|
}
|
|
17421
|
-
[data-v-11a6c4cd]
|
|
17422
|
+
[data-v-11a6c4cd].nav-tabs .nav-link.disabled * {
|
|
17422
17423
|
cursor: not-allowed;
|
|
17423
17424
|
}
|
|
17424
|
-
[data-v-11a6c4cd]
|
|
17425
|
+
[data-v-11a6c4cd].nav-tabs .nav-link.disabled:hover {
|
|
17425
17426
|
border-bottom: 2px solid transparent;
|
|
17426
17427
|
}
|
|
17427
|
-
[data-v-11a6c4cd]
|
|
17428
|
+
[data-v-11a6c4cd].tab-content {
|
|
17428
17429
|
padding: 16px;
|
|
17429
17430
|
background-color: var(--color-main-background);
|
|
17430
17431
|
}
|
|
@@ -17857,8 +17858,8 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
17857
17858
|
mode renders no `.action-item__menutoggle`), with the legacy class kept too.
|
|
17858
17859
|
`!important` beats the `button-vue--tertiary` transparent default. */
|
|
17859
17860
|
|
|
17860
|
-
.cn-openbuild-edit__actions[data-v-5150870c]
|
|
17861
|
-
.cn-openbuild-edit__actions[data-v-5150870c]
|
|
17861
|
+
.cn-openbuild-edit__actions[data-v-5150870c] .button-vue,
|
|
17862
|
+
.cn-openbuild-edit__actions[data-v-5150870c] .action-item__menutoggle {
|
|
17862
17863
|
background-color: var(--c-orange-knvb, #f36c21) !important;
|
|
17863
17864
|
color: #fff !important;
|
|
17864
17865
|
border-radius: var(--border-radius-element, var(--border-radius-large, 8px));
|
|
@@ -17867,11 +17868,11 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
17867
17868
|
/* Center the glyph in the icon-only trigger (button-vue__icon is display:block
|
|
17868
17869
|
by default, which left-aligns the 20×20 svg). */
|
|
17869
17870
|
|
|
17870
|
-
.cn-openbuild-edit__actions[data-v-5150870c]
|
|
17871
|
+
.cn-openbuild-edit__actions[data-v-5150870c] .button-vue__wrapper {
|
|
17871
17872
|
justify-content: center;
|
|
17872
17873
|
}
|
|
17873
17874
|
|
|
17874
|
-
.cn-openbuild-edit__actions[data-v-5150870c]
|
|
17875
|
+
.cn-openbuild-edit__actions[data-v-5150870c] .button-vue__icon {
|
|
17875
17876
|
display: flex !important;
|
|
17876
17877
|
align-items: center;
|
|
17877
17878
|
justify-content: center;
|
|
@@ -17933,34 +17934,34 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
17933
17934
|
font-family: var(--font-face);
|
|
17934
17935
|
overflow: hidden;
|
|
17935
17936
|
}
|
|
17936
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17937
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17938
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17939
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17937
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-body,
|
|
17938
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-saturation-wrap,
|
|
17939
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-color-wrap,
|
|
17940
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-active-color {
|
|
17940
17941
|
background-color: var(--color-main-background);
|
|
17941
17942
|
}
|
|
17942
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17943
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-toggle-icon-highlight {
|
|
17943
17944
|
background: var(--color-background-hover);
|
|
17944
17945
|
}
|
|
17945
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17946
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17946
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-hue-picker,
|
|
17947
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-alpha-picker {
|
|
17947
17948
|
background-color: var(--color-main-background);
|
|
17948
17949
|
box-shadow: 0 1px 4px 0 var(--color-box-shadow);
|
|
17949
17950
|
}
|
|
17950
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17951
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-fields .vc-input__input {
|
|
17951
17952
|
background-color: var(--color-main-background);
|
|
17952
17953
|
color: var(--color-main-text);
|
|
17953
17954
|
box-shadow: inset 0 0 0 1px var(--color-border);
|
|
17954
17955
|
}
|
|
17955
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17956
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-fields .vc-input__label {
|
|
17956
17957
|
color: var(--color-text-maxcontrast);
|
|
17957
17958
|
}
|
|
17958
|
-
.cn-color-picker__chrome[data-v-c1df26bc]
|
|
17959
|
+
.cn-color-picker__chrome[data-v-c1df26bc] .vc-chrome-toggle-icon svg path {
|
|
17959
17960
|
fill: var(--color-main-text);
|
|
17960
17961
|
}
|
|
17961
17962
|
/* When `mode` is set, lock the field-mode toggle so the user can't switch
|
|
17962
17963
|
between hex/rgb/hsl. */
|
|
17963
|
-
.cn-color-picker__chrome--locked-mode[data-v-c1df26bc]
|
|
17964
|
+
.cn-color-picker__chrome--locked-mode[data-v-c1df26bc] .vc-chrome-toggle-btn {
|
|
17964
17965
|
display: none;
|
|
17965
17966
|
}
|
|
17966
17967
|
|
|
@@ -17986,7 +17987,7 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
17986
17987
|
width: 100%;
|
|
17987
17988
|
min-width: 0;
|
|
17988
17989
|
}
|
|
17989
|
-
.cn-advanced-form-dialog__value-input-container[data-v-79cf04fe]
|
|
17990
|
+
.cn-advanced-form-dialog__value-input-container[data-v-79cf04fe] .text-field {
|
|
17990
17991
|
margin: 0;
|
|
17991
17992
|
padding: 0;
|
|
17992
17993
|
}
|
|
@@ -18035,11 +18036,11 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
18035
18036
|
width: 100%;
|
|
18036
18037
|
box-sizing: border-box;
|
|
18037
18038
|
}
|
|
18038
|
-
.cn-advanced-form-dialog__textarea[data-v-79cf04fe]
|
|
18039
|
+
.cn-advanced-form-dialog__textarea[data-v-79cf04fe] .textarea__main-wrapper {
|
|
18039
18040
|
height: auto;
|
|
18040
18041
|
min-height: var(--default-clickable-area);
|
|
18041
18042
|
}
|
|
18042
|
-
.cn-advanced-form-dialog__textarea[data-v-79cf04fe]
|
|
18043
|
+
.cn-advanced-form-dialog__textarea[data-v-79cf04fe] textarea {
|
|
18043
18044
|
width: 100%;
|
|
18044
18045
|
max-width: 100%;
|
|
18045
18046
|
box-sizing: border-box;
|
|
@@ -18342,14 +18343,14 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
18342
18343
|
border-radius: var(--border-radius);
|
|
18343
18344
|
position: relative;
|
|
18344
18345
|
}
|
|
18345
|
-
.cn-advanced-form-dialog__codemirror-container[data-v-f01ccaa4]
|
|
18346
|
+
.cn-advanced-form-dialog__codemirror-container[data-v-f01ccaa4] .cm-editor {
|
|
18346
18347
|
height: 100%;
|
|
18347
18348
|
outline: none !important;
|
|
18348
18349
|
}
|
|
18349
|
-
.cn-advanced-form-dialog__codemirror-container[data-v-f01ccaa4]
|
|
18350
|
+
.cn-advanced-form-dialog__codemirror-container[data-v-f01ccaa4] .cm-scroller {
|
|
18350
18351
|
overflow: auto;
|
|
18351
18352
|
}
|
|
18352
|
-
.cn-advanced-form-dialog__codemirror-container[data-v-f01ccaa4]
|
|
18353
|
+
.cn-advanced-form-dialog__codemirror-container[data-v-f01ccaa4] .cm-content {
|
|
18353
18354
|
border-radius: 0 !important;
|
|
18354
18355
|
border: none !important;
|
|
18355
18356
|
}
|
|
@@ -18361,74 +18362,74 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
18361
18362
|
}
|
|
18362
18363
|
/* value text color */
|
|
18363
18364
|
/* string */
|
|
18364
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18365
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .ͼe {
|
|
18365
18366
|
color: #448c27;
|
|
18366
18367
|
}
|
|
18367
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18368
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .ͼe {
|
|
18368
18369
|
color: #88c379;
|
|
18369
18370
|
}
|
|
18370
18371
|
/* boolean */
|
|
18371
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18372
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .ͼc {
|
|
18372
18373
|
color: #221199;
|
|
18373
18374
|
}
|
|
18374
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18375
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .ͼc {
|
|
18375
18376
|
color: #8d64f7;
|
|
18376
18377
|
}
|
|
18377
18378
|
/* null */
|
|
18378
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18379
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .ͼb {
|
|
18379
18380
|
color: #770088;
|
|
18380
18381
|
}
|
|
18381
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18382
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .ͼb {
|
|
18382
18383
|
color: #be55cd;
|
|
18383
18384
|
}
|
|
18384
18385
|
/* number */
|
|
18385
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18386
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .ͼd {
|
|
18386
18387
|
color: #d19a66;
|
|
18387
18388
|
}
|
|
18388
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18389
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .ͼd {
|
|
18389
18390
|
color: #9d6c3a;
|
|
18390
18391
|
}
|
|
18391
18392
|
/* text cursor */
|
|
18392
|
-
.cn-advanced-form-dialog__codemirror-container
|
|
18393
|
+
.cn-advanced-form-dialog__codemirror-container .cm-content *[data-v-f01ccaa4] {
|
|
18393
18394
|
cursor: text !important;
|
|
18394
18395
|
}
|
|
18395
18396
|
/* selection color */
|
|
18396
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18397
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18397
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .cm-line::selection,
|
|
18398
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .cm-line ::selection {
|
|
18398
18399
|
background-color: #d7eaff !important;
|
|
18399
18400
|
color: black;
|
|
18400
18401
|
}
|
|
18401
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18402
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18402
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .cm-line::selection,
|
|
18403
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .cm-line ::selection {
|
|
18403
18404
|
background-color: #8fb3e6 !important;
|
|
18404
18405
|
color: black;
|
|
18405
18406
|
}
|
|
18406
18407
|
/* string selection */
|
|
18407
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18408
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .cm-line .ͼe::selection {
|
|
18408
18409
|
color: #2d770f;
|
|
18409
18410
|
}
|
|
18410
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18411
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .cm-line .ͼe::selection {
|
|
18411
18412
|
color: #104e0c;
|
|
18412
18413
|
}
|
|
18413
18414
|
/* boolean selection */
|
|
18414
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18415
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .cm-line .ͼc::selection {
|
|
18415
18416
|
color: #221199;
|
|
18416
18417
|
}
|
|
18417
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18418
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .cm-line .ͼc::selection {
|
|
18418
18419
|
color: #4026af;
|
|
18419
18420
|
}
|
|
18420
18421
|
/* null selection */
|
|
18421
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18422
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .cm-line .ͼb::selection {
|
|
18422
18423
|
color: #770088;
|
|
18423
18424
|
}
|
|
18424
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18425
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .cm-line .ͼb::selection {
|
|
18425
18426
|
color: #770088;
|
|
18426
18427
|
}
|
|
18427
18428
|
/* number selection */
|
|
18428
|
-
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4]
|
|
18429
|
+
.cn-advanced-form-dialog__codemirror-container--light[data-v-f01ccaa4] .cm-line .ͼd::selection {
|
|
18429
18430
|
color: #8c5c2c;
|
|
18430
18431
|
}
|
|
18431
|
-
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4]
|
|
18432
|
+
.cn-advanced-form-dialog__codemirror-container--dark[data-v-f01ccaa4] .cm-line .ͼd::selection {
|
|
18432
18433
|
color: #623907;
|
|
18433
18434
|
}
|
|
18434
18435
|
.cn-advanced-form-dialog__format-btn[data-v-f01ccaa4] {
|
|
@@ -18485,16 +18486,16 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
18485
18486
|
.tabContainer > * div[role="tabpanel"][data-v-ab580f66] {
|
|
18486
18487
|
margin-block-start: var(--OR-margin-10);
|
|
18487
18488
|
}
|
|
18488
|
-
[data-v-ab580f66]
|
|
18489
|
+
[data-v-ab580f66].nav-tabs {
|
|
18489
18490
|
border-bottom: 1px solid var(--color-border);
|
|
18490
18491
|
margin-bottom: 15px;
|
|
18491
18492
|
display: flex;
|
|
18492
18493
|
}
|
|
18493
|
-
[data-v-ab580f66]
|
|
18494
|
+
[data-v-ab580f66].nav-tabs .nav-item {
|
|
18494
18495
|
display: flex;
|
|
18495
18496
|
flex: 1;
|
|
18496
18497
|
}
|
|
18497
|
-
[data-v-ab580f66]
|
|
18498
|
+
[data-v-ab580f66].nav-tabs .nav-link {
|
|
18498
18499
|
flex: 1;
|
|
18499
18500
|
text-align: center;
|
|
18500
18501
|
border: none;
|
|
@@ -18502,15 +18503,15 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
18502
18503
|
color: var(--color-text-maxcontrast);
|
|
18503
18504
|
padding: 8px 16px;
|
|
18504
18505
|
}
|
|
18505
|
-
[data-v-ab580f66]
|
|
18506
|
+
[data-v-ab580f66].nav-tabs .nav-link.active {
|
|
18506
18507
|
color: var(--color-main-text);
|
|
18507
18508
|
border-bottom: 2px solid var(--color-primary);
|
|
18508
18509
|
background-color: transparent;
|
|
18509
18510
|
}
|
|
18510
|
-
[data-v-ab580f66]
|
|
18511
|
+
[data-v-ab580f66].nav-tabs .nav-link:hover {
|
|
18511
18512
|
border-bottom: 2px solid var(--color-border);
|
|
18512
18513
|
}
|
|
18513
|
-
[data-v-ab580f66]
|
|
18514
|
+
[data-v-ab580f66].tab-content {
|
|
18514
18515
|
padding: 16px;
|
|
18515
18516
|
background-color: var(--color-main-background);
|
|
18516
18517
|
}
|
|
@@ -19652,17 +19653,17 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
19652
19653
|
.grid-stack[data-v-65491e3e] {
|
|
19653
19654
|
background: transparent;
|
|
19654
19655
|
}
|
|
19655
|
-
[data-v-65491e3e]
|
|
19656
|
+
[data-v-65491e3e].grid-stack-item-content {
|
|
19656
19657
|
background: var(--color-main-background);
|
|
19657
19658
|
border-radius: 0;
|
|
19658
19659
|
border: none;
|
|
19659
19660
|
box-shadow: none;
|
|
19660
19661
|
overflow: hidden;
|
|
19661
19662
|
}
|
|
19662
|
-
[data-v-65491e3e]
|
|
19663
|
+
[data-v-65491e3e].grid-stack-item-content:has(.cn-widget-wrapper--borderless) {
|
|
19663
19664
|
background: transparent;
|
|
19664
19665
|
}
|
|
19665
|
-
[data-v-65491e3e]
|
|
19666
|
+
[data-v-65491e3e].grid-stack-placeholder > .placeholder-content {
|
|
19666
19667
|
background: var(--color-primary-element-light);
|
|
19667
19668
|
border: 2px dashed var(--color-primary-element);
|
|
19668
19669
|
border-radius: var(--border-radius-large);
|
|
@@ -20006,7 +20007,7 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
20006
20007
|
visible chrome is the chip span itself. */
|
|
20007
20008
|
display: inline-flex;
|
|
20008
20009
|
}
|
|
20009
|
-
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a]
|
|
20010
|
+
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a] .action-item__menutoggle {
|
|
20010
20011
|
min-width: 0;
|
|
20011
20012
|
min-height: 0;
|
|
20012
20013
|
padding: 0;
|
|
@@ -20017,9 +20018,9 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
20017
20018
|
sized for a single ~44px icon and clips wider content (the cause of the
|
|
20018
20019
|
"8 → 2" truncation). Let the toggle + its icon wrapper grow to the
|
|
20019
20020
|
chip's natural width so the full "18 May – 25 May" range reads. */
|
|
20020
|
-
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a]
|
|
20021
|
-
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a]
|
|
20022
|
-
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a]
|
|
20021
|
+
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a] .button-vue,
|
|
20022
|
+
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a] .button-vue__wrapper,
|
|
20023
|
+
.cn-dashboard-page__date-chip-trigger[data-v-8eea142a] .button-vue__icon {
|
|
20023
20024
|
width: auto !important;
|
|
20024
20025
|
min-width: 0 !important;
|
|
20025
20026
|
overflow: visible !important;
|
|
@@ -20106,16 +20107,16 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
20106
20107
|
border-style: dashed;
|
|
20107
20108
|
color: var(--color-text-maxcontrast);
|
|
20108
20109
|
}
|
|
20109
|
-
.cn-dashboard-page__date-pill-custom[data-v-8eea142a]
|
|
20110
|
+
.cn-dashboard-page__date-pill-custom[data-v-8eea142a] .action-item__menutoggle {
|
|
20110
20111
|
min-width: 0;
|
|
20111
20112
|
min-height: 0;
|
|
20112
20113
|
padding: 0;
|
|
20113
20114
|
background: transparent;
|
|
20114
20115
|
border: none;
|
|
20115
20116
|
}
|
|
20116
|
-
.cn-dashboard-page__date-pill-custom[data-v-8eea142a]
|
|
20117
|
-
.cn-dashboard-page__date-pill-custom[data-v-8eea142a]
|
|
20118
|
-
.cn-dashboard-page__date-pill-custom[data-v-8eea142a]
|
|
20117
|
+
.cn-dashboard-page__date-pill-custom[data-v-8eea142a] .button-vue,
|
|
20118
|
+
.cn-dashboard-page__date-pill-custom[data-v-8eea142a] .button-vue__wrapper,
|
|
20119
|
+
.cn-dashboard-page__date-pill-custom[data-v-8eea142a] .button-vue__icon {
|
|
20119
20120
|
width: auto !important;
|
|
20120
20121
|
min-width: 0 !important;
|
|
20121
20122
|
overflow: visible !important;
|
|
@@ -20157,8 +20158,8 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
20157
20158
|
and a horizontal scrollbar when a long currency value met the icon. Here
|
|
20158
20159
|
we drop the inner scroll, add comfortable padding back (flush removed it),
|
|
20159
20160
|
and centre the card. */
|
|
20160
|
-
.cn-dashboard-page__card-fit[data-v-8eea142a]
|
|
20161
|
-
.cn-dashboard-page__card-fit.cn-widget-wrapper--flush[data-v-8eea142a]
|
|
20161
|
+
.cn-dashboard-page__card-fit[data-v-8eea142a] .cn-widget-wrapper__content,
|
|
20162
|
+
.cn-dashboard-page__card-fit.cn-widget-wrapper--flush[data-v-8eea142a] .cn-widget-wrapper__content {
|
|
20162
20163
|
overflow: hidden;
|
|
20163
20164
|
display: flex;
|
|
20164
20165
|
flex-direction: column;
|
|
@@ -20168,9 +20169,9 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
20168
20169
|
/* Card content (stat / gauge / delta) must fit the tile width: let the
|
|
20169
20170
|
widget shrink and its value/label truncate instead of pushing past the
|
|
20170
20171
|
tile edge (the horizontal clip on long currency values). */
|
|
20171
|
-
.cn-dashboard-page__card-fit[data-v-8eea142a]
|
|
20172
|
-
.cn-dashboard-page__card-fit[data-v-8eea142a]
|
|
20173
|
-
.cn-dashboard-page__card-fit[data-v-8eea142a]
|
|
20172
|
+
.cn-dashboard-page__card-fit[data-v-8eea142a] .cn-stat-widget,
|
|
20173
|
+
.cn-dashboard-page__card-fit[data-v-8eea142a] .cn-gauge-widget,
|
|
20174
|
+
.cn-dashboard-page__card-fit[data-v-8eea142a] .cn-delta-widget {
|
|
20174
20175
|
min-width: 0;
|
|
20175
20176
|
max-width: 100%;
|
|
20176
20177
|
}
|
|
@@ -20344,16 +20345,16 @@ a.cn-xwiki-card__title[data-v-4c1ed217]:hover {
|
|
|
20344
20345
|
/* White rounded button matching the widget chrome — a persistent surface (not
|
|
20345
20346
|
the default transparent tertiary) so the cog reads on any widget background.
|
|
20346
20347
|
The trigger element is NcActions' menu toggle. */
|
|
20347
|
-
.cn-widget-edit-cog[data-v-52174a6c]
|
|
20348
|
-
.cn-widget-edit-cog[data-v-52174a6c]
|
|
20348
|
+
.cn-widget-edit-cog[data-v-52174a6c] .action-item__menutoggle,
|
|
20349
|
+
.cn-widget-edit-cog[data-v-52174a6c] .button-vue {
|
|
20349
20350
|
background-color: var(--color-main-background) !important;
|
|
20350
20351
|
border: 1px solid var(--color-border) !important;
|
|
20351
20352
|
border-radius: var(--border-radius, 8px) !important;
|
|
20352
20353
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
|
|
20353
20354
|
color: var(--color-main-text) !important;
|
|
20354
20355
|
}
|
|
20355
|
-
.cn-widget-edit-cog[data-v-52174a6c]
|
|
20356
|
-
.cn-widget-edit-cog[data-v-52174a6c]
|
|
20356
|
+
.cn-widget-edit-cog[data-v-52174a6c] .action-item__menutoggle:hover,
|
|
20357
|
+
.cn-widget-edit-cog[data-v-52174a6c] .button-vue:hover {
|
|
20357
20358
|
background-color: var(--color-background-hover) !important;
|
|
20358
20359
|
}
|
|
20359
20360
|
|
|
@@ -22185,10 +22186,10 @@ a.cn-integration-card__title[data-v-7fb5b689]:hover {
|
|
|
22185
22186
|
* let the strip scroll horizontally once they no longer fit. `flex-basis: 0`
|
|
22186
22187
|
* + equal grow keeps every tab the same width whether the row fits or scrolls.
|
|
22187
22188
|
* Apps with longer labels can widen the floor via --cn-sidebar-tab-min-width. */
|
|
22188
|
-
[data-v-e255b596]
|
|
22189
|
+
[data-v-e255b596].app-sidebar-tabs__nav {
|
|
22189
22190
|
overflow-x: auto;
|
|
22190
22191
|
}
|
|
22191
|
-
[data-v-e255b596]
|
|
22192
|
+
[data-v-e255b596].app-sidebar-tabs__nav .app-sidebar-tabs__tab {
|
|
22192
22193
|
flex-grow: 1;
|
|
22193
22194
|
flex-shrink: 0;
|
|
22194
22195
|
flex-basis: 0;
|
|
@@ -22548,45 +22549,45 @@ a.cn-integration-card__title[data-v-7fb5b689]:hover {
|
|
|
22548
22549
|
line-height: 1.7;
|
|
22549
22550
|
color: var(--color-main-text);
|
|
22550
22551
|
}
|
|
22551
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22552
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22553
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22552
|
+
.cn-wiki-page__body[data-v-93d7e1b0] h1,
|
|
22553
|
+
.cn-wiki-page__body[data-v-93d7e1b0] h2,
|
|
22554
|
+
.cn-wiki-page__body[data-v-93d7e1b0] h3 {
|
|
22554
22555
|
color: var(--color-main-text);
|
|
22555
22556
|
margin-top: 1.4em;
|
|
22556
22557
|
margin-bottom: 0.5em;
|
|
22557
22558
|
}
|
|
22558
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22559
|
+
.cn-wiki-page__body[data-v-93d7e1b0] p {
|
|
22559
22560
|
margin: 0 0 1em;
|
|
22560
22561
|
}
|
|
22561
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22562
|
+
.cn-wiki-page__body[data-v-93d7e1b0] code {
|
|
22562
22563
|
background: var(--color-background-dark);
|
|
22563
22564
|
padding: 2px 6px;
|
|
22564
22565
|
border-radius: var(--border-radius);
|
|
22565
22566
|
font-family: var(--font-face-monospace, monospace);
|
|
22566
22567
|
font-size: 0.9em;
|
|
22567
22568
|
}
|
|
22568
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22569
|
+
.cn-wiki-page__body[data-v-93d7e1b0] pre {
|
|
22569
22570
|
background: var(--color-background-dark);
|
|
22570
22571
|
padding: 12px;
|
|
22571
22572
|
border-radius: var(--border-radius);
|
|
22572
22573
|
overflow-x: auto;
|
|
22573
22574
|
}
|
|
22574
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22575
|
+
.cn-wiki-page__body[data-v-93d7e1b0] pre code {
|
|
22575
22576
|
background: transparent;
|
|
22576
22577
|
padding: 0;
|
|
22577
22578
|
}
|
|
22578
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22579
|
+
.cn-wiki-page__body[data-v-93d7e1b0] blockquote {
|
|
22579
22580
|
border-left: 3px solid var(--color-border);
|
|
22580
22581
|
padding-left: 12px;
|
|
22581
22582
|
color: var(--color-text-lighter);
|
|
22582
22583
|
margin: 0 0 1em;
|
|
22583
22584
|
}
|
|
22584
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22585
|
+
.cn-wiki-page__body[data-v-93d7e1b0] table {
|
|
22585
22586
|
border-collapse: collapse;
|
|
22586
22587
|
margin: 0 0 1em;
|
|
22587
22588
|
}
|
|
22588
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22589
|
-
.cn-wiki-page__body[data-v-93d7e1b0]
|
|
22589
|
+
.cn-wiki-page__body[data-v-93d7e1b0] th,
|
|
22590
|
+
.cn-wiki-page__body[data-v-93d7e1b0] td {
|
|
22590
22591
|
border: 1px solid var(--color-border);
|
|
22591
22592
|
padding: 6px 10px;
|
|
22592
22593
|
}
|
|
@@ -24811,7 +24812,7 @@ a.cn-integration-card__title[data-v-7fb5b689]:hover {
|
|
|
24811
24812
|
z-index: 1;
|
|
24812
24813
|
border-radius: inherit;
|
|
24813
24814
|
}
|
|
24814
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24815
|
+
.cn-roadmap-item__body[data-v-4ed322c5] a,
|
|
24815
24816
|
.cn-roadmap-item__labels[data-v-4ed322c5] {
|
|
24816
24817
|
position: relative;
|
|
24817
24818
|
z-index: 2;
|
|
@@ -24868,18 +24869,18 @@ a.cn-integration-card__title[data-v-7fb5b689]:hover {
|
|
|
24868
24869
|
mask-image: linear-gradient(to bottom, black 70%, transparent);
|
|
24869
24870
|
-webkit-mask-image: linear-gradient(to bottom, black 70%, transparent);
|
|
24870
24871
|
}
|
|
24871
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24872
|
+
.cn-roadmap-item__body[data-v-4ed322c5] p { margin: 4px 0;
|
|
24872
24873
|
}
|
|
24873
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24874
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24875
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24874
|
+
.cn-roadmap-item__body[data-v-4ed322c5] h1,
|
|
24875
|
+
.cn-roadmap-item__body[data-v-4ed322c5] h2,
|
|
24876
|
+
.cn-roadmap-item__body[data-v-4ed322c5] h3 {
|
|
24876
24877
|
font-size: 1em;
|
|
24877
24878
|
margin: 4px 0;
|
|
24878
24879
|
font-weight: 600;
|
|
24879
24880
|
}
|
|
24880
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24881
|
+
.cn-roadmap-item__body[data-v-4ed322c5] pre { background: var(--color-background-hover); padding: 8px; border-radius: 4px; overflow-x: auto;
|
|
24881
24882
|
}
|
|
24882
|
-
.cn-roadmap-item__body[data-v-4ed322c5]
|
|
24883
|
+
.cn-roadmap-item__body[data-v-4ed322c5] code { background: var(--color-background-hover); padding: 2px 4px; border-radius: 3px;
|
|
24883
24884
|
}
|
|
24884
24885
|
.cn-roadmap-item__labels[data-v-4ed322c5] {
|
|
24885
24886
|
display: flex;
|
|
@@ -25007,11 +25008,11 @@ a.cn-integration-card__title[data-v-7fb5b689]:hover {
|
|
|
25007
25008
|
/* Underline the inline docs URL so it reads as a link inside the note
|
|
25008
25009
|
body — NcNoteCard's default link styling drops the underline by
|
|
25009
25010
|
inheriting from the host theme. */
|
|
25010
|
-
.cn-features-and-roadmap-view__docs-note[data-v-919db794]
|
|
25011
|
+
.cn-features-and-roadmap-view__docs-note[data-v-919db794] a {
|
|
25011
25012
|
color: var(--color-primary-element);
|
|
25012
25013
|
text-decoration: underline;
|
|
25013
25014
|
}
|
|
25014
|
-
.cn-features-and-roadmap-view__docs-note[data-v-919db794]
|
|
25015
|
+
.cn-features-and-roadmap-view__docs-note[data-v-919db794] a:hover {
|
|
25015
25016
|
text-decoration: underline;
|
|
25016
25017
|
opacity: 0.85;
|
|
25017
25018
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conduction/nextcloud-vue",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.144",
|
|
4
4
|
"description": "Shared Vue component library for Conduction Nextcloud apps — complements @nextcloud/vue with higher-level components, OpenRegister integration, and NL Design System support",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
6
6
|
"author": "Conduction B.V. <info@conduction.nl>",
|
package/src/css/dashboard.css
CHANGED
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
max-width: 1400px;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
/* Widget grid item borders for non-tile widgets
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
/* Widget grid item borders for non-tile widgets. This is a global stylesheet,
|
|
10
|
+
not a scoped SFC block, so the descendant selector is written plainly — a Vue
|
|
11
|
+
deep-selector wrapper here is invalid CSS and the whole rule gets dropped. */
|
|
12
|
+
.cn-dashboard-grid .grid-stack-item-content:has(.cn-widget-wrapper) {
|
|
12
13
|
border: 1px solid var(--color-border);
|
|
13
14
|
}
|
|
14
15
|
|