@labelbee/lb-components 1.2.3 → 1.5.0-alpha.0

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.
Files changed (225) hide show
  1. package/LICENSE +203 -0
  2. package/dist/App.js +1 -1
  3. package/dist/assets/annotation/toolHotKeyIcon/icon_back_kj.svg.js +1 -0
  4. package/dist/assets/annotation/toolHotKeyIcon/icon_forward_kj.svg.js +1 -0
  5. package/dist/assets/annotation/toolHotKeyIcon/icon_playPause.svg.js +1 -0
  6. package/dist/assets/annotation/toolHotKeyIcon/icon_polygonMerge_kj.svg.js +1 -0
  7. package/dist/assets/annotation/toolHotKeyIcon/icon_segment.svg.js +1 -0
  8. package/dist/assets/annotation/toolHotKeyIcon/icon_speed_kj.svg.js +1 -0
  9. package/dist/assets/annotation/video/icon_keyboard_h.svg.js +1 -0
  10. package/dist/components/fileException/FileError.js +1 -0
  11. package/dist/components/fileException/FileInvalid.js +1 -0
  12. package/dist/components/fileException/index.js +1 -0
  13. package/dist/components/videoAnnotate/index.js +1 -0
  14. package/dist/components/videoPlayer/TagToolInstanceAdaptor.js +1 -0
  15. package/dist/components/videoPlayer/TagToolInstanceAdaptorI18nProvider.js +1 -0
  16. package/dist/components/videoPlayer/VideoTagLayer.js +1 -0
  17. package/dist/components/videoPlayer/components/controller/index.js +1 -0
  18. package/dist/components/videoPlayer/index.js +1 -0
  19. package/dist/components/videoPlayer/utils.js +1 -0
  20. package/dist/index.css +950 -651
  21. package/dist/index.css.map +1 -0
  22. package/dist/index.js +1 -1
  23. package/dist/store/Actions.js +1 -1
  24. package/dist/store/annotation/actionCreators.js +1 -1
  25. package/dist/store/annotation/reducer.js +1 -1
  26. package/dist/types/App.d.ts +28 -7
  27. package/dist/types/components/annotationStepPopover/index.d.ts +0 -1
  28. package/dist/types/components/checkboxList/index.d.ts +0 -1
  29. package/dist/types/components/colorTag/index.d.ts +0 -1
  30. package/dist/types/components/{ImageError/index.d.ts → fileException/FileError.d.ts} +5 -4
  31. package/dist/types/components/fileException/FileInvalid.d.ts +12 -0
  32. package/dist/types/components/fileException/index.d.ts +17 -0
  33. package/dist/types/components/videoAnnotate/index.d.ts +15 -0
  34. package/dist/types/components/videoPlayer/TagToolInstanceAdaptor.d.ts +90 -0
  35. package/dist/types/components/videoPlayer/TagToolInstanceAdaptorI18nProvider.d.ts +8 -0
  36. package/dist/types/components/videoPlayer/VideoTagLayer.d.ts +12 -0
  37. package/dist/types/components/videoPlayer/components/controller/index.d.ts +2 -0
  38. package/dist/types/components/videoPlayer/index.d.ts +73 -0
  39. package/dist/types/components/videoPlayer/types.d.ts +8 -0
  40. package/dist/types/components/videoPlayer/utils.d.ts +36 -0
  41. package/dist/types/index.d.ts +6 -4
  42. package/dist/types/store/Actions.d.ts +5 -0
  43. package/dist/types/store/annotation/actionCreators.d.ts +20 -8
  44. package/dist/types/store/annotation/reducer.d.ts +2 -2
  45. package/dist/types/store/annotation/types.d.ts +30 -2
  46. package/dist/types/utils/PageOperator.d.ts +1 -1
  47. package/dist/types/utils/StepUtils.d.ts +7 -0
  48. package/dist/types/utils/TextUtils.d.ts +1 -1
  49. package/dist/types/utils/dom.d.ts +6 -0
  50. package/dist/types/views/MainView/annotationOperation/index.d.ts +5 -9
  51. package/dist/types/views/MainView/annotationTips/index.d.ts +5 -0
  52. package/dist/types/views/MainView/index.d.ts +9 -3
  53. package/dist/types/views/MainView/sidebar/AnnotationText/index.d.ts +3 -1
  54. package/dist/types/views/MainView/sidebar/ClearIcon/index.d.ts +0 -1
  55. package/dist/types/views/MainView/sidebar/GeneralOperation/index.d.ts +3 -1
  56. package/dist/types/views/MainView/sidebar/ImgAttributeInfo/index.d.ts +0 -1
  57. package/dist/types/views/MainView/sidebar/SwitchAttributeList/index.d.ts +3 -1
  58. package/dist/types/views/MainView/sidebar/TagSidebar/index.d.ts +3 -1
  59. package/dist/types/views/MainView/sidebar/TextAreaFormat/index.d.ts +0 -1
  60. package/dist/types/views/MainView/sidebar/TextToolSidebar/index.d.ts +3 -1
  61. package/dist/types/views/MainView/sidebar/ToolStyle/index.d.ts +0 -1
  62. package/dist/types/views/MainView/sidebar/index.d.ts +3 -1
  63. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/common/index.d.ts +23 -0
  64. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/index.d.ts +2 -7
  65. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/polygon/index.d.ts +7 -1
  66. package/dist/types/views/MainView/toolFooter/FooterTips/ToolHotKey/videoTag/index.d.ts +3 -0
  67. package/dist/types/views/MainView/toolFooter/HiddenTips/index.d.ts +0 -1
  68. package/dist/types/views/MainView/toolFooter/PageNumber/index.d.ts +0 -1
  69. package/dist/types/views/MainView/toolFooter/Pagination.d.ts +12 -0
  70. package/dist/types/views/MainView/toolFooter/ZoomController/ZoomLevel/index.d.ts +3 -1
  71. package/dist/types/views/MainView/toolFooter/ZoomController/index.d.ts +3 -1
  72. package/dist/types/views/MainView/toolFooter/index.d.ts +6 -2
  73. package/dist/types/views/MainView/toolHeader/ExportData/index.d.ts +3 -1
  74. package/dist/types/views/MainView/toolHeader/StepSwitch/index.d.ts +3 -1
  75. package/dist/types/views/MainView/toolHeader/index.d.ts +8 -4
  76. package/dist/utils/StepUtils.js +1 -1
  77. package/dist/utils/TextUtils.js +1 -1
  78. package/dist/utils/dom.js +1 -1
  79. package/dist/utils/index.js +1 -1
  80. package/dist/views/MainView/annotationOperation/index.js +1 -1
  81. package/dist/views/MainView/annotationTips/index.js +1 -0
  82. package/dist/views/MainView/index.js +1 -1
  83. package/dist/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  84. package/dist/views/MainView/sidebar/TagSidebar/index.js +1 -1
  85. package/dist/views/MainView/sidebar/index.js +1 -1
  86. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/common/index.js +1 -1
  87. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  88. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/polygon/index.js +1 -1
  89. package/dist/views/MainView/toolFooter/FooterTips/ToolHotKey/videoTag/index.js +1 -0
  90. package/dist/views/MainView/toolFooter/FooterTips/index.js +1 -1
  91. package/dist/views/MainView/toolFooter/Pagination.js +1 -0
  92. package/dist/views/MainView/toolFooter/index.js +1 -1
  93. package/dist/views/MainView/toolHeader/headerOption/index.js +1 -1
  94. package/dist/views/MainView/toolHeader/index.js +1 -1
  95. package/es/App.js +1 -1
  96. package/es/App.js.map +1 -1
  97. package/es/assets/annotation/toolHotKeyIcon/icon_back_kj.svg.js +1 -0
  98. package/es/assets/annotation/toolHotKeyIcon/icon_back_kj.svg.js.map +1 -0
  99. package/es/assets/annotation/toolHotKeyIcon/icon_forward_kj.svg.js +1 -0
  100. package/es/assets/annotation/toolHotKeyIcon/icon_forward_kj.svg.js.map +1 -0
  101. package/es/assets/annotation/toolHotKeyIcon/icon_playPause.svg.js +1 -0
  102. package/es/assets/annotation/toolHotKeyIcon/icon_playPause.svg.js.map +1 -0
  103. package/es/assets/annotation/toolHotKeyIcon/icon_polygonMerge_kj.svg.js +1 -0
  104. package/es/assets/annotation/toolHotKeyIcon/icon_polygonMerge_kj.svg.js.map +1 -0
  105. package/es/assets/annotation/toolHotKeyIcon/icon_segment.svg.js +1 -0
  106. package/es/assets/annotation/toolHotKeyIcon/icon_segment.svg.js.map +1 -0
  107. package/es/assets/annotation/toolHotKeyIcon/icon_speed_kj.svg.js +1 -0
  108. package/es/assets/annotation/toolHotKeyIcon/icon_speed_kj.svg.js.map +1 -0
  109. package/es/assets/annotation/video/icon_keyboard_h.svg.js +1 -0
  110. package/es/assets/annotation/video/icon_keyboard_h.svg.js.map +1 -0
  111. package/es/components/AnnotationView/index.js.map +1 -1
  112. package/es/components/ImageError/index.js +53 -1
  113. package/es/components/ImageError/index.js.map +1 -1
  114. package/es/components/annotationStepPopover/index.js.map +1 -1
  115. package/es/components/attributeList/index.js.map +1 -1
  116. package/es/components/checkboxList/index.js.map +1 -1
  117. package/es/components/colorTag/index.js.map +1 -1
  118. package/es/components/customAntd/IconWithText/index.js.map +1 -1
  119. package/es/components/customResizeHook/index.js.map +1 -1
  120. package/es/components/fileException/FileError.js +1 -0
  121. package/es/components/fileException/FileError.js.map +1 -0
  122. package/es/components/fileException/FileInvalid.js +1 -0
  123. package/es/components/fileException/FileInvalid.js.map +1 -0
  124. package/es/components/fileException/index.js +1 -0
  125. package/es/components/fileException/index.js.map +1 -0
  126. package/es/components/videoAnnotate/index.js +1 -0
  127. package/es/components/videoAnnotate/index.js.map +1 -0
  128. package/es/components/videoPlayer/TagToolInstanceAdaptor.js +1 -0
  129. package/es/components/videoPlayer/TagToolInstanceAdaptor.js.map +1 -0
  130. package/es/components/videoPlayer/TagToolInstanceAdaptorI18nProvider.js +1 -0
  131. package/es/components/videoPlayer/TagToolInstanceAdaptorI18nProvider.js.map +1 -0
  132. package/es/components/videoPlayer/VideoTagLayer.js +1 -0
  133. package/es/components/videoPlayer/VideoTagLayer.js.map +1 -0
  134. package/es/components/videoPlayer/components/controller/index.js +1 -0
  135. package/es/components/videoPlayer/components/controller/index.js.map +1 -0
  136. package/es/components/videoPlayer/index.js +1 -0
  137. package/es/components/videoPlayer/index.js.map +1 -0
  138. package/es/components/videoPlayer/utils.js +1 -0
  139. package/es/components/videoPlayer/utils.js.map +1 -0
  140. package/es/configureStore.js.map +1 -1
  141. package/es/constant/index.js.map +1 -1
  142. package/es/constant/styleString.js.map +1 -1
  143. package/es/data/Style.js.map +1 -1
  144. package/es/data/enums/AnnotationSize.js.map +1 -1
  145. package/es/data/enums/ToolType.js.map +1 -1
  146. package/es/hooks/useRafState.js.map +1 -1
  147. package/es/hooks/useSafeSate.js.map +1 -1
  148. package/es/hooks/useSize.js.map +1 -1
  149. package/es/hooks/useUnmountedRef.js.map +1 -1
  150. package/es/index.js +1 -1
  151. package/es/index.js.map +1 -1
  152. package/es/store/Actions.js +1 -1
  153. package/es/store/Actions.js.map +1 -1
  154. package/es/store/annotation/actionCreators.js +1 -1
  155. package/es/store/annotation/actionCreators.js.map +1 -1
  156. package/es/store/annotation/reducer.js +1 -1
  157. package/es/store/annotation/reducer.js.map +1 -1
  158. package/es/store/imgAttribute/actionCreators.js.map +1 -1
  159. package/es/store/imgAttribute/reducer.js.map +1 -1
  160. package/es/store/index.js.map +1 -1
  161. package/es/store/toolStyle/actionCreators.js.map +1 -1
  162. package/es/store/toolStyle/reducer.js.map +1 -1
  163. package/es/utils/AnnotationDataUtils.js.map +1 -1
  164. package/es/utils/ConfigUtils.js.map +1 -1
  165. package/es/utils/PageOperator.js.map +1 -1
  166. package/es/utils/StepUtils.js +1 -1
  167. package/es/utils/StepUtils.js.map +1 -1
  168. package/es/utils/TextUtils.js +1 -1
  169. package/es/utils/TextUtils.js.map +1 -1
  170. package/es/utils/ToolStyleUtils.js.map +1 -1
  171. package/es/utils/data.js.map +1 -1
  172. package/es/utils/dom.js +1 -1
  173. package/es/utils/dom.js.map +1 -1
  174. package/es/utils/index.js +1 -1
  175. package/es/utils/index.js.map +1 -1
  176. package/es/views/MainView/annotationOperation/index.js +1 -1
  177. package/es/views/MainView/annotationOperation/index.js.map +1 -1
  178. package/es/views/MainView/annotationTips/index.js +1 -0
  179. package/es/views/MainView/annotationTips/index.js.map +1 -0
  180. package/es/views/MainView/index.js +1 -1
  181. package/es/views/MainView/index.js.map +1 -1
  182. package/es/views/MainView/sidebar/AnnotationText/index.js.map +1 -1
  183. package/es/views/MainView/sidebar/ClearIcon/index.js.map +1 -1
  184. package/es/views/MainView/sidebar/GeneralOperation/index.js +1 -1
  185. package/es/views/MainView/sidebar/GeneralOperation/index.js.map +1 -1
  186. package/es/views/MainView/sidebar/ImgAttributeInfo/index.js.map +1 -1
  187. package/es/views/MainView/sidebar/SwitchAttributeList/index.js.map +1 -1
  188. package/es/views/MainView/sidebar/TagSidebar/index.js +1 -1
  189. package/es/views/MainView/sidebar/TagSidebar/index.js.map +1 -1
  190. package/es/views/MainView/sidebar/TextAreaFormat/index.js.map +1 -1
  191. package/es/views/MainView/sidebar/TextToolSidebar/index.js.map +1 -1
  192. package/es/views/MainView/sidebar/ToolStyle/index.js.map +1 -1
  193. package/es/views/MainView/sidebar/index.js +1 -1
  194. package/es/views/MainView/sidebar/index.js.map +1 -1
  195. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/common/index.js +1 -1
  196. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/common/index.js.map +1 -1
  197. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js +1 -1
  198. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/index.js.map +1 -1
  199. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/line/index.js.map +1 -1
  200. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/point/index.js.map +1 -1
  201. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/polygon/index.js +1 -1
  202. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/polygon/index.js.map +1 -1
  203. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/rectToolShortCutTable/index.js.map +1 -1
  204. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/tag/index.js.map +1 -1
  205. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/text/index.js.map +1 -1
  206. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/videoTag/index.js +1 -0
  207. package/es/views/MainView/toolFooter/FooterTips/ToolHotKey/videoTag/index.js.map +1 -0
  208. package/es/views/MainView/toolFooter/FooterTips/index.js +1 -1
  209. package/es/views/MainView/toolFooter/FooterTips/index.js.map +1 -1
  210. package/es/views/MainView/toolFooter/HiddenTips/index.js.map +1 -1
  211. package/es/views/MainView/toolFooter/PageNumber/index.js.map +1 -1
  212. package/es/views/MainView/toolFooter/Pagination.js +1 -0
  213. package/es/views/MainView/toolFooter/Pagination.js.map +1 -0
  214. package/es/views/MainView/toolFooter/ZoomController/ZoomLevel/index.js.map +1 -1
  215. package/es/views/MainView/toolFooter/ZoomController/index.js.map +1 -1
  216. package/es/views/MainView/toolFooter/index.js +1 -1
  217. package/es/views/MainView/toolFooter/index.js.map +1 -1
  218. package/es/views/MainView/toolHeader/ExportData/index.js.map +1 -1
  219. package/es/views/MainView/toolHeader/StepSwitch/index.js.map +1 -1
  220. package/es/views/MainView/toolHeader/headerOption/index.js +1 -1
  221. package/es/views/MainView/toolHeader/headerOption/index.js.map +1 -1
  222. package/es/views/MainView/toolHeader/index.js +1 -1
  223. package/es/views/MainView/toolHeader/index.js.map +1 -1
  224. package/package.json +12 -10
  225. package/dist/components/ImageError/index.js +0 -1
