@skygraph/styles 0.6.4 → 0.6.6
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/README.md +98 -98
- package/components/autocomplete.css +35 -35
- package/components/autofield.css +67 -67
- package/components/avatar.css +37 -37
- package/components/badge.css +102 -102
- package/components/breadcrumb.css +29 -29
- package/components/button.css +181 -181
- package/components/calendar.css +408 -408
- package/components/carousel.css +102 -102
- package/components/cascader.css +380 -380
- package/components/charts.css +408 -408
- package/components/checkbox.css +114 -114
- package/components/collapse.css +166 -166
- package/components/colorpicker.css +252 -252
- package/components/context-menu.css +95 -95
- package/components/descriptions.css +82 -82
- package/components/diagram.css +435 -435
- package/components/drawer.css +124 -124
- package/components/dropdown.css +110 -110
- package/components/empty.css +25 -25
- package/components/event-timeline.css +134 -134
- package/components/field.css +35 -35
- package/components/form.css +115 -115
- package/components/gantt.css +166 -166
- package/components/input-number.css +76 -76
- package/components/input-password.css +104 -104
- package/components/input.css +211 -211
- package/components/list.css +366 -366
- package/components/mentions.css +54 -54
- package/components/menu.css +326 -326
- package/components/modal.css +1 -0
- package/components/notification.css +128 -128
- package/components/pagination.css +162 -162
- package/components/popconfirm.css +95 -95
- package/components/progress.css +116 -116
- package/components/radio.css +95 -95
- package/components/rate.css +48 -48
- package/components/resource-calendar.css +224 -224
- package/components/result.css +45 -45
- package/components/schema-form-editor.css +433 -433
- package/components/search-input.css +112 -112
- package/components/segmented.css +76 -76
- package/components/select.css +181 -181
- package/components/skeleton.css +72 -72
- package/components/slider.css +51 -51
- package/components/spin.css +102 -102
- package/components/steps.css +194 -194
- package/components/switch.css +75 -75
- package/components/table.css +9 -1
- package/components/tabs.css +137 -137
- package/components/tag.css +61 -61
- package/components/textarea.css +22 -22
- package/components/timeline.css +169 -169
- package/components/timepicker.css +224 -224
- package/components/tooltip.css +91 -91
- package/components/transfer.css +140 -140
- package/components/tree.css +601 -601
- package/components/treeselect.css +221 -221
- package/components/upload.css +124 -124
- package/index.css +70 -70
- package/index.d.ts +9 -9
- package/package.json +1 -1
- package/print.css +88 -88
- package/reset.css +17 -17
- package/themes/dark.css +17 -17
- package/themes/default.css +14 -14
- package/tokens.css +310 -310
- package/transitions.css +158 -158
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
.sg-descriptions {
|
|
2
|
-
font-size: var(--sg-font-size);
|
|
3
|
-
color: var(--sg-color-text);
|
|
4
|
-
width: 100%;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.sg-descriptions-title {
|
|
8
|
-
font-size: var(--sg-font-size-lg);
|
|
9
|
-
font-weight: 600;
|
|
10
|
-
color: var(--sg-color-text);
|
|
11
|
-
margin-bottom: var(--sg-margin-md);
|
|
12
|
-
line-height: var(--sg-line-height);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.sg-descriptions-table {
|
|
16
|
-
width: 100%;
|
|
17
|
-
border-collapse: collapse;
|
|
18
|
-
table-layout: auto;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.sg-descriptions-row {
|
|
22
|
-
vertical-align: top;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.sg-descriptions-item-label {
|
|
26
|
-
font-weight: 500;
|
|
27
|
-
color: var(--sg-color-text-secondary);
|
|
28
|
-
white-space: nowrap;
|
|
29
|
-
text-align: left;
|
|
30
|
-
padding: var(--sg-padding-sm) var(--sg-padding-md) var(--sg-padding-sm) 0;
|
|
31
|
-
line-height: var(--sg-line-height);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.sg-descriptions-item-content {
|
|
35
|
-
color: var(--sg-color-text);
|
|
36
|
-
padding: var(--sg-padding-sm) var(--sg-padding-md) var(--sg-padding-sm) 0;
|
|
37
|
-
line-height: var(--sg-line-height);
|
|
38
|
-
word-break: break-word;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.sg-descriptions-colon {
|
|
42
|
-
margin-right: var(--sg-margin-sm);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/* Bordered */
|
|
46
|
-
.sg-descriptions-bordered .sg-descriptions-table {
|
|
47
|
-
border: 1px solid var(--sg-color-border-secondary);
|
|
48
|
-
border-radius: var(--sg-border-radius);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.sg-descriptions-bordered .sg-descriptions-item-label,
|
|
52
|
-
.sg-descriptions-bordered .sg-descriptions-item-content {
|
|
53
|
-
padding: var(--sg-padding-sm) var(--sg-padding-lg);
|
|
54
|
-
border-bottom: 1px solid var(--sg-color-border-secondary);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.sg-descriptions-bordered .sg-descriptions-item-label {
|
|
58
|
-
background: var(--sg-color-bg-secondary);
|
|
59
|
-
border-right: 1px solid var(--sg-color-border-secondary);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.sg-descriptions-bordered .sg-descriptions-row:last-child .sg-descriptions-item-label,
|
|
63
|
-
.sg-descriptions-bordered .sg-descriptions-row:last-child .sg-descriptions-item-content {
|
|
64
|
-
border-bottom: none;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
/* Sizes */
|
|
68
|
-
.sg-descriptions-small .sg-descriptions-item-label,
|
|
69
|
-
.sg-descriptions-small .sg-descriptions-item-content {
|
|
70
|
-
padding: var(--sg-padding-xs) var(--sg-padding-sm) var(--sg-padding-xs) 0;
|
|
71
|
-
font-size: var(--sg-font-size-sm);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.sg-descriptions-small.sg-descriptions-bordered .sg-descriptions-item-label,
|
|
75
|
-
.sg-descriptions-small.sg-descriptions-bordered .sg-descriptions-item-content {
|
|
76
|
-
padding: var(--sg-padding-xs) var(--sg-padding-md);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.sg-descriptions-middle .sg-descriptions-item-label,
|
|
80
|
-
.sg-descriptions-middle .sg-descriptions-item-content {
|
|
81
|
-
padding: var(--sg-padding-sm) var(--sg-padding-md) var(--sg-padding-sm) 0;
|
|
82
|
-
}
|
|
1
|
+
.sg-descriptions {
|
|
2
|
+
font-size: var(--sg-font-size);
|
|
3
|
+
color: var(--sg-color-text);
|
|
4
|
+
width: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.sg-descriptions-title {
|
|
8
|
+
font-size: var(--sg-font-size-lg);
|
|
9
|
+
font-weight: 600;
|
|
10
|
+
color: var(--sg-color-text);
|
|
11
|
+
margin-bottom: var(--sg-margin-md);
|
|
12
|
+
line-height: var(--sg-line-height);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.sg-descriptions-table {
|
|
16
|
+
width: 100%;
|
|
17
|
+
border-collapse: collapse;
|
|
18
|
+
table-layout: auto;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.sg-descriptions-row {
|
|
22
|
+
vertical-align: top;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.sg-descriptions-item-label {
|
|
26
|
+
font-weight: 500;
|
|
27
|
+
color: var(--sg-color-text-secondary);
|
|
28
|
+
white-space: nowrap;
|
|
29
|
+
text-align: left;
|
|
30
|
+
padding: var(--sg-padding-sm) var(--sg-padding-md) var(--sg-padding-sm) 0;
|
|
31
|
+
line-height: var(--sg-line-height);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.sg-descriptions-item-content {
|
|
35
|
+
color: var(--sg-color-text);
|
|
36
|
+
padding: var(--sg-padding-sm) var(--sg-padding-md) var(--sg-padding-sm) 0;
|
|
37
|
+
line-height: var(--sg-line-height);
|
|
38
|
+
word-break: break-word;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.sg-descriptions-colon {
|
|
42
|
+
margin-right: var(--sg-margin-sm);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* Bordered */
|
|
46
|
+
.sg-descriptions-bordered .sg-descriptions-table {
|
|
47
|
+
border: 1px solid var(--sg-color-border-secondary);
|
|
48
|
+
border-radius: var(--sg-border-radius);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.sg-descriptions-bordered .sg-descriptions-item-label,
|
|
52
|
+
.sg-descriptions-bordered .sg-descriptions-item-content {
|
|
53
|
+
padding: var(--sg-padding-sm) var(--sg-padding-lg);
|
|
54
|
+
border-bottom: 1px solid var(--sg-color-border-secondary);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.sg-descriptions-bordered .sg-descriptions-item-label {
|
|
58
|
+
background: var(--sg-color-bg-secondary);
|
|
59
|
+
border-right: 1px solid var(--sg-color-border-secondary);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.sg-descriptions-bordered .sg-descriptions-row:last-child .sg-descriptions-item-label,
|
|
63
|
+
.sg-descriptions-bordered .sg-descriptions-row:last-child .sg-descriptions-item-content {
|
|
64
|
+
border-bottom: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/* Sizes */
|
|
68
|
+
.sg-descriptions-small .sg-descriptions-item-label,
|
|
69
|
+
.sg-descriptions-small .sg-descriptions-item-content {
|
|
70
|
+
padding: var(--sg-padding-xs) var(--sg-padding-sm) var(--sg-padding-xs) 0;
|
|
71
|
+
font-size: var(--sg-font-size-sm);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.sg-descriptions-small.sg-descriptions-bordered .sg-descriptions-item-label,
|
|
75
|
+
.sg-descriptions-small.sg-descriptions-bordered .sg-descriptions-item-content {
|
|
76
|
+
padding: var(--sg-padding-xs) var(--sg-padding-md);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.sg-descriptions-middle .sg-descriptions-item-label,
|
|
80
|
+
.sg-descriptions-middle .sg-descriptions-item-content {
|
|
81
|
+
padding: var(--sg-padding-sm) var(--sg-padding-md) var(--sg-padding-sm) 0;
|
|
82
|
+
}
|