@skygraph/styles 0.2.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
package/components/mentions.css
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
.sg-mentions {
|
|
2
|
-
position: relative;
|
|
3
|
-
display: inline-block;
|
|
4
|
-
width: 100%;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.sg-mentions-disabled {
|
|
8
|
-
opacity: 0.5;
|
|
9
|
-
pointer-events: none;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.sg-mentions-small .sg-textarea {
|
|
13
|
-
font-size: var(--sg-font-size-sm);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.sg-mentions-large .sg-textarea {
|
|
17
|
-
font-size: var(--sg-font-size-lg);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.sg-mentions-dropdown {
|
|
21
|
-
position: absolute;
|
|
22
|
-
left: 0;
|
|
23
|
-
right: 0;
|
|
24
|
-
z-index: var(--sg-z-dropdown);
|
|
25
|
-
background: var(--sg-color-bg-elevated);
|
|
26
|
-
border: 1px solid var(--sg-color-border);
|
|
27
|
-
border-radius: var(--sg-border-radius);
|
|
28
|
-
box-shadow: var(--sg-shadow-lg);
|
|
29
|
-
max-height: 200px;
|
|
30
|
-
overflow-y: auto;
|
|
31
|
-
padding: var(--sg-padding-xs) 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.sg-mentions-dropdown-bottom {
|
|
35
|
-
top: 100%;
|
|
36
|
-
margin-top: var(--sg-margin-xs);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.sg-mentions-dropdown-top {
|
|
40
|
-
bottom: 100%;
|
|
41
|
-
margin-bottom: var(--sg-margin-xs);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.sg-mentions-option {
|
|
45
|
-
padding: var(--sg-padding-xs) var(--sg-padding-md);
|
|
46
|
-
cursor: pointer;
|
|
47
|
-
transition: background-color var(--sg-transition-duration) var(--sg-transition-timing);
|
|
48
|
-
line-height: var(--sg-line-height);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.sg-mentions-option:hover,
|
|
52
|
-
.sg-mentions-option-active {
|
|
53
|
-
background: var(--sg-color-bg-hover);
|
|
54
|
-
}
|
|
1
|
+
.sg-mentions {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: inline-block;
|
|
4
|
+
width: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.sg-mentions-disabled {
|
|
8
|
+
opacity: 0.5;
|
|
9
|
+
pointer-events: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.sg-mentions-small .sg-textarea {
|
|
13
|
+
font-size: var(--sg-font-size-sm);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.sg-mentions-large .sg-textarea {
|
|
17
|
+
font-size: var(--sg-font-size-lg);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.sg-mentions-dropdown {
|
|
21
|
+
position: absolute;
|
|
22
|
+
left: 0;
|
|
23
|
+
right: 0;
|
|
24
|
+
z-index: var(--sg-z-dropdown);
|
|
25
|
+
background: var(--sg-color-bg-elevated);
|
|
26
|
+
border: 1px solid var(--sg-color-border);
|
|
27
|
+
border-radius: var(--sg-border-radius);
|
|
28
|
+
box-shadow: var(--sg-shadow-lg);
|
|
29
|
+
max-height: 200px;
|
|
30
|
+
overflow-y: auto;
|
|
31
|
+
padding: var(--sg-padding-xs) 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.sg-mentions-dropdown-bottom {
|
|
35
|
+
top: 100%;
|
|
36
|
+
margin-top: var(--sg-margin-xs);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.sg-mentions-dropdown-top {
|
|
40
|
+
bottom: 100%;
|
|
41
|
+
margin-bottom: var(--sg-margin-xs);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.sg-mentions-option {
|
|
45
|
+
padding: var(--sg-padding-xs) var(--sg-padding-md);
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
transition: background-color var(--sg-transition-duration) var(--sg-transition-timing);
|
|
48
|
+
line-height: var(--sg-line-height);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.sg-mentions-option:hover,
|
|
52
|
+
.sg-mentions-option-active {
|
|
53
|
+
background: var(--sg-color-bg-hover);
|
|
54
|
+
}
|