package/dist/index.css CHANGED
@@ -1,26 +1,32 @@
1
+ @charset "UTF-8";
1
2
  .bee-layout {
2
3
  position: relative;
3
4
  overflow: hidden;
4
- height: 100vh; }
5
- .bee-layout__header, .bee-layout__footer {
6
- flex-shrink: 0;
7
- height: auto;
8
- background: transparent;
9
- padding: 0;
10
- line-height: inherit;
11
- max-height: 60px; }
12
- .bee-layout__side {
13
- max-width: 440px;
14
- background: transparent;
15
- overflow: hidden;
16
- position: relative;
17
- z-index: 10;
18
- border-top: 1px solid #e2e2e2; }
19
- .bee-layout__side .ant-collapse-borderless > .ant-collapse-item {
20
- border-bottom: 1px solid #eee; }
21
- .bee-layout__content {
22
- display: flex;
23
- flex-direction: column; }
5
+ height: 100vh;
6
+ }
7
+ .bee-layout__header, .bee-layout__footer {
8
+ flex-shrink: 0;
9
+ height: auto;
10
+ background: transparent;
11
+ padding: 0;
12
+ line-height: inherit;
13
+ max-height: 60px;
14
+ }
15
+ .bee-layout__side {
16
+ max-width: 440px;
17
+ background: transparent;
18
+ overflow: hidden;
19
+ position: relative;
20
+ z-index: 10;
21
+ border-top: 1px solid #e2e2e2;
22
+ }
23
+ .bee-layout__side .ant-collapse-borderless > .ant-collapse-item {
24
+ border-bottom: 1px solid #eee;
25
+ }
26
+ .bee-layout__content {
27
+ display: flex;
28
+ flex-direction: column;
29
+ }
24
30
 
25
31
  .bee-footer {
26
32
  height: 40px;
@@ -33,34 +39,44 @@
33
39
  background: #444444;
34
40
  cursor: default;
35
41
  font-size: 14px;
36
- overflow: hidden; }
37
- .bee-footer__pagination {
38
- display: flex;
39
- align-items: center; }
40
- .bee-footer__pageAll {
41
- margin: 0 5px; }
42
- .bee-footer__zoomController {
43
- display: flex;
44
- align-items: center;
45
- margin-right: 8px; }
46
- .bee-footer__zoomText {
47
- width: 72px;
48
- display: inline-block;
49
- text-align: center;
50
- cursor: pointer; }
51
- .bee-footer__zoomText .adaptIcon {
52
- display: none; }
53
- .bee-footer__zoomText:hover .zoomValue {
54
- display: none; }
55
- .bee-footer__zoomText:hover .adaptIcon {
56
- display: inline-block; }
57
- .bee-footer__highlight {
58
- margin: 0 5px;
59
- padding: 4px;
60
- border: 1px solid #cccccc; }
61
- .bee-footer__hotkey-content {
62
- max-height: 70vh;
63
- overflow-y: auto; }
42
+ overflow: hidden;
43
+ }
44
+ .bee-footer__pagination {
45
+ display: flex;
46
+ align-items: center;
47
+ }
48
+ .bee-footer__pageAll {
49
+ margin: 0 5px;
50
+ }
51
+ .bee-footer__zoomController {
52
+ display: flex;
53
+ align-items: center;
54
+ margin-right: 8px;
55
+ }
56
+ .bee-footer__zoomText {
57
+ width: 72px;
58
+ display: inline-block;
59
+ text-align: center;
60
+ cursor: pointer;
61
+ }
62
+ .bee-footer__zoomText .adaptIcon {
63
+ display: none;
64
+ }
65
+ .bee-footer__zoomText:hover .zoomValue {
66
+ display: none;
67
+ }
68
+ .bee-footer__zoomText:hover .adaptIcon {
69
+ display: inline-block;
70
+ }
71
+ .bee-footer__highlight {
72
+ margin: 0 5px;
73
+ padding: 4px;
74
+ border: 1px solid #cccccc;
75
+ }
76
+ .bee-footer__hotkey-content {
77
+ max-height: 70vh;
78
+ overflow-y: auto;
79
+ }
64
80
 
65
81
  .pageInput {
66
82
  margin: 0 5px;
@@ -73,13 +89,16 @@
73
89
  color: white;
74
90
  height: 24px;
75
91
  text-align: center;
76
- padding: 0 6px; }
77
- .pageInput:focus {
78
- box-shadow: none;
79
- outline: none;
80
- border-color: #cccccc; }
81
- .pageInput:hover {
82
- border-color: #cccccc; }
92
+ padding: 0 6px;
93
+ }
94
+ .pageInput:focus {
95
+ box-shadow: none;
96
+ outline: none;
97
+ border-color: #cccccc;
98
+ }
99
+ .pageInput:hover {
100
+ border-color: #cccccc;
101
+ }
83
102
 
84
103
  .bee-header__title {
85
104
  color: #999999;
@@ -93,68 +112,78 @@
93
112
  padding: 0 30px;
94
113
  background: #ffffff;
95
114
  border-bottom: 1px solid #dfdfdf;
96
- box-shadow: 0px 2px 14px rgba(204, 204, 204, 0.5); }
97
-
115
+ box-shadow: 0px 2px 14px rgba(204, 204, 204, 0.5);
116
+ }
98
117
  .bee-header__icon {
99
118
  margin-right: 24px;
100
119
  width: 9px;
101
- height: 15px; }
102
-
120
+ height: 15px;
121
+ }
103
122
  .bee-header__name {
104
123
  font-size: 16px;
105
124
  font-family: SourceHanSansCN-Medium;
106
125
  font-weight: 500;
107
- color: #333; }
108
-
126
+ color: #333;
127
+ }
109
128
  .bee-header__operationNode {
110
- position: absolute; }
111
-
129
+ position: absolute;
130
+ }
112
131
  .bee-header__titlePlacement {
113
- flex: 1; }
114
-
132
+ flex: 1;
133
+ }
115
134
  .bee-header__lang {
116
- color: rgba(0, 0, 0, 0.85); }
117
- .bee-header__lang .bee-langCN,
118
- .bee-header__lang .bee-langEN {
119
- cursor: pointer; }
120
- .bee-header__lang .bee-langCN.active,
121
- .bee-header__lang .bee-langEN.active {
122
- font-weight: bold; }
123
-
135
+ color: rgba(0, 0, 0, 0.85);
136
+ }
137
+ .bee-header__lang .bee-langCN,
138
+ .bee-header__lang .bee-langEN {
139
+ cursor: pointer;
140
+ }
141
+ .bee-header__lang .bee-langCN.active,
142
+ .bee-header__lang .bee-langEN.active {
143
+ font-weight: bold;
144
+ }
124
145
  .bee-header__hotKey {
125
146
  display: flex;
126
- justify-content: space-between; }
127
- .bee-header__hotKey .item {
128
- display: flex;
129
- flex-direction: column;
130
- justify-content: space-between;
131
- align-items: center;
132
- cursor: pointer;
133
- user-select: none; }
134
- .bee-header__hotKey .item .singleTool {
135
- color: rgba(255, 255, 255, 0.4);
136
- margin: 0 21px;
137
- cursor: pointer;
138
- -moz-user-select: none;
139
- -webkit-user-select: none;
140
- -ms-user-select: none;
141
- user-select: none; }
142
- .bee-header__hotKey .item:hover {
143
- color: #666fff; }
147
+ justify-content: space-between;
148
+ }
149
+ .bee-header__hotKey .item {
150
+ display: flex;
151
+ flex-direction: column;
152
+ justify-content: space-between;
153
+ align-items: center;
154
+ cursor: pointer;
155
+ user-select: none;
156
+ }
157
+ .bee-header__hotKey .item .singleTool {
158
+ color: rgba(255, 255, 255, 0.4);
159
+ margin: 0 21px;
160
+ cursor: pointer;
161
+ -moz-user-select: none;
162
+ -webkit-user-select: none;
163
+ -ms-user-select: none;
164
+ user-select: none;
165
+ }
166
+ .bee-header__hotKey .item:hover {
167
+ color: #666fff;
168
+ }
144
169
 
145
170
  .content {
146
171
  width: 240px;
147
172
  display: flex;
148
- flex-direction: column; }
149
- .content .item {
150
- display: flex;
151
- justify-content: space-between;
152
- align-items: center; }
153
- .content .item .title {
154
- min-width: 60px;
155
- margin-right: 10px; }
156
- .content .item .slider {
157
- flex: 1; }
173
+ flex-direction: column;
174
+ }
175
+ .content .item {
176
+ display: flex;
177
+ justify-content: space-between;
178
+ align-items: center;
179
+ }
180
+ .content .item .title {
181
+ min-width: 60px;
182
+ margin-right: 10px;
183
+ }
184
+ .content .item .slider {
185
+ flex: 1;
186
+ }
158
187
 
159
188
  .bee-sidebar {
160
189
  height: 100%;
@@ -169,357 +198,443 @@
169
198
  -webkit-user-select: none;
170
199
  -ms-user-select: none;
171
200
  user-select: none;
172
- text-align: left; }
173
- .bee-sidebar__content {
174
- flex: 1;
175
- overflow: auto;
176
- background-color: #fff; }
177
- .bee-sidebar__content .panel {
178
- margin: 0 6px; }
179
- .bee-sidebar__content .panel .imgAttributeController .tools .singleTool {
180
- color: #999999;
181
- cursor: pointer;
182
- display: flex;
183
- align-items: center; }
184
- .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .toolName {
185
- width: 100%;
186
- margin-left: 10px;
187
- font-size: 12px; }
188
- .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .selectedToolName {
189
- width: 100%;
190
- margin-left: 10px;
191
- font-size: 15px;
192
- color: #666fff; }
193
- .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle {
194
- border-color: #666fff; }
195
- .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle.ant-tooltip-open {
196
- border-color: #666fff; }
197
- .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle:focus {
198
- border-color: #666fff; }
199
- .bee-sidebar__level {
200
- margin: 20px 20px 0 20px; }
201
- .bee-sidebar__toolsOption {
202
- display: flex;
203
- justify-content: center;
204
- cursor: pointer;
205
- margin: 10px 0 30px; }
206
- .bee-sidebar__singleTool {
207
- max-width: 20px;
208
- max-height: 20px;
209
- margin: 0 10px; }
210
- .bee-sidebar__horizontal {
211
- width: 100%;
212
- height: 1px;
213
- background: #eee; }
214
- .bee-sidebar .dashHorizontal {
215
- width: 100%;
216
- border-bottom: 1px dashed #eee; }
217
- .bee-sidebar .sensebee-radio-group,
218
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group {
219
- max-height: calc(100vh - 61px);
220
- display: flex;
221
- flex-direction: column;
222
- max-height: 300px;
223
- overflow-y: auto; }
224
- .bee-sidebar .sensebee-radio-group .ant-radio-wrapper,
225
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper {
226
- padding: 10px 5px 10px 12px;
227
- margin: 0;
228
- display: flex;
229
- flex: 1;
230
- flex-direction: row;
231
- align-content: center; }
232
- .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .ant-radio,
233
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .ant-radio {
234
- align-self: center; }
235
- .bee-sidebar .sensebee-radio-group .ant-radio-wrapper:hover,
236
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper:hover {
237
- background: #f3f4ff; }
238
- .bee-sidebar .sensebee-radio-group .ant-radio-wrapper > span:nth-child(2),
239
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper > span:nth-child(2) {
240
- flex: 1;
241
- justify-content: space-between;
242
- display: flex;
243
- align-self: center;
244
- overflow: hidden; }
245
- .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-num,
246
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-num {
247
- width: 20px;
248
- height: 20px;
249
- border: 1px solid #cccccc;
250
- opacity: 1;
251
- border-radius: 2px;
252
- text-align: center;
253
- line-height: 18px; }
254
- .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-label,
255
- .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-label {
256
- flex: 1;
257
- overflow: hidden;
258
- text-overflow: ellipsis; }
259
- .bee-sidebar #pen-color .ant-slider .ant-slider-track,
260
- .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
261
- .bee-sidebar #style-radius .ant-slider .ant-slider-track,
262
- .bee-sidebar #style-width .ant-slider .ant-slider-track,
263
- .bee-sidebar #style-color .ant-slider .ant-slider-track,
264
- .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
265
- .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
266
- background: #f5f5f5; }
267
- .bee-sidebar #pen-color .ant-slider .ant-slider-dot,
268
- .bee-sidebar #paintBucket-color .ant-slider .ant-slider-dot,
269
- .bee-sidebar #style-radius .ant-slider .ant-slider-dot,
270
- .bee-sidebar #style-width .ant-slider .ant-slider-dot,
271
- .bee-sidebar #style-color .ant-slider .ant-slider-dot,
272
- .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-dot,
273
- .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-dot {
274
- width: 0;
275
- height: 0;
276
- border: none; }
277
- .bee-sidebar #pen-color .ant-slider .ant-slider-handle,
278
- .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle,
279
- .bee-sidebar #style-radius .ant-slider .ant-slider-handle,
280
- .bee-sidebar #style-width .ant-slider .ant-slider-handle,
281
- .bee-sidebar #style-color .ant-slider .ant-slider-handle,
282
- .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle,
283
- .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle {
284
- background-image: url("./assets/cssIcon/slide_btn.svg");
285
- background-repeat: no-repeat;
286
- background-size: 30px 30px;
287
- width: 40px;
288
- height: 40px;
289
- background-color: transparent;
290
- border-color: transparent;
291
- background-position: 3px 2px;
292
- margin-top: -15px; }
293
- .bee-sidebar #pen-color .ant-slider .ant-slider-handle:focus,
294
- .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle:focus,
295
- .bee-sidebar #style-radius .ant-slider .ant-slider-handle:focus,
296
- .bee-sidebar #style-width .ant-slider .ant-slider-handle:focus,
297
- .bee-sidebar #style-color .ant-slider .ant-slider-handle:focus,
298
- .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle:focus,
299
- .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle:focus {
300
- box-shadow: none; }
301
- .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
302
- .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
303
- .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
304
- .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
305
- .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
306
- .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
307
- .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
308
- color: inherit;
309
- font-style: normal;
310
- line-height: 0;
311
- text-align: center;
312
- text-transform: none;
313
- vertical-align: -0.125em;
314
- text-rendering: optimizeLegibility;
315
- -webkit-font-smoothing: antialiased;
316
- -moz-osx-font-smoothing: grayscale;
317
- position: absolute;
318
- top: 50%;
319
- right: 16px;
320
- display: inline-block;
321
- font-size: 12px;
322
- transform: translateY(-50%); }
323
- .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
324
- .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
325
- .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
326
- .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
327
- .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
328
- .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
329
- .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header {
330
- position: relative;
331
- color: rgba(0, 0, 0, 0.85);
332
- line-height: 1.5715;
333
- cursor: pointer;
334
- transition: all 0.3s;
335
- z-index: 10; }
336
- .bee-sidebar #pen-color .ant-slider-rail,
337
- .bee-sidebar #pen-color .ant-slider-track,
338
- .bee-sidebar #pen-color .ant-slider-step,
339
- .bee-sidebar #paintBucket-color .ant-slider-rail,
340
- .bee-sidebar #paintBucket-color .ant-slider-track,
341
- .bee-sidebar #paintBucket-color .ant-slider-step,
342
- .bee-sidebar #style-radius .ant-slider-rail,
343
- .bee-sidebar #style-radius .ant-slider-track,
344
- .bee-sidebar #style-radius .ant-slider-step,
345
- .bee-sidebar #style-width .ant-slider-rail,
346
- .bee-sidebar #style-width .ant-slider-track,
347
- .bee-sidebar #style-width .ant-slider-step,
348
- .bee-sidebar #style-color .ant-slider-rail,
349
- .bee-sidebar #style-color .ant-slider-track,
350
- .bee-sidebar #style-color .ant-slider-step,
351
- .bee-sidebar #style-fillOpacity .ant-slider-rail,
352
- .bee-sidebar #style-fillOpacity .ant-slider-track,
353
- .bee-sidebar #style-fillOpacity .ant-slider-step,
354
- .bee-sidebar #style-borderOpacity .ant-slider-rail,
355
- .bee-sidebar #style-borderOpacity .ant-slider-track,
356
- .bee-sidebar #style-borderOpacity .ant-slider-step {
357
- background-color: none;
358
- height: 8px; }
359
- .bee-sidebar #pen-color .ant-slider .ant-slider-track,
360
- .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
361
- .bee-sidebar #style-radius .ant-slider .ant-slider-track,
362
- .bee-sidebar #style-width .ant-slider .ant-slider-track,
363
- .bee-sidebar #style-color .ant-slider .ant-slider-track,
364
- .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
365
- .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
366
- background: none; }
367
- .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot,
368
- .bee-sidebar #style-width .ant-slider-step .ant-slider-dot {
369
- height: 12px;
370
- background: #666666;
371
- border-radius: 0;
372
- margin-left: -2px; }
373
- .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(1),
374
- .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(1) {
375
- width: 1px; }
376
- .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(2),
377
- .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(2) {
378
- width: 2px; }
379
- .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(3),
380
- .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(3) {
381
- width: 3px; }
382
- .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(4),
383
- .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(4) {
384
- width: 4px; }
385
- .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(5),
386
- .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(5) {
387
- width: 5px; }
388
- .bee-sidebar #style-radius .ant-slider:hover .ant-slider-rail,
389
- .bee-sidebar #style-width .ant-slider:hover .ant-slider-rail {
390
- background: #f5f5f5; }
391
- .bee-sidebar #style-color .ant-slider-rail {
392
- background: linear-gradient(to right, blue 0%, blue 20%, cyan 20%, cyan 40%, lime 40%, lime 60%, yellow 60%, yellow 80%, magenta 80%, magenta 100%); }
393
- .bee-sidebar #style-fillOpacity .ant-slider-rail,
394
- .bee-sidebar #style-borderOpacity .ant-slider-rail {
395
- background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.8) 80%, black 80%, black 100%); }
201
+ text-align: left;
202
+ }
203
+ .bee-sidebar__content {
204
+ flex: 1;
205
+ overflow: auto;
206
+ background-color: #fff;
207
+ }
208
+ .bee-sidebar__content .panel {
209
+ margin: 0 6px;
210
+ }
211
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool {
212
+ color: #999999;
213
+ cursor: pointer;
214
+ display: flex;
215
+ align-items: center;
216
+ }
217
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .toolName {
218
+ width: 100%;
219
+ margin-left: 10px;
220
+ font-size: 12px;
221
+ }
222
+ .bee-sidebar__content .panel .imgAttributeController .tools .singleTool .selectedToolName {
223
+ width: 100%;
224
+ margin-left: 10px;
225
+ font-size: 15px;
226
+ color: #666fff;
227
+ }
228
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle {
229
+ border-color: #666fff;
230
+ }
231
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle.ant-tooltip-open {
232
+ border-color: #666fff;
233
+ }
234
+ .bee-sidebar__content .panel .imgAttributeController .ant-slider-handle:focus {
235
+ border-color: #666fff;
236
+ }
237
+ .bee-sidebar__level {
238
+ margin: 20px 20px 0 20px;
239
+ }
240
+ .bee-sidebar__toolsOption {
241
+ display: flex;
242
+ justify-content: center;
243
+ cursor: pointer;
244
+ margin: 10px 0 30px;
245
+ }
246
+ .bee-sidebar__singleTool {
247
+ max-width: 20px;
248
+ max-height: 20px;
249
+ margin: 0 10px;
250
+ }
251
+ .bee-sidebar__horizontal {
252
+ width: 100%;
253
+ height: 1px;
254
+ background: #eee;
255
+ }
256
+ .bee-sidebar .dashHorizontal {
257
+ width: 100%;
258
+ border-bottom: 1px dashed #eee;
259
+ }
260
+ .bee-sidebar .sensebee-radio-group,
261
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group {
262
+ max-height: calc(100vh - 61px);
263
+ display: flex;
264
+ flex-direction: column;
265
+ max-height: 300px;
266
+ overflow-y: auto;
267
+ }
268
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper,
269
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper {
270
+ padding: 10px 5px 10px 12px;
271
+ margin: 0;
272
+ display: flex;
273
+ flex: 1;
274
+ flex-direction: row;
275
+ align-content: center;
276
+ }
277
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .ant-radio,
278
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .ant-radio {
279
+ align-self: center;
280
+ }
281
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper:hover,
282
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper:hover {
283
+ background: #f3f4ff;
284
+ }
285
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper > span:nth-child(2),
286
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper > span:nth-child(2) {
287
+ flex: 1;
288
+ justify-content: space-between;
289
+ display: flex;
290
+ align-self: center;
291
+ overflow: hidden;
292
+ }
293
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-num,
294
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-num {
295
+ width: 20px;
296
+ height: 20px;
297
+ border: 1px solid #cccccc;
298
+ opacity: 1;
299
+ border-radius: 2px;
300
+ text-align: center;
301
+ line-height: 18px;
302
+ }
303
+ .bee-sidebar .sensebee-radio-group .ant-radio-wrapper .sensebee-radio-label,
304
+ .bee-sidebar .sensebee-radio-group-no-limit-height .ant-radio-group .ant-radio-wrapper .sensebee-radio-label {
305
+ flex: 1;
306
+ overflow: hidden;
307
+ text-overflow: ellipsis;
308
+ }
309
+ .bee-sidebar #pen-color .ant-slider .ant-slider-track,
310
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
311
+ .bee-sidebar #style-radius .ant-slider .ant-slider-track,
312
+ .bee-sidebar #style-width .ant-slider .ant-slider-track,
313
+ .bee-sidebar #style-color .ant-slider .ant-slider-track,
314
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
315
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
316
+ background: #f5f5f5;
317
+ }
318
+ .bee-sidebar #pen-color .ant-slider .ant-slider-dot,
319
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-dot,
320
+ .bee-sidebar #style-radius .ant-slider .ant-slider-dot,
321
+ .bee-sidebar #style-width .ant-slider .ant-slider-dot,
322
+ .bee-sidebar #style-color .ant-slider .ant-slider-dot,
323
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-dot,
324
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-dot {
325
+ width: 0;
326
+ height: 0;
327
+ border: none;
328
+ }
329
+ .bee-sidebar #pen-color .ant-slider .ant-slider-handle,
330
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle,
331
+ .bee-sidebar #style-radius .ant-slider .ant-slider-handle,
332
+ .bee-sidebar #style-width .ant-slider .ant-slider-handle,
333
+ .bee-sidebar #style-color .ant-slider .ant-slider-handle,
334
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle,
335
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle {
336
+ background-image: url("./assets/cssIcon/slide_btn.svg");
337
+ background-repeat: no-repeat;
338
+ background-size: 30px 30px;
339
+ width: 40px;
340
+ height: 40px;
341
+ background-color: transparent;
342
+ border-color: transparent;
343
+ background-position: 3px 2px;
344
+ margin-top: -15px;
345
+ }
346
+ .bee-sidebar #pen-color .ant-slider .ant-slider-handle:focus,
347
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-handle:focus,
348
+ .bee-sidebar #style-radius .ant-slider .ant-slider-handle:focus,
349
+ .bee-sidebar #style-width .ant-slider .ant-slider-handle:focus,
350
+ .bee-sidebar #style-color .ant-slider .ant-slider-handle:focus,
351
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-handle:focus,
352
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-handle:focus {
353
+ box-shadow: none;
354
+ }
355
+ .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
356
+ .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
357
+ .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
358
+ .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
359
+ .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
360
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
361
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
362
+ color: inherit;
363
+ font-style: normal;
364
+ line-height: 0;
365
+ text-align: center;
366
+ text-transform: none;
367
+ vertical-align: -0.125em;
368
+ text-rendering: optimizeLegibility;
369
+ -webkit-font-smoothing: antialiased;
370
+ -moz-osx-font-smoothing: grayscale;
371
+ position: absolute;
372
+ top: 50%;
373
+ right: 16px;
374
+ display: inline-block;
375
+ font-size: 12px;
376
+ transform: translateY(-50%);
377
+ }
378
+ .bee-sidebar #pen-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
379
+ .bee-sidebar #paintBucket-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
380
+ .bee-sidebar #style-radius .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
381
+ .bee-sidebar #style-width .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
382
+ .bee-sidebar #style-color .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
383
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header,
384
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-collapse > .ant-collapse-item > .ant-collapse-header {
385
+ position: relative;
386
+ color: rgba(0, 0, 0, 0.85);
387
+ line-height: 1.5715;
388
+ cursor: pointer;
389
+ transition: all 0.3s;
390
+ z-index: 10;
391
+ }
392
+ .bee-sidebar #pen-color .ant-slider-rail,
393
+ .bee-sidebar #pen-color .ant-slider-track,
394
+ .bee-sidebar #pen-color .ant-slider-step,
395
+ .bee-sidebar #paintBucket-color .ant-slider-rail,
396
+ .bee-sidebar #paintBucket-color .ant-slider-track,
397
+ .bee-sidebar #paintBucket-color .ant-slider-step,
398
+ .bee-sidebar #style-radius .ant-slider-rail,
399
+ .bee-sidebar #style-radius .ant-slider-track,
400
+ .bee-sidebar #style-radius .ant-slider-step,
401
+ .bee-sidebar #style-width .ant-slider-rail,
402
+ .bee-sidebar #style-width .ant-slider-track,
403
+ .bee-sidebar #style-width .ant-slider-step,
404
+ .bee-sidebar #style-color .ant-slider-rail,
405
+ .bee-sidebar #style-color .ant-slider-track,
406
+ .bee-sidebar #style-color .ant-slider-step,
407
+ .bee-sidebar #style-fillOpacity .ant-slider-rail,
408
+ .bee-sidebar #style-fillOpacity .ant-slider-track,
409
+ .bee-sidebar #style-fillOpacity .ant-slider-step,
410
+ .bee-sidebar #style-borderOpacity .ant-slider-rail,
411
+ .bee-sidebar #style-borderOpacity .ant-slider-track,
412
+ .bee-sidebar #style-borderOpacity .ant-slider-step {
413
+ background-color: none;
414
+ height: 8px;
415
+ }
416
+ .bee-sidebar #pen-color .ant-slider .ant-slider-track,
417
+ .bee-sidebar #paintBucket-color .ant-slider .ant-slider-track,
418
+ .bee-sidebar #style-radius .ant-slider .ant-slider-track,
419
+ .bee-sidebar #style-width .ant-slider .ant-slider-track,
420
+ .bee-sidebar #style-color .ant-slider .ant-slider-track,
421
+ .bee-sidebar #style-fillOpacity .ant-slider .ant-slider-track,
422
+ .bee-sidebar #style-borderOpacity .ant-slider .ant-slider-track {
423
+ background: none;
424
+ }
425
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot,
426
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot {
427
+ height: 12px;
428
+ background: #666666;
429
+ border-radius: 0;
430
+ margin-left: -2px;
431
+ }
432
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(1),
433
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(1) {
434
+ width: 1px;
435
+ }
436
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(2),
437
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(2) {
438
+ width: 2px;
439
+ }
440
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(3),
441
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(3) {
442
+ width: 3px;
443
+ }
444
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(4),
445
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(4) {
446
+ width: 4px;
447
+ }
448
+ .bee-sidebar #style-radius .ant-slider-step .ant-slider-dot:nth-of-type(5),
449
+ .bee-sidebar #style-width .ant-slider-step .ant-slider-dot:nth-of-type(5) {
450
+ width: 5px;
451
+ }
452
+ .bee-sidebar #style-radius .ant-slider:hover .ant-slider-rail,
453
+ .bee-sidebar #style-width .ant-slider:hover .ant-slider-rail {
454
+ background: #f5f5f5;
455
+ }
456
+ .bee-sidebar #style-color .ant-slider-rail {
457
+ background: linear-gradient(to right, blue 0%, blue 20%, aqua 20%, aqua 40%, lime 40%, lime 60%, yellow 60%, yellow 80%, fuchsia 80%, fuchsia 100%);
458
+ }
459
+ .bee-sidebar #style-fillOpacity .ant-slider-rail,
460
+ .bee-sidebar #style-borderOpacity .ant-slider-rail {
461
+ background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.8) 80%, black 80%, black 100%);
462
+ }
463
+
464
+ .bee-tips {
465
+ display: flex;
466
+ justify-content: flex-end;
467
+ background-color: #333;
468
+ color: rgba(255, 255, 255, 0.4);
469
+ line-height: 40px;
470
+ opacity: 0.8;
471
+ height: 40px;
472
+ padding: 0 30px;
473
+ width: 100%;
474
+ text-overflow: ellipsis;
475
+ overflow: hidden;
476
+ white-space: nowrap;
477
+ cursor: text;
478
+ }
396
479
 
397
480
  .annotationOperation {
398
481
  position: relative;
399
482
  flex: 1;
400
- overflow: hidden; }
401
- .annotationOperation .canvas {
402
- user-select: none;
403
- display: block;
404
- position: relative;
405
- height: 100%;
406
- width: 100%; }
483
+ overflow: hidden;
484
+ }
485
+ .annotationOperation .canvas {
486
+ user-select: none;
487
+ display: block;
488
+ position: relative;
489
+ height: 100%;
490
+ width: 100%;
491
+ }
407
492
 
408
493
  .textInputContainer {
409
- padding: 20px; }
410
- .textInputContainer .textareaContainer {
411
- position: relative; }
412
- .textInputContainer .textareaContainer > textarea {
413
- padding-bottom: 30px; }
414
- .textInputContainer .textareaContainer .textAreaFooter {
415
- position: absolute;
416
- width: 100%;
417
- bottom: 0;
418
- font-weight: 400;
419
- line-height: 20px;
420
- opacity: 1;
421
- font-size: 12px;
422
- color: #cccccc;
423
- display: flex;
424
- padding: 0 10px 5px; }
425
- .textInputContainer .textareaContainer .textAreaFooter .warning {
426
- color: #ff0000; }
427
- .textInputContainer .textareaContainer .textAreaFooter .hotkeyTip {
428
- font-size: 14px;
429
- opacity: 0;
430
- transition: opacity 0.3s ease-in-out; }
431
- .textInputContainer .textareaContainer .textAreaFooter .wordCount {
432
- flex: 1;
433
- text-align: right; }
434
- .textInputContainer .textareaContainer.focus .textAreaFooter .hotkeyTip {
435
- opacity: 1; }
436
- .textInputContainer .textareaContainer .textareaContainer {
437
- position: relative; }
438
- .textInputContainer .textareaContainer .warning {
439
- outline-color: #ff0000;
440
- border-color: #ff0000; }
441
- .textInputContainer .textareaContainer .inputCount {
442
- position: absolute;
443
- bottom: 0;
444
- right: 5px;
445
- font-weight: 400;
446
- line-height: 20px;
447
- opacity: 1;
448
- font-size: 12px;
449
- color: #cccccc; }
450
- .textInputContainer .textareaContainer .inputCount .warning {
451
- color: #ff0000; }
452
- .textInputContainer .textareaContainer .label,
453
- .textInputContainer .textareaContainer .switchItem {
454
- color: #333333;
455
- font-size: 12px;
456
- line-height: 40px; }
457
- .textInputContainer .textareaContainer .notify {
458
- font-size: 12px;
459
- color: #cccccc; }
460
- .textInputContainer .textareaContainer .toolTextAreaBox {
461
- position: relative;
462
- padding-bottom: 20px;
463
- border: 1px solid #d9d9d9;
464
- border-radius: 2px; }
465
- .textInputContainer .textareaContainer .toolTextAreaBox:hover {
466
- border-color: #40a9ff; }
467
- .textInputContainer .textareaContainer .toolTextAreaBox .textAreaFooter {
468
- bottom: 0;
469
- height: 20px; }
470
- .textInputContainer .textareaContainer .toolTextAreaBox .ant-input {
471
- border: none; }
472
- .textInputContainer .textareaContainer .toolTextAreaBoxFocus {
473
- border-color: #40a9ff; }
474
- .textInputContainer .switchItem {
475
- margin-top: 20px;
476
- display: flex;
477
- justify-content: space-between; }
478
- .textInputContainer .notify {
479
- font-size: 12px;
480
- color: #cccccc; }
494
+ padding: 20px;
495
+ }
496
+ .textInputContainer .textareaContainer {
497
+ position: relative;
498
+ }
499
+ .textInputContainer .textareaContainer > textarea {
500
+ padding-bottom: 30px;
501
+ }
502
+ .textInputContainer .textareaContainer .textAreaFooter {
503
+ position: absolute;
504
+ width: 100%;
505
+ bottom: 0;
506
+ font-weight: 400;
507
+ line-height: 20px;
508
+ opacity: 1;
509
+ font-size: 12px;
510
+ color: #cccccc;
511
+ display: flex;
512
+ padding: 0 10px 5px;
513
+ }
514
+ .textInputContainer .textareaContainer .textAreaFooter .warning {
515
+ color: #ff0000;
516
+ }
517
+ .textInputContainer .textareaContainer .textAreaFooter .hotkeyTip {
518
+ font-size: 14px;
519
+ opacity: 0;
520
+ transition: opacity 0.3s ease-in-out;
521
+ }
522
+ .textInputContainer .textareaContainer .textAreaFooter .wordCount {
523
+ flex: 1;
524
+ text-align: right;
525
+ }
526
+ .textInputContainer .textareaContainer.focus .textAreaFooter .hotkeyTip {
527
+ opacity: 1;
528
+ }
529
+ .textInputContainer .textareaContainer .textareaContainer {
530
+ position: relative;
531
+ }
532
+ .textInputContainer .textareaContainer .warning {
533
+ outline-color: #ff0000;
534
+ border-color: #ff0000;
535
+ }
536
+ .textInputContainer .textareaContainer .inputCount {
537
+ position: absolute;
538
+ bottom: 0;
539
+ right: 5px;
540
+ font-weight: 400;
541
+ line-height: 20px;
542
+ opacity: 1;
543
+ font-size: 12px;
544
+ color: #cccccc;
545
+ }
546
+ .textInputContainer .textareaContainer .inputCount .warning {
547
+ color: #ff0000;
548
+ }
549
+ .textInputContainer .textareaContainer .label,
550
+ .textInputContainer .textareaContainer .switchItem {
551
+ color: #333333;
552
+ font-size: 12px;
553
+ line-height: 40px;
554
+ }
555
+ .textInputContainer .textareaContainer .notify {
556
+ font-size: 12px;
557
+ color: #cccccc;
558
+ }
559
+ .textInputContainer .textareaContainer .toolTextAreaBox {
560
+ position: relative;
561
+ padding-bottom: 20px;
562
+ border: 1px solid #d9d9d9;
563
+ border-radius: 2px;
564
+ }
565
+ .textInputContainer .textareaContainer .toolTextAreaBox:hover {
566
+ border-color: #40a9ff;
567
+ }
568
+ .textInputContainer .textareaContainer .toolTextAreaBox .textAreaFooter {
569
+ bottom: 0;
570
+ height: 20px;
571
+ }
572
+ .textInputContainer .textareaContainer .toolTextAreaBox .ant-input {
573
+ border: none;
574
+ }
575
+ .textInputContainer .textareaContainer .toolTextAreaBoxFocus {
576
+ border-color: #40a9ff;
577
+ }
578
+ .textInputContainer .switchItem {
579
+ margin-top: 20px;
580
+ display: flex;
581
+ justify-content: space-between;
582
+ }
583
+ .textInputContainer .notify {
584
+ font-size: 12px;
585
+ color: #cccccc;
586
+ }
481
587
 
482
588
  .tipsBar {
483
589
  display: flex;
484
- height: 100%; }
485
- .tipsBar :global .ant-popover.tool-hotkeys-popover .ant-popover-inner-content {
486
- max-height: 474px;
487
- overflow-y: auto; }
488
- .tipsBar .hotKeyIconGray,
489
- .tipsBar .helpIconGray {
490
- width: 15px;
491
- height: 15px;
492
- cursor: pointer;
493
- background-position: center;
494
- background-repeat: no-repeat;
495
- display: inline-block;
496
- vertical-align: middle; }
497
- .tipsBar .svg {
498
- width: 80px;
499
- height: 100%;
500
- color: #cccccc;
501
- display: flex;
502
- justify-content: center;
503
- align-items: center;
504
- font-size: 12px; }
505
- .tipsBar .svg:hover {
506
- color: #666fff;
507
- background-color: #e9e9e9; }
590
+ height: 100%;
591
+ }
592
+ .tipsBar :global .ant-popover.tool-hotkeys-popover .ant-popover-inner-content {
593
+ max-height: 474px;
594
+ overflow-y: auto;
595
+ }
596
+ .tipsBar .hotKeyIconGray,
597
+ .tipsBar .helpIconGray {
598
+ width: 15px;
599
+ height: 15px;
600
+ cursor: pointer;
601
+ background-position: center;
602
+ background-repeat: no-repeat;
603
+ display: inline-block;
604
+ vertical-align: middle;
605
+ }
606
+ .tipsBar .svg {
607
+ width: 80px;
608
+ height: 100%;
609
+ color: #cccccc;
610
+ display: flex;
611
+ justify-content: center;
612
+ align-items: center;
613
+ font-size: 12px;
614
+ }
615
+ .tipsBar .svg:hover {
616
+ color: #666fff;
617
+ background-color: #e9e9e9;
618
+ }
508
619
 
509
620
  .toolStyle {
510
621
  width: 100%;
511
622
  display: flex;
512
- flex-direction: column; }
513
- .toolStyle .styleSlider .title {
514
- min-width: 60px;
515
- margin-right: 10px;
516
- font-size: 12px;
517
- display: flex;
518
- align-items: center; }
519
- .toolStyle .styleSlider .title .icon {
520
- margin-right: 5px; }
521
- .toolStyle .styleSlider .slider {
522
- flex: 1; }
623
+ flex-direction: column;
624
+ }
625
+ .toolStyle .styleSlider .title {
626
+ min-width: 60px;
627
+ margin-right: 10px;
628
+ font-size: 12px;
629
+ display: flex;
630
+ align-items: center;
631
+ }
632
+ .toolStyle .styleSlider .title .icon {
633
+ margin-right: 5px;
634
+ }
635
+ .toolStyle .styleSlider .slider {
636
+ flex: 1;
637
+ }
523
638
 
524
639
  .generalOperation {
525
640
  display: flex;
@@ -532,21 +647,25 @@
532
647
  -moz-user-select: none;
533
648
  -webkit-user-select: none;
534
649
  -ms-user-select: none;
535
- user-select: none; }
536
- .generalOperation .item {
537
- text-align: center;
538
- flex: 1;
539
- box-sizing: border-box;
540
- width: 100%;
541
- height: 100%;
542
- display: flex;
543
- flex-direction: column;
544
- justify-content: center;
545
- cursor: pointer; }
546
- .generalOperation .icon {
547
- margin-bottom: 7px; }
548
- .generalOperation .toolName {
549
- font-size: 12px; }
650
+ user-select: none;
651
+ }
652
+ .generalOperation .item {
653
+ text-align: center;
654
+ flex: 1;
655
+ box-sizing: border-box;
656
+ width: 100%;
657
+ height: 100%;
658
+ display: flex;
659
+ flex-direction: column;
660
+ justify-content: center;
661
+ cursor: pointer;
662
+ }
663
+ .generalOperation .icon {
664
+ margin-bottom: 7px;
665
+ }
666
+ .generalOperation .toolName {
667
+ font-size: 12px;
668
+ }
550
669
 
551
670
  .tagOperationMenu .main {
552
671
  padding: 8px 8px;
@@ -554,11 +673,11 @@
554
673
  -moz-user-select: none;
555
674
  -webkit-user-select: none;
556
675
  -ms-user-select: none;
557
- user-select: none; }
558
-
676
+ user-select: none;
677
+ }
559
678
  .tagOperationMenu .main::-webkit-scrollbar {
560
- width: 0; }
561
-
679
+ width: 0;
680
+ }
562
681
  .tagOperationMenu .keyDownIcon {
563
682
  display: inline-block;
564
683
  text-align: center;
@@ -566,8 +685,8 @@
566
685
  width: 20px;
567
686
  height: 20px;
568
687
  border-radius: 2px;
569
- border: 1px solid #cccccc; }
570
-
688
+ border: 1px solid #cccccc;
689
+ }
571
690
  .tagOperationMenu .keyDownIconActive {
572
691
  display: inline-block;
573
692
  text-align: center;
@@ -577,181 +696,217 @@
577
696
  border-radius: 2px;
578
697
  border: 1px solid #cccccc;
579
698
  background: #6371ff;
580
- color: white; }
581
-
699
+ color: white;
700
+ }
582
701
  .tagOperationMenu .level {
583
- margin: 0px 0 0 -6px; }
584
- .tagOperationMenu .level .radioOption {
585
- width: 100%;
586
- margin-bottom: 10px;
587
- display: flex;
588
- padding: 4px 16px 4px 20px;
589
- cursor: pointer;
590
- justify-content: space-between; }
591
- .tagOperationMenu .level .radioOption .labelMouseClick {
592
- margin: 0 26px; }
593
- .tagOperationMenu .level .radioOption:hover {
594
- background: rgba(158, 158, 158, 0.18); }
595
- .tagOperationMenu .level .radioOption:active {
596
- color: #666fff;
597
- background: none; }
598
-
702
+ margin: 0px 0 0 -6px;
703
+ }
704
+ .tagOperationMenu .level .radioOption {
705
+ width: 100%;
706
+ margin-bottom: 10px;
707
+ display: flex;
708
+ padding: 4px 16px 4px 20px;
709
+ cursor: pointer;
710
+ justify-content: space-between;
711
+ }
712
+ .tagOperationMenu .level .radioOption .labelMouseClick {
713
+ margin: 0 26px;
714
+ }
715
+ .tagOperationMenu .level .radioOption:hover {
716
+ background: rgba(158, 158, 158, 0.18);
717
+ }
718
+ .tagOperationMenu .level .radioOption:active {
719
+ color: #666fff;
720
+ background: none;
721
+ }
599
722
  .tagOperationMenu .singleBar {
600
- padding: 0 3px 0 8px; }
601
-
723
+ padding: 0 3px 0 8px;
724
+ }
602
725
  .tagOperationMenu .ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
603
- padding-top: 4px; }
604
-
726
+ padding-top: 4px;
727
+ }
605
728
  .tagOperationMenu .ant-collapse-content > .ant-collapse-content-box {
606
- padding: 0; }
607
-
729
+ padding: 0;
730
+ }
608
731
  .tagOperationMenu .ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
609
- padding-right: 40px; }
610
-
732
+ padding-right: 40px;
733
+ }
611
734
  .tagOperationMenu .ant-collapse-borderless > .ant-collapse-item {
612
- border-bottom: 0px; }
735
+ border-bottom: 0px;
736
+ }
613
737
 
614
738
  .sensebee-checkbox-group .ant-checkbox-group {
615
739
  display: flex;
616
- flex-direction: column; }
617
- .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper {
618
- padding: 10px 5px 10px 12px;
619
- margin: 0;
620
- display: flex;
621
- flex: 1;
622
- flex-direction: row;
623
- align-content: center; }
624
- .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .ant-checkbox {
625
- align-self: center; }
626
- .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper:hover {
627
- background: #f3f4ff; }
628
- .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper > span:nth-child(2) {
629
- flex: 1;
630
- justify-content: space-between;
631
- display: flex;
632
- align-self: center;
633
- overflow: hidden; }
634
- .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-num {
635
- width: 20px;
636
- height: 20px;
637
- border: 1px solid #cccccc;
638
- opacity: 1;
639
- border-radius: 2px;
640
- text-align: center; }
641
- .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-label {
642
- flex: 1;
643
- overflow: hidden;
644
- text-overflow: ellipsis; }
740
+ flex-direction: column;
741
+ }
742
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper {
743
+ padding: 10px 5px 10px 12px;
744
+ margin: 0;
745
+ display: flex;
746
+ flex: 1;
747
+ flex-direction: row;
748
+ align-content: center;
749
+ }
750
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .ant-checkbox {
751
+ align-self: center;
752
+ }
753
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper:hover {
754
+ background: #f3f4ff;
755
+ }
756
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper > span:nth-child(2) {
757
+ flex: 1;
758
+ justify-content: space-between;
759
+ display: flex;
760
+ align-self: center;
761
+ overflow: hidden;
762
+ }
763
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-num {
764
+ width: 20px;
765
+ height: 20px;
766
+ border: 1px solid #cccccc;
767
+ opacity: 1;
768
+ border-radius: 2px;
769
+ text-align: center;
770
+ }
771
+ .sensebee-checkbox-group .ant-checkbox-group .ant-checkbox-wrapper .sensebee-checkbox-label {
772
+ flex: 1;
773
+ overflow: hidden;
774
+ text-overflow: ellipsis;
775
+ }
645
776
 
646
777
  ::-webkit-scrollbar {
647
778
  width: 8px;
648
- height: 8px; }
779
+ height: 8px;
780
+ }
649
781
 
650
782
  ::-webkit-scrollbar-thumb {
651
783
  width: 8px;
652
784
  height: 8px;
653
785
  background: #cccccc;
654
786
  opacity: 1;
655
- border-radius: 10px; }
787
+ border-radius: 10px;
788
+ }
656
789
 
657
790
  .textField {
658
791
  margin-bottom: 24px;
659
792
  position: relative;
660
- text-align: left; }
661
- .textField .label {
662
- margin-bottom: 8px;
663
- font-size: 12px;
664
- font-family: SourceHanSansCN-Medium; }
665
- .textField .label .required::before {
666
- display: inline-block;
667
- margin-right: 4px;
668
- color: #ff4d4f;
669
- font-size: 14px;
670
- font-family: SimSun, sans-serif;
671
- line-height: 1;
672
- content: '*'; }
793
+ text-align: left;
794
+ }
795
+ .textField .label {
796
+ margin-bottom: 8px;
797
+ font-size: 12px;
798
+ font-family: SourceHanSansCN-Medium;
799
+ }
800
+ .textField .label .required::before {
801
+ display: inline-block;
802
+ margin-right: 4px;
803
+ color: #ff4d4f;
804
+ font-size: 14px;
805
+ font-family: SimSun, sans-serif;
806
+ line-height: 1;
807
+ content: "*";
808
+ }
673
809
 
674
810
  .textInputContainer {
675
811
  padding: 20px;
676
812
  height: 100%;
677
- overflow-y: scroll; }
813
+ overflow-y: scroll;
814
+ }
678
815
 
679
816
  .textField {
680
817
  margin-bottom: 24px;
681
818
  position: relative;
682
- text-align: left; }
683
- .textField .label {
684
- margin-bottom: 8px;
685
- font-size: 12px;
686
- font-family: SourceHanSansCN-Medium; }
687
- .textField .label .required::before {
688
- display: inline-block;
689
- margin-right: 4px;
690
- color: #ff4d4f;
691
- font-size: 14px;
692
- font-family: SimSun, sans-serif;
693
- line-height: 1;
694
- content: '*'; }
819
+ text-align: left;
820
+ }
821
+ .textField .label {
822
+ margin-bottom: 8px;
823
+ font-size: 12px;
824
+ font-family: SourceHanSansCN-Medium;
825
+ }
826
+ .textField .label .required::before {
827
+ display: inline-block;
828
+ margin-right: 4px;
829
+ color: #ff4d4f;
830
+ font-size: 14px;
831
+ font-family: SimSun, sans-serif;
832
+ line-height: 1;
833
+ content: "*";
834
+ }
695
835
 
696
836
  .textToolOperationMenu {
697
837
  padding: 20px;
698
838
  height: 100%;
699
- overflow-y: scroll; }
839
+ overflow-y: scroll;
840
+ }
700
841
 
701
842
  .textareaContainer {
702
843
  position: relative;
703
844
  padding: 0;
704
- padding-bottom: 36px; }
705
- .textareaContainer .textAreaFooter {
706
- position: absolute;
707
- width: 100%;
708
- bottom: 0;
709
- font-weight: 400;
710
- opacity: 1;
711
- font-size: 12px;
712
- color: #cccccc;
713
- display: flex;
714
- padding: 0 10px; }
715
- .textareaContainer .textAreaFooter > span {
716
- line-height: 16px; }
717
- .textareaContainer .textAreaFooter .warning {
718
- color: #ff0000; }
719
- .textareaContainer .textAreaFooter .hotkeyTip {
720
- font-size: 12px;
721
- opacity: 0;
722
- text-align: left;
723
- display: flex;
724
- flex-direction: column;
725
- transition: opacity 0.3s ease-in-out; }
726
- .textareaContainer .textAreaFooter .wordCount {
727
- flex: 1;
728
- text-align: right;
729
- align-self: flex-end; }
730
- .textareaContainer.focus {
731
- border-color: #40a9ff; }
732
- .textareaContainer.focus .textAreaFooter .hotkeyTip {
733
- opacity: 1; }
734
- .textareaContainer.invalid {
735
- border-color: #ff4d4f; }
736
- .textareaContainer.invalid.focus {
737
- box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2); }
738
- .textareaContainer .warning {
739
- outline-color: #ff0000;
740
- border-color: #ff0000; }
741
- .textareaContainer .inputCount {
742
- position: absolute;
743
- bottom: 0;
744
- right: 5px;
745
- font-weight: 400;
746
- line-height: 20px;
747
- opacity: 1;
748
- font-size: 12px;
749
- color: #cccccc; }
750
- .textareaContainer .inputCount .warning {
751
- color: #ff0000; }
752
- .textareaContainer .notify {
753
- font-size: 12px;
754
- color: #cccccc; }
845
+ padding-bottom: 36px;
846
+ }
847
+ .textareaContainer .textAreaFooter {
848
+ position: absolute;
849
+ width: 100%;
850
+ bottom: 0;
851
+ font-weight: 400;
852
+ opacity: 1;
853
+ font-size: 12px;
854
+ color: #cccccc;
855
+ display: flex;
856
+ padding: 0 10px;
857
+ }
858
+ .textareaContainer .textAreaFooter > span {
859
+ line-height: 16px;
860
+ }
861
+ .textareaContainer .textAreaFooter .warning {
862
+ color: #ff0000;
863
+ }
864
+ .textareaContainer .textAreaFooter .hotkeyTip {
865
+ font-size: 12px;
866
+ opacity: 0;
867
+ text-align: left;
868
+ display: flex;
869
+ flex-direction: column;
870
+ transition: opacity 0.3s ease-in-out;
871
+ }
872
+ .textareaContainer .textAreaFooter .wordCount {
873
+ flex: 1;
874
+ text-align: right;
875
+ align-self: flex-end;
876
+ }
877
+ .textareaContainer.focus {
878
+ border-color: #40a9ff;
879
+ }
880
+ .textareaContainer.focus .textAreaFooter .hotkeyTip {
881
+ opacity: 1;
882
+ }
883
+ .textareaContainer.invalid {
884
+ border-color: #ff4d4f;
885
+ }
886
+ .textareaContainer.invalid.focus {
887
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
888
+ }
889
+ .textareaContainer .warning {
890
+ outline-color: #ff0000;
891
+ border-color: #ff0000;
892
+ }
893
+ .textareaContainer .inputCount {
894
+ position: absolute;
895
+ bottom: 0;
896
+ right: 5px;
897
+ font-weight: 400;
898
+ line-height: 20px;
899
+ opacity: 1;
900
+ font-size: 12px;
901
+ color: #cccccc;
902
+ }
903
+ .textareaContainer .inputCount .warning {
904
+ color: #ff0000;
905
+ }
906
+ .textareaContainer .notify {
907
+ font-size: 12px;
908
+ color: #cccccc;
909
+ }
755
910
 
756
911
  .clearText {
757
912
  width: 13px;
@@ -762,74 +917,218 @@
762
917
  background-repeat: no-repeat;
763
918
  background-position: center;
764
919
  background-image: url("./assets/cssIcon/annotation/icon_clearSmall.svg");
765
- cursor: pointer; }
766
- .clearText:not(.disabled):hover {
767
- background-image: url("./assets/cssIcon/annotation/icon_clearSmall_a.svg"); }
768
- .clearText.disabled {
769
- cursor: not-allowed; }
920
+ cursor: pointer;
921
+ }
922
+ .clearText:not(.disabled):hover {
923
+ background-image: url("./assets/cssIcon/annotation/icon_clearSmall_a.svg");
924
+ }
925
+ .clearText.disabled {
926
+ cursor: not-allowed;
927
+ }
770
928
 
771
929
  .switchItem {
772
930
  margin-top: 20px;
773
931
  display: flex;
774
932
  justify-content: space-between;
775
933
  font-size: 12px;
776
- font-family: SourceHanSansCN-Medium; }
777
- .switchItem .notify {
778
- font-size: 12px;
779
- color: #cccccc; }
934
+ font-family: SourceHanSansCN-Medium;
935
+ }
936
+ .switchItem .notify {
937
+ font-size: 12px;
938
+ color: #cccccc;
939
+ }
780
940
 
781
941
  .textarea-outline {
782
942
  border: 1px solid #d9d9d9;
783
- border-radius: 2px; }
784
- .textarea-outline.disabled {
785
- color: rgba(0, 0, 0, 0.25);
786
- background-color: #f5f5f5;
787
- cursor: not-allowed; }
943
+ border-radius: 2px;
944
+ }
945
+ .textarea-outline.disabled {
946
+ color: rgba(0, 0, 0, 0.25);
947
+ background-color: #f5f5f5;
948
+ cursor: not-allowed;
949
+ }
788
950
 
789
951
  .bee-component__iconWithText {
790
952
  display: flex;
791
953
  flex-direction: column;
792
954
  justify-content: space-between;
793
955
  align-items: center;
794
- height: auto; }
795
- .bee-component__iconWithText .iconGroup {
796
- color: #666666;
797
- cursor: pointer;
798
- display: flex;
799
- align-items: center;
800
- -moz-user-select: none;
801
- -webkit-user-select: none;
802
- -ms-user-select: none;
803
- user-select: none;
804
- margin: 0px 21px 4px; }
805
- .bee-component__iconWithText .iconGroup .icon {
806
- font-size: 18px; }
807
- .bee-component__iconWithText .name {
808
- font-size: 12px;
809
- color: #999999; }
810
- .bee-component__iconWithText:hover .bee-component__iconWithText__iconGroup {
811
- color: #666fff; }
812
- .bee-component__iconWithText:hover .bee-component__iconWithText__name {
813
- color: #666fff; }
814
-
956
+ height: auto;
957
+ }
958
+ .bee-component__iconWithText .iconGroup {
959
+ color: #666666;
960
+ cursor: pointer;
961
+ display: flex;
962
+ align-items: center;
963
+ -moz-user-select: none;
964
+ -webkit-user-select: none;
965
+ -ms-user-select: none;
966
+ user-select: none;
967
+ margin: 0px 21px 4px;
968
+ }
969
+ .bee-component__iconWithText .iconGroup .icon {
970
+ font-size: 18px;
971
+ }
972
+ .bee-component__iconWithText .name {
973
+ font-size: 12px;
974
+ color: #999999;
975
+ }
976
+ .bee-component__iconWithText:hover .bee-component__iconWithText__iconGroup {
977
+ color: #666fff;
978
+ }
979
+ .bee-component__iconWithText:hover .bee-component__iconWithText__name {
980
+ color: #666fff;
981
+ }
815
982
  .bee-component__annotationStepPopover {
816
983
  padding: 12px 30px;
817
- background: white; }
818
- .bee-component__annotationStepPopover .step {
819
- margin-bottom: 24px; }
820
- .bee-component__annotationStepPopover .step:last-child {
821
- margin-bottom: 0px; }
822
- .bee-component__annotationStepPopover .step:hover {
823
- color: #666fff;
824
- cursor: pointer; }
825
- .bee-component__annotationStepPopover .step .name {
826
- margin-bottom: 6px;
827
- font-size: 14px; }
828
- .bee-component__annotationStepPopover .step .progress {
829
- font-size: 12px; }
830
- .bee-component__annotationStepPopover .step .highlight {
831
- color: #666fff; }
832
- .bee-component__annotationStepPopover .isNotStart {
833
- color: #cccccc; }
834
- .bee-component__annotationStepPopover .isNotStart:hover {
835
- color: #cccccc; }
984
+ background: white;
985
+ }
986
+ .bee-component__annotationStepPopover .step {
987
+ margin-bottom: 24px;
988
+ }
989
+ .bee-component__annotationStepPopover .step:last-child {
990
+ margin-bottom: 0px;
991
+ }
992
+ .bee-component__annotationStepPopover .step:hover {
993
+ color: #666fff;
994
+ cursor: pointer;
995
+ }
996
+ .bee-component__annotationStepPopover .step .name {
997
+ margin-bottom: 6px;
998
+ font-size: 14px;
999
+ }
1000
+ .bee-component__annotationStepPopover .step .progress {
1001
+ font-size: 12px;
1002
+ }
1003
+ .bee-component__annotationStepPopover .step .highlight {
1004
+ color: #666fff;
1005
+ }
1006
+ .bee-component__annotationStepPopover .isNotStart {
1007
+ color: #cccccc;
1008
+ }
1009
+ .bee-component__annotationStepPopover .isNotStart:hover {
1010
+ color: #cccccc;
1011
+ }
1012
+
1013
+ /** VideoPlayer样式 start */
1014
+ .bee-video-wrapper {
1015
+ width: 100%;
1016
+ height: 100%;
1017
+ display: flex;
1018
+ flex-direction: column;
1019
+ background-color: black;
1020
+ overflow: hidden;
1021
+ }
1022
+ .bee-video-wrapper .bee-video-container {
1023
+ flex: 1;
1024
+ overflow: hidden;
1025
+ position: relative;
1026
+ }
1027
+
1028
+ .bee-video-progress {
1029
+ position: absolute;
1030
+ width: 100%;
1031
+ height: 10px;
1032
+ top: -3px;
1033
+ align-items: center;
1034
+ display: flex;
1035
+ cursor: pointer;
1036
+ }
1037
+ .bee-video-progress:hover .bee-video-slider-bar {
1038
+ height: 15px;
1039
+ width: 15px;
1040
+ }
1041
+ .bee-video-progress .bee-video-slider {
1042
+ background-color: rgba(115, 133, 159, 0.5);
1043
+ height: 4px;
1044
+ width: 100%;
1045
+ position: relative;
1046
+ }
1047
+ .bee-video-progress .bee-video-slider__loaded, .bee-video-progress .bee-video-slider__played, .bee-video-progress .bee-video-slider__holder {
1048
+ position: absolute;
1049
+ left: 0;
1050
+ height: 100%;
1051
+ }
1052
+ .bee-video-progress .bee-video-slider__loaded {
1053
+ background-color: #73859f;
1054
+ }
1055
+ .bee-video-progress .bee-video-slider__played {
1056
+ background-color: #fff;
1057
+ }
1058
+ .bee-video-progress .bee-video-slider-bar {
1059
+ cursor: pointer;
1060
+ content: "";
1061
+ height: 9px;
1062
+ width: 9px;
1063
+ background-color: #fff;
1064
+ display: inline-block;
1065
+ border-radius: 50%;
1066
+ position: absolute;
1067
+ top: 50%;
1068
+ transform: translate(-50%, -50%);
1069
+ left: 0;
1070
+ }
1071
+
1072
+ .bee-video-controller__wrapper {
1073
+ position: relative;
1074
+ }
1075
+
1076
+ .bee-video-controller {
1077
+ height: 80px;
1078
+ background-color: #222;
1079
+ color: white;
1080
+ display: flex;
1081
+ align-items: center;
1082
+ padding: 8px 16px;
1083
+ }
1084
+ .bee-video-controller .anticon {
1085
+ cursor: pointer;
1086
+ }
1087
+ .bee-video-controller__holder {
1088
+ flex: 1;
1089
+ }
1090
+ .bee-video-controller__playButton {
1091
+ font-size: 32px;
1092
+ }
1093
+ .bee-video-controller__time {
1094
+ font-size: 16px;
1095
+ }
1096
+ .bee-video-controller__speed {
1097
+ display: flex;
1098
+ align-items: center;
1099
+ }
1100
+ .bee-video-controller__speedNum {
1101
+ display: inline-block;
1102
+ width: 32px;
1103
+ text-align: center;
1104
+ }
1105
+ .bee-video-controller__speedButton {
1106
+ display: inline-flex;
1107
+ flex-direction: column;
1108
+ justify-content: space-between;
1109
+ }
1110
+ .bee-video-controller__pagination {
1111
+ display: flex;
1112
+ align-items: center;
1113
+ }
1114
+ .bee-video-controller__pagination .anticon {
1115
+ font-size: 20px;
1116
+ }
1117
+ .bee-video-controller__pageAll {
1118
+ margin: 0 5px;
1119
+ }
1120
+ .bee-video-controller__pagination, .bee-video-controller__time, .bee-video-controller__playButton {
1121
+ margin-right: 16px;
1122
+ }
1123
+ .bee-video-controller__hotkey {
1124
+ display: inline-flex;
1125
+ align-items: center;
1126
+ cursor: pointer;
1127
+ }
1128
+ .bee-video-controller__hotkey img {
1129
+ margin-right: 4px;
1130
+ }
1131
+
1132
+ /** VideoPlayer样式 end */
1133
+
1134
+ /*# sourceMappingURL=index.css.map */