@x-edu/live-player 0.0.19 → 0.0.21
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/.browserslistrc +10 -10
- package/.eslintignore +8 -8
- package/.eslintrc.js +26 -26
- package/.gem-mine +11 -11
- package/.postcssrc.js +6 -6
- package/README.md +145 -145
- package/babel.config.js +33 -33
- package/dist/XEduLivePlayer.common.js +12161 -1154
- package/dist/XEduLivePlayerPre.common.js +12369 -1358
- package/doc/develop.md +23 -23
- package/gem-mine.config.js +86 -86
- package/jest.config.js +9 -9
- package/jsconfig.json +15 -15
- package/mock/helper.js +8 -8
- package/mock/index.js +34 -34
- package/package.json +99 -99
- package/public/3rd/ali-player/alipayercomponents-1.0.8.min.js +26 -26
- package/public/3rd/ali-player/aliplayer-hls-min.js +27 -27
- package/public/3rd/ali-player/aliplayer-min.js +1 -1
- package/public/3rd/im-web-push/index.umd.js +14 -14
- package/public/JsBridge.js +1602 -1602
- package/public/fish/editor/themes/default/css/ueditor.css +1905 -1905
- package/public/fish/editor/third-party/codemirror/codemirror.css +104 -104
- package/public/fish/editor/third-party/codemirror/codemirror.js +3581 -3581
- package/public/fish/editor/third-party/zeroclipboard/ZeroClipboard.js +1255 -1255
- package/public/fish/editor/ueditor.all.min.js +16 -16
- package/public/fish/editor/ueditor.config.js +467 -467
- package/public/fish/icon/umd-4.1.2.js +1 -1
- package/public/fish/video/videoplayer.min.css +6 -6
- package/public/fish/video/videoplayer.min.js +31 -31
- package/public/fish/video/zh-CN.js +82 -82
- package/public/icon/demo.css +539 -539
- package/public/icon/demo_index.html +2189 -2189
- package/public/icon/iconfont.css +363 -363
- package/public/icon/iconfont.json +618 -618
- package/public/index.html +50 -50
- package/script/image/readme.md +77 -77
- package/script/postcss.js +48 -48
- package/src/App.jsx +24 -24
- package/src/asset/img/course/playing.svg +21 -21
- package/src/asset/img/icon-course-white.svg +3 -3
- package/src/asset/img/icon-course.svg +3 -3
- package/src/asset/img/icon-eye-white.svg +4 -4
- package/src/asset/img/icon-eye.svg +4 -4
- package/src/asset/img/icon-school-white.svg +3 -3
- package/src/asset/img/icon-school.svg +3 -3
- package/src/asset/img/loading.svg +52 -52
- package/src/asset/img/video-play.svg +6 -6
- package/src/asset/style/background.less +19 -19
- package/src/asset/style/banner.less +36 -36
- package/src/asset/style/base.less +74 -74
- package/src/asset/style/index.less +114 -114
- package/src/asset/style/reset-theme.less +141 -141
- package/src/asset/style/theme/index.less +55 -55
- package/src/asset/style/theme/party/global.less +20 -20
- package/src/asset/style/theme/party/override.less +57 -57
- package/src/asset/style/theme/test/global.less +18 -18
- package/src/asset/style/theme/test/override.less +45 -45
- package/src/asset/style/variable.less +12 -12
- package/src/component/AliPlayer/index.jsx +49 -49
- package/src/component/Avatar/index.jsx +50 -50
- package/src/component/Empty/index.jsx +34 -34
- package/src/component/Empty/index.module.less +37 -37
- package/src/component/IMChatroom/component/status/403.jsx +13 -13
- package/src/component/IMChatroom/component/status/404.jsx +13 -13
- package/src/component/IMChatroom/component/status/Error.jsx +23 -23
- package/src/component/IMChatroom/component/status/Loading.jsx +5 -5
- package/src/component/IMChatroom/config/app/config.js +118 -118
- package/src/component/IMChatroom/config/app/index.js +60 -60
- package/src/component/IMChatroom/config/env.js +5 -5
- package/src/component/IMChatroom/config/index.js +3 -3
- package/src/component/IMChatroom/config/request/config/base.js +124 -124
- package/src/component/IMChatroom/config/request/config/chatroom.js +26 -26
- package/src/component/IMChatroom/config/request/config/imCoreApi.js +21 -21
- package/src/component/IMChatroom/config/request/index.js +21 -21
- package/src/component/IMChatroom/config/request/proxy.js +39 -39
- package/src/component/IMChatroom/config/url.js +7 -7
- package/src/component/IMChatroom/constants/errorCode.js +9 -9
- package/src/component/IMChatroom/constants/index.js +84 -84
- package/src/component/IMChatroom/constants/origin.js +27 -27
- package/src/component/IMChatroom/context/chatroom.js +154 -154
- package/src/component/IMChatroom/context/connect.js +28 -28
- package/src/component/IMChatroom/i18n/en/index.json +73 -73
- package/src/component/IMChatroom/i18n/index.jsx +14 -14
- package/src/component/IMChatroom/i18n/language.js +9 -9
- package/src/component/IMChatroom/i18n/zh-CN/index.json +73 -73
- package/src/component/IMChatroom/index.jsx +49 -49
- package/src/component/IMChatroom/page/chat/index.jsx +27 -27
- package/src/component/IMChatroom/page/chat/messageEditor/index.jsx +375 -375
- package/src/component/IMChatroom/page/chat/messageList/index.jsx +354 -354
- package/src/component/IMChatroom/page/chat/stickedMessage/index.jsx +59 -59
- package/src/component/IMChatroom/page/chat/stickedMessage/style/index.module.less +7 -7
- package/src/component/IMChatroom/page/chat/style/index.module.less +51 -51
- package/src/component/IMChatroom/page/home/connect/index.jsx +188 -188
- package/src/component/IMChatroom/page/home/connect/status.jsx +124 -124
- package/src/component/IMChatroom/page/home/context/cmd.jsx +37 -37
- package/src/component/IMChatroom/page/home/context/index.jsx +67 -67
- package/src/component/IMChatroom/page/home/index.jsx +164 -164
- package/src/component/IMChatroom/page/home/notice/index.jsx +123 -123
- package/src/component/IMChatroom/page/home/notice/style/index.module.less +49 -49
- package/src/component/IMChatroom/page/home/style/index.module.less +110 -110
- package/src/component/IMChatroom/page/member/index.jsx +15 -15
- package/src/component/IMChatroom/page/member/memberCount/index.jsx +44 -44
- package/src/component/IMChatroom/page/member/memberList/index.jsx +121 -121
- package/src/component/IMChatroom/page/member/style/index.module.less +2 -2
- package/src/component/IMChatroom/sdk/bridge.js +39 -39
- package/src/component/IMChatroom/sdk/cs/constants.js +20 -20
- package/src/component/IMChatroom/sdk/cs/index.js +101 -101
- package/src/component/IMChatroom/sdk/imChatroom.js +15 -15
- package/src/component/IMChatroom/sdk/imcore/constants.js +128 -128
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomDestroyed.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomInfoGetFail.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomKickedByAdmin.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomKickedBySelf.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomLoginFail.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomLoginSuccess.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomMemberLogin.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/chatroomMemberLogout.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/connectionConnected.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/connectionConnecting.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/connectionDisconnect.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/emitters/index.js +57 -57
- package/src/component/IMChatroom/sdk/imcore/emitters/messageReceive.js +36 -36
- package/src/component/IMChatroom/sdk/imcore/index.js +178 -178
- package/src/component/IMChatroom/sdk/imcore/interceptors/request.js +7 -7
- package/src/component/IMChatroom/sdk/imcore/interceptors/response.js +5 -5
- package/src/component/IMChatroom/sdk/imcore/plugins/getAuth.js +64 -64
- package/src/component/IMChatroom/sdk/imcore/plugins/getConversationId.js +20 -20
- package/src/component/IMChatroom/sdk/imcore/plugins/getExtInfo.js +10 -10
- package/src/component/IMChatroom/sdk/imcore/plugins/getLoginInfo.js +48 -48
- package/src/component/IMChatroom/sdk/imcore/plugins/getPlatformType.js +12 -12
- package/src/component/IMChatroom/sdk/imcore/plugins/index.js +22 -22
- package/src/component/IMChatroom/sdk/imcore/util/format.js +177 -177
- package/src/component/IMChatroom/sdk/imcore/util/parser.js +35 -35
- package/src/component/IMChatroom/sdk/oms.js +18 -18
- package/src/component/IMChatroom/sdk/uc.js +3 -3
- package/src/component/IMChatroom/subscription/channel/app.js +5 -5
- package/src/component/IMChatroom/subscription/channel/ctl.js +22 -22
- package/src/component/IMChatroom/subscription/channel/member.js +40 -40
- package/src/component/IMChatroom/subscription/channel/message.js +13 -13
- package/src/component/IMChatroom/subscription/channel/ntf.js +86 -86
- package/src/component/IMChatroom/subscription/channel/tel.js +5 -5
- package/src/component/IMChatroom/subscription/channel/websocket.js +5 -5
- package/src/component/IMChatroom/subscription/event.js +37 -37
- package/src/component/IMChatroom/subscription/index.js +19 -19
- package/src/component/IMChatroom/util/account.js +8 -8
- package/src/component/IMChatroom/util/chatroom.js +255 -255
- package/src/component/IMChatroom/util/jsonBigInt.js +5 -5
- package/src/component/IMChatroom/util/location.js +12 -12
- package/src/component/Icon/index.jsx +16 -16
- package/src/component/Icon/index.module.less +2 -2
- package/src/component/Pagination/LocalPagination.jsx +27 -27
- package/src/component/Pagination/RemotePagination.jsx +32 -32
- package/src/component/Pagination/index.jsx +31 -31
- package/src/component/Pagination/index.module.less +110 -110
- package/src/component/PlayerTip/index.jsx +34 -34
- package/src/component/VideoBase/index.jsx +242 -242
- package/src/component/VideoBase/style.less +65 -65
- package/src/component/VideoBase/utils.js +81 -81
- package/src/component/mixin.less +9 -9
- package/src/component/status/403.jsx +15 -15
- package/src/component/status/404/index.jsx +73 -73
- package/src/component/status/404/index.module.less +36 -36
- package/src/component/status/Error/error.module.less +13 -13
- package/src/component/status/Error/index.jsx +47 -47
- package/src/component/status/Loading/img/loading.svg +52 -52
- package/src/component/status/Loading/index.jsx +31 -31
- package/src/component/status/Loading/index.less +56 -56
- package/src/component/status/None/index.jsx +20 -20
- package/src/component/status/None/index.module.less +35 -35
- package/src/component/status/Status/index.jsx +26 -26
- package/src/component/status/Status/index.module.less +8 -8
- package/src/config/constant/commonUrl.js +2 -2
- package/src/config/constant/user.js +6 -6
- package/src/config/context/site-config.js +48 -48
- package/src/config/env/index.js +5 -5
- package/src/config/env/local/index.js +13 -13
- package/src/config/env/ncet-xedu/api.js +175 -175
- package/src/config/env/ncet-xedu/app.js +12 -12
- package/src/config/env/ncet-xedu/cs.js +8 -8
- package/src/config/env/ncet-xedu/index.js +14 -14
- package/src/config/env/ncet-xedu/push.js +5 -5
- package/src/config/env/preproduction/api.js +144 -144
- package/src/config/env/preproduction/app.js +12 -12
- package/src/config/env/preproduction/cs.js +8 -8
- package/src/config/env/preproduction/index.js +14 -14
- package/src/config/env/preproduction/push.js +5 -5
- package/src/config/env/product/api.js +113 -113
- package/src/config/env/product/app.js +12 -12
- package/src/config/env/product/cs.js +5 -5
- package/src/config/env/product/index.js +14 -14
- package/src/config/env/product/push.js +5 -5
- package/src/config/live.js +80 -80
- package/src/config/publicLive.js +53 -53
- package/src/config/request/assessments.js +24 -24
- package/src/config/request/config-center.js +8 -8
- package/src/config/request/helper.js +166 -166
- package/src/config/request/im-broadcasts.js +12 -12
- package/src/config/request/live-activity-gateway.js +8 -8
- package/src/config/request/live-activity.js +13 -13
- package/src/config/request/raw.js +6 -6
- package/src/config/request/x-cloud-web.js +13 -13
- package/src/config/request/x-proxy.js +34 -34
- package/src/demo/Detail.jsx +11 -11
- package/src/demo/List.jsx +64 -64
- package/src/demo/index.jsx +17 -17
- package/src/detail/LineSwitch/index.jsx +71 -71
- package/src/detail/LiveCountDown/index.jsx +44 -44
- package/src/detail/LiveCountDown/index.module.less +31 -31
- package/src/detail/LiveOnlineCount/img/icon.svg +15 -15
- package/src/detail/LiveOnlineCount/index.jsx +68 -68
- package/src/detail/LiveOnlineCount/index.module.less +34 -34
- package/src/detail/LiveOnlineCount/util.js +74 -74
- package/src/detail/LiveStatus/AnchorOnTheWay.jsx +88 -88
- package/src/detail/LiveStatus/index.jsx +202 -202
- package/src/detail/LiveStatus/index.module.less +192 -192
- package/src/detail/LiveVideo/config.js +37 -37
- package/src/detail/LiveVideo/index.jsx +188 -188
- package/src/detail/LiveVideo/index.module.less +41 -41
- package/src/detail/NotLoginChatroom/index.jsx +37 -37
- package/src/detail/NotLoginChatroom/index.module.less +46 -46
- package/src/detail/RecordVideo/index.jsx +150 -150
- package/src/detail/RecordVideo/index.module.less +31 -31
- package/src/detail/ReplayVideo/index.jsx +93 -93
- package/src/detail/ReplayVideo/index.module.less +65 -65
- package/src/detail/const.js +20 -20
- package/src/detail/hook/usePullSource.js +82 -82
- package/src/detail/hook/usePullState.js +51 -51
- package/src/detail/index.jsx +482 -482
- package/src/detail/index.module.less +188 -188
- package/src/hook/useAsync.js +84 -84
- package/src/hook/useGoToPage.js +83 -83
- package/src/hook/useInterval.js +28 -28
- package/src/hook/useIsMounted.js +17 -17
- package/src/hook/useModuleByRole.js +53 -53
- package/src/hook/usePageScrollable.js +52 -52
- package/src/hook/usePortal.js +83 -83
- package/src/hook/useScrollRestore/index.js +32 -32
- package/src/hook/useScrollRestore/scrollContext.js +20 -20
- package/src/hook/useTrackRef.js +11 -11
- package/src/hook/useWindowSize.js +28 -28
- package/src/hook/useZoom.js +47 -47
- package/src/index.js +10 -10
- package/src/lib/getLiveOnlineCount.js +10 -10
- package/src/lib/getServiceConfig.js +102 -102
- package/src/list/Empty/index.jsx +20 -20
- package/src/list/Empty/index.module.less +23 -23
- package/src/list/ListItem/Action/index.jsx +98 -98
- package/src/list/ListItem/Action/index.module.less +21 -21
- package/src/list/ListItem/img/dianzan.svg +4 -0
- package/src/list/ListItem/img/play.svg +15 -15
- package/src/list/ListItem/img/yiguankan.svg +3 -0
- package/src/list/ListItem/index.jsx +24 -1
- package/src/list/ListItem/index.module.less +146 -123
- package/src/list/index.jsx +80 -0
- package/src/list/index.module.less +35 -35
- package/src/service/common.js +73 -73
- package/src/service/content-mgr.js +73 -73
- package/src/service/im-group.js +12 -12
- package/src/service/im.js +7 -7
- package/src/service/imBroadcasts.js +33 -33
- package/src/service/like.js +134 -134
- package/src/service/manageApi.js +7 -7
- package/src/service/managePortal.js +6 -6
- package/src/service/myStudyRecord.js +93 -93
- package/src/service/navigation.js +47 -47
- package/src/service/ndMeeting.js +10 -10
- package/src/service/ndr.js +122 -122
- package/src/service/news.js +93 -93
- package/src/service/personalCenter.js +270 -270
- package/src/service/qualityCourse.js +31 -31
- package/src/service/recommend.js +81 -81
- package/src/service/school.js +323 -323
- package/src/service/search.js +170 -170
- package/src/service/site-config.js +7 -7
- package/src/service/socialCensor.js +45 -45
- package/src/service/specialEdu.js +31 -31
- package/src/service/suggestion.js +85 -85
- package/src/service/syncClassroom.js +321 -321
- package/src/service/tCourse.js +204 -204
- package/src/service/tchTraining.js +37 -37
- package/src/service/uc.js +45 -45
- package/src/util/app.js +1 -1
- package/src/util/array.js +3 -3
- package/src/util/auth/func.js +57 -57
- package/src/util/date.js +53 -53
- package/src/util/env.js +9 -9
- package/src/util/getTimestamp.js +10 -10
- package/src/util/hof.js +105 -105
- package/src/util/live/index.js +42 -42
- package/src/util/liveCountUtil.js +52 -0
- package/src/util/netUrl.js +35 -35
- package/src/util/object.js +13 -13
- package/src/util/push/index.js +58 -58
- package/src/util/request.js +227 -227
- package/src/util/type.js +17 -17
- package/src/util/url.js +203 -203
- package/src/util/video.js +26 -26
- package/test/setup.js +21 -21
- package/test/unit/component/header/logo.spec.jsx +8 -8
- package/test/unit/helper.jsx +25 -25
- package/test/unit/util/date.spec.js +40 -40
|
@@ -1,1906 +1,1906 @@
|
|
|
1
|
-
/*基础UI构建
|
|
2
|
-
*/
|
|
3
|
-
/* common layer */
|
|
4
|
-
.edui-default .edui-box {
|
|
5
|
-
border: none;
|
|
6
|
-
padding: 0;
|
|
7
|
-
margin: 0;
|
|
8
|
-
overflow: hidden;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.edui-default a.edui-box {
|
|
12
|
-
display: block;
|
|
13
|
-
text-decoration: none;
|
|
14
|
-
color: black;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.edui-default a.edui-box:hover {
|
|
18
|
-
text-decoration: none;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.edui-default a.edui-box:active {
|
|
22
|
-
text-decoration: none;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.edui-default table.edui-box {
|
|
26
|
-
border-collapse: collapse;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.edui-default ul.edui-box {
|
|
30
|
-
list-style-type: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
div.edui-box {
|
|
34
|
-
position: relative;
|
|
35
|
-
display: -moz-inline-box !important;
|
|
36
|
-
display: inline-block !important;
|
|
37
|
-
vertical-align: top;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.edui-default .edui-clearfix {
|
|
41
|
-
zoom: 1
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.edui-default .edui-clearfix:after {
|
|
45
|
-
content: '\20';
|
|
46
|
-
display: block;
|
|
47
|
-
clear: both;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
* html div.edui-box {
|
|
51
|
-
display: inline !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
*:first-child+html div.edui-box {
|
|
55
|
-
display: inline !important;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
/* control layout */
|
|
59
|
-
.edui-default .edui-button-body, .edui-splitbutton-body, .edui-menubutton-body, .edui-combox-body {
|
|
60
|
-
position: relative;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.edui-default .edui-popup {
|
|
64
|
-
position: absolute;
|
|
65
|
-
-webkit-user-select: none;
|
|
66
|
-
-moz-user-select: none;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.edui-default .edui-popup .edui-shadow {
|
|
70
|
-
position: absolute;
|
|
71
|
-
z-index: -1;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.edui-default .edui-popup .edui-bordereraser {
|
|
75
|
-
position: absolute;
|
|
76
|
-
overflow: hidden;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.edui-default .edui-tablepicker .edui-canvas {
|
|
80
|
-
position: relative;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.edui-default .edui-tablepicker .edui-canvas .edui-overlay {
|
|
84
|
-
position: absolute;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.edui-default .edui-dialog-modalmask, .edui-dialog-dragmask {
|
|
88
|
-
position: absolute;
|
|
89
|
-
left: 0;
|
|
90
|
-
top: 0;
|
|
91
|
-
width: 100%;
|
|
92
|
-
height: 100%;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.edui-default .edui-toolbar {
|
|
96
|
-
position: relative;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
/*
|
|
100
|
-
* default theme
|
|
101
|
-
*/
|
|
102
|
-
.edui-default .edui-label {
|
|
103
|
-
cursor: default;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.edui-default span.edui-clickable {
|
|
107
|
-
color: blue;
|
|
108
|
-
cursor: pointer;
|
|
109
|
-
text-decoration: underline;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.edui-default span.edui-unclickable {
|
|
113
|
-
color: gray;
|
|
114
|
-
cursor: default;
|
|
115
|
-
}
|
|
116
|
-
/* 工具栏 */
|
|
117
|
-
.edui-default .edui-toolbar {
|
|
118
|
-
cursor: default;
|
|
119
|
-
-webkit-user-select: none;
|
|
120
|
-
-moz-user-select: none;
|
|
121
|
-
padding: 1px;
|
|
122
|
-
overflow: hidden; /*全屏下单独一行不占位*/
|
|
123
|
-
zoom: 1;
|
|
124
|
-
width:auto;
|
|
125
|
-
height:auto;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.edui-default .edui-toolbar .edui-button,
|
|
129
|
-
.edui-default .edui-toolbar .edui-splitbutton,
|
|
130
|
-
.edui-default .edui-toolbar .edui-menubutton,
|
|
131
|
-
.edui-default .edui-toolbar .edui-combox {
|
|
132
|
-
margin: 1px;
|
|
133
|
-
}
|
|
134
|
-
/*UI工具栏、编辑区域、底部*/
|
|
135
|
-
.edui-default .edui-editor {
|
|
136
|
-
border: 1px solid #d4d4d4;
|
|
137
|
-
background-color: white;
|
|
138
|
-
position: relative;
|
|
139
|
-
overflow: visible;
|
|
140
|
-
-webkit-border-radius: 4px;
|
|
141
|
-
-moz-border-radius: 4px;
|
|
142
|
-
border-radius: 4px;
|
|
143
|
-
}
|
|
144
|
-
.edui-editor div{
|
|
145
|
-
width:auto;
|
|
146
|
-
height:auto;
|
|
147
|
-
}
|
|
148
|
-
.edui-default .edui-editor-toolbarbox {
|
|
149
|
-
position: relative;
|
|
150
|
-
zoom: 1;
|
|
151
|
-
-webkit-box-shadow:0 1px 4px rgba(204, 204, 204, 0.6);
|
|
152
|
-
-moz-box-shadow:0 1px 4px rgba(204, 204, 204, 0.6);
|
|
153
|
-
box-shadow:0 1px 4px rgba(204, 204, 204, 0.6);
|
|
154
|
-
border-top-left-radius:2px;
|
|
155
|
-
border-top-right-radius:2px;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.edui-default .edui-editor-toolbarboxouter {
|
|
159
|
-
border-bottom: 1px solid #d4d4d4;
|
|
160
|
-
background-color: #fafafa;
|
|
161
|
-
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
|
|
162
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
|
|
163
|
-
background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
|
|
164
|
-
background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
|
|
165
|
-
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
|
|
166
|
-
background-repeat: repeat-x;
|
|
167
|
-
/*border: 1px solid #d4d4d4;*/
|
|
168
|
-
-webkit-border-radius: 4px 4px 0 0;
|
|
169
|
-
-moz-border-radius: 4px 4px 0 0;
|
|
170
|
-
border-radius: 4px 4px 0 0;
|
|
171
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
|
|
172
|
-
*zoom: 1;
|
|
173
|
-
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
174
|
-
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
175
|
-
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.edui-default .edui-editor-toolbarboxinner {
|
|
179
|
-
padding: 2px;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.edui-default .edui-editor-iframeholder {
|
|
183
|
-
position: relative;
|
|
184
|
-
/*for fix ie6 toolbarmsg under iframe bug. relative -> static */
|
|
185
|
-
/*_position: static !important;*
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.edui-default .edui-editor-iframeholder textarea {
|
|
189
|
-
font-family: consolas, "Courier New", "lucida console", monospace;
|
|
190
|
-
font-size: 12px;
|
|
191
|
-
line-height: 18px;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.edui-default .edui-editor-bottombar {
|
|
195
|
-
/*border-top: 1px solid #ccc;*/
|
|
196
|
-
/*height: 20px;*/
|
|
197
|
-
/*width: 40%;*/
|
|
198
|
-
/*float: left;*/
|
|
199
|
-
/*overflow: hidden;*/
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.edui-default .edui-editor-bottomContainer {
|
|
203
|
-
overflow: hidden;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.edui-default .edui-editor-bottomContainer table {
|
|
207
|
-
width: 100%;
|
|
208
|
-
height: 0;
|
|
209
|
-
overflow: hidden;
|
|
210
|
-
border-spacing: 0;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.edui-default .edui-editor-bottomContainer td {
|
|
214
|
-
white-space: nowrap;
|
|
215
|
-
border-top: 1px solid #ccc;
|
|
216
|
-
line-height: 20px;
|
|
217
|
-
font-size: 12px;
|
|
218
|
-
font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.edui-default .edui-editor-wordcount {
|
|
222
|
-
text-align: right;
|
|
223
|
-
margin-right: 5px;
|
|
224
|
-
color: #aaa;
|
|
225
|
-
}
|
|
226
|
-
.edui-default .edui-editor-scale {
|
|
227
|
-
width: 12px;
|
|
228
|
-
}
|
|
229
|
-
.edui-default .edui-editor-scale .edui-editor-icon {
|
|
230
|
-
float: right;
|
|
231
|
-
width: 100%;
|
|
232
|
-
height: 12px;
|
|
233
|
-
margin-top: 10px;
|
|
234
|
-
background: url(../images/scale.png) no-repeat;
|
|
235
|
-
cursor: se-resize;
|
|
236
|
-
}
|
|
237
|
-
.edui-default .edui-editor-breadcrumb {
|
|
238
|
-
margin: 2px 0 0 3px;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.edui-default .edui-editor-breadcrumb span {
|
|
242
|
-
cursor: pointer;
|
|
243
|
-
text-decoration: underline;
|
|
244
|
-
color: blue;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.edui-default .edui-toolbar .edui-for-fullscreen {
|
|
248
|
-
float: right;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.edui-default .edui-bubble .edui-popup-content {
|
|
252
|
-
border: 1px solid #DCAC6C;
|
|
253
|
-
background-color: #fff6d9;
|
|
254
|
-
padding: 5px;
|
|
255
|
-
font-size: 10pt;
|
|
256
|
-
font-family: "宋体";
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
.edui-default .edui-bubble .edui-shadow {
|
|
260
|
-
/*box-shadow: 1px 1px 3px #818181;*/
|
|
261
|
-
/*-webkit-box-shadow: 2px 2px 3px #818181;*/
|
|
262
|
-
/*-moz-box-shadow: 2px 2px 3px #818181;*/
|
|
263
|
-
/*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius = '2', MakeShadow = 'true', ShadowOpacity = '0.5');*/
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.edui-default .edui-editor-toolbarmsg {
|
|
267
|
-
background-color: #FFF6D9;
|
|
268
|
-
border-bottom: 1px solid #ccc;
|
|
269
|
-
position: absolute;
|
|
270
|
-
bottom: -25px;
|
|
271
|
-
left: 0;
|
|
272
|
-
z-index: 1009;
|
|
273
|
-
width: 99.9%;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.edui-default .edui-editor-toolbarmsg-upload {
|
|
277
|
-
font-size: 14px;
|
|
278
|
-
color: blue;
|
|
279
|
-
width: 100px;
|
|
280
|
-
height: 16px;
|
|
281
|
-
line-height: 16px;
|
|
282
|
-
cursor: pointer;
|
|
283
|
-
position: absolute;
|
|
284
|
-
top: 5px;
|
|
285
|
-
left: 350px;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.edui-default .edui-editor-toolbarmsg-label {
|
|
289
|
-
font-size: 12px;
|
|
290
|
-
line-height: 16px;
|
|
291
|
-
padding: 4px;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.edui-default .edui-editor-toolbarmsg-close {
|
|
295
|
-
float: right;
|
|
296
|
-
width: 20px;
|
|
297
|
-
height: 16px;
|
|
298
|
-
line-height: 16px;
|
|
299
|
-
cursor: pointer;
|
|
300
|
-
color: red;
|
|
301
|
-
}
|
|
302
|
-
/*可选中菜单按钮*/
|
|
303
|
-
.edui-default .edui-list .edui-bordereraser {
|
|
304
|
-
display: none;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.edui-default .edui-listitem {
|
|
308
|
-
padding: 1px;
|
|
309
|
-
white-space: nowrap;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.edui-default .edui-list .edui-state-hover {
|
|
313
|
-
position: relative;
|
|
314
|
-
background-color: #fff5d4;
|
|
315
|
-
border: 1px solid #dcac6c;
|
|
316
|
-
padding: 0;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
.edui-default .edui-for-fontfamily .edui-listitem-label {
|
|
320
|
-
min-width: 130px;
|
|
321
|
-
_width: 120px;
|
|
322
|
-
font-size: 12px;
|
|
323
|
-
height: 22px;
|
|
324
|
-
line-height: 22px;
|
|
325
|
-
padding-left: 5px;
|
|
326
|
-
}
|
|
327
|
-
.edui-default .edui-for-insertcode .edui-listitem-label {
|
|
328
|
-
min-width: 120px;
|
|
329
|
-
_width: 120px;
|
|
330
|
-
font-size: 12px;
|
|
331
|
-
height: 22px;
|
|
332
|
-
line-height: 22px;
|
|
333
|
-
padding-left: 5px;
|
|
334
|
-
}
|
|
335
|
-
.edui-default .edui-for-underline .edui-listitem-label {
|
|
336
|
-
min-width: 120px;
|
|
337
|
-
_width: 120px;
|
|
338
|
-
padding: 3px 5px;
|
|
339
|
-
font-size: 12px;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.edui-default .edui-for-fontsize .edui-listitem-label {
|
|
343
|
-
min-width: 120px;
|
|
344
|
-
_width: 120px;
|
|
345
|
-
padding: 3px 5px;
|
|
346
|
-
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
.edui-default .edui-for-paragraph .edui-listitem-label {
|
|
350
|
-
min-width: 200px;
|
|
351
|
-
_width: 200px;
|
|
352
|
-
padding: 2px 5px;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
.edui-default .edui-for-rowspacingtop .edui-listitem-label,
|
|
356
|
-
.edui-default .edui-for-rowspacingbottom .edui-listitem-label {
|
|
357
|
-
min-width: 53px;
|
|
358
|
-
_width: 53px;
|
|
359
|
-
padding: 2px 5px;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.edui-default .edui-for-lineheight .edui-listitem-label {
|
|
363
|
-
min-width: 53px;
|
|
364
|
-
_width: 53px;
|
|
365
|
-
padding: 2px 5px;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
.edui-default .edui-for-customstyle .edui-listitem-label {
|
|
369
|
-
min-width: 200px;
|
|
370
|
-
_width: 200px;
|
|
371
|
-
width: 200px !important;
|
|
372
|
-
padding: 2px 5px;
|
|
373
|
-
}
|
|
374
|
-
/* 可选中按钮弹出菜单*/
|
|
375
|
-
.edui-default .edui-menu {
|
|
376
|
-
z-index: 3000;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.edui-default .edui-menu .edui-popup-content {
|
|
380
|
-
padding: 3px;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.edui-default .edui-menu-body {
|
|
384
|
-
_width: 150px;
|
|
385
|
-
min-width: 170px;
|
|
386
|
-
background: url("../images/sparator_v.png") repeat-y 25px;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.edui-default .edui-menuitem-body {
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.edui-default .edui-menuitem {
|
|
393
|
-
height: 20px;
|
|
394
|
-
cursor: default;
|
|
395
|
-
vertical-align: top;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.edui-default .edui-menuitem .edui-icon {
|
|
399
|
-
width: 20px !important;
|
|
400
|
-
height: 20px !important;
|
|
401
|
-
background: url(../images/icons.png) 0 -4000px;
|
|
402
|
-
background: url(../images/icons.gif) 0 -4000px\9;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.edui-default .edui-menuitem .edui-label {
|
|
406
|
-
font-size: 12px;
|
|
407
|
-
line-height: 20px;
|
|
408
|
-
height: 20px;
|
|
409
|
-
padding-left: 10px;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.edui-default .edui-state-checked .edui-menuitem-body {
|
|
413
|
-
background: url("../images/icons-all.gif") no-repeat 6px -205px;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.edui-default .edui-state-disabled .edui-menuitem-label {
|
|
417
|
-
color: gray;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
/*不可选中菜单按钮 */
|
|
422
|
-
.edui-default .edui-toolbar .edui-combox-body .edui-button-body {
|
|
423
|
-
width: 60px;
|
|
424
|
-
font-size: 12px;
|
|
425
|
-
height: 20px;
|
|
426
|
-
line-height: 20px;
|
|
427
|
-
padding-left: 5px;
|
|
428
|
-
white-space: nowrap;
|
|
429
|
-
margin: 0 3px 0 0;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
|
|
433
|
-
background: url(../images/icons.png) -741px 0;
|
|
434
|
-
_background: url(../images/icons.gif) -741px 0;
|
|
435
|
-
height: 20px;
|
|
436
|
-
width: 9px;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.edui-default .edui-toolbar .edui-combox .edui-combox-body {
|
|
440
|
-
border: 1px solid #CCC;
|
|
441
|
-
background-color: white;
|
|
442
|
-
border-radius: 2px;
|
|
443
|
-
-webkit-border-radius: 2px;
|
|
444
|
-
-moz-border-radius: 2px;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.edui-default .edui-toolbar .edui-combox-body .edui-splitborder {
|
|
448
|
-
display: none;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
|
|
452
|
-
border-left: 1px solid #CCC;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.edui-default .edui-toolbar .edui-state-hover .edui-combox-body {
|
|
456
|
-
background-color: #fff5d4;
|
|
457
|
-
border: 1px solid #dcac6c;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.edui-default .edui-toolbar .edui-state-hover .edui-combox-body .edui-arrow {
|
|
461
|
-
border-left: 1px solid #dcac6c;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
.edui-default .edui-toolbar .edui-state-checked .edui-combox-body {
|
|
465
|
-
background-color: #FFE69F;
|
|
466
|
-
border: 1px solid #DCAC6C;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.edui-toolbar .edui-state-checked .edui-combox-body .edui-arrow {
|
|
470
|
-
border-left: 1px solid #DCAC6C;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.edui-toolbar .edui-state-disabled .edui-combox-body {
|
|
474
|
-
background-color: #F0F0EE;
|
|
475
|
-
opacity: 0.3;
|
|
476
|
-
filter: alpha(opacity = 30);
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
.edui-toolbar .edui-state-opened .edui-combox-body {
|
|
480
|
-
background-color: white;
|
|
481
|
-
border: 1px solid gray;
|
|
482
|
-
}
|
|
483
|
-
/*普通按钮样式及状态*/
|
|
484
|
-
.edui-default .edui-toolbar .edui-button .edui-icon,
|
|
485
|
-
.edui-default .edui-toolbar .edui-menubutton .edui-icon,
|
|
486
|
-
.edui-default .edui-toolbar .edui-splitbutton .edui-icon {
|
|
487
|
-
height: 20px !important;
|
|
488
|
-
width: 20px !important;
|
|
489
|
-
background-image: url(../images/icons.png);
|
|
490
|
-
background-image: url(../images/icons.gif) \9;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.edui-default .edui-toolbar .edui-button .edui-button-wrap {
|
|
494
|
-
padding: 1px;
|
|
495
|
-
position: relative;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
.edui-default .edui-toolbar .edui-button .edui-state-hover .edui-button-wrap {
|
|
499
|
-
background-color: #fff5d4;
|
|
500
|
-
padding: 0;
|
|
501
|
-
border: 1px solid #dcac6c;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
.edui-default .edui-toolbar .edui-button .edui-state-checked .edui-button-wrap {
|
|
505
|
-
background-color: #ffe69f;
|
|
506
|
-
padding: 0;
|
|
507
|
-
border: 1px solid #dcac6c;
|
|
508
|
-
border-radius: 2px;
|
|
509
|
-
-webkit-border-radius: 2px;
|
|
510
|
-
-moz-border-radius: 2px;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
.edui-default .edui-toolbar .edui-button .edui-state-active .edui-button-wrap {
|
|
514
|
-
background-color: #ffffff;
|
|
515
|
-
padding: 0;
|
|
516
|
-
border: 1px solid gray;
|
|
517
|
-
}
|
|
518
|
-
.edui-default .edui-toolbar .edui-state-disabled .edui-label {
|
|
519
|
-
color: #ccc;
|
|
520
|
-
}
|
|
521
|
-
.edui-default .edui-toolbar .edui-state-disabled .edui-icon {
|
|
522
|
-
opacity: 0.3;
|
|
523
|
-
filter: alpha(opacity = 30);
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
/* toolbar icons */
|
|
527
|
-
.edui-default .edui-for-undo .edui-icon {
|
|
528
|
-
background-position: -160px 0;
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
.edui-default .edui-for-redo .edui-icon {
|
|
532
|
-
background-position: -100px 0;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
.edui-default .edui-for-bold .edui-icon {
|
|
536
|
-
background-position: 0 0;
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
.edui-default .edui-for-italic .edui-icon {
|
|
540
|
-
background-position: -60px 0;
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
.edui-default .edui-for-fontborder .edui-icon {
|
|
544
|
-
background-position:-160px -40px;
|
|
545
|
-
}
|
|
546
|
-
.edui-default .edui-for-underline .edui-icon {
|
|
547
|
-
background-position: -140px 0;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
.edui-default .edui-for-strikethrough .edui-icon {
|
|
551
|
-
background-position: -120px 0;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.edui-default .edui-for-subscript .edui-icon {
|
|
555
|
-
background-position: -600px 0;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.edui-default .edui-for-superscript .edui-icon {
|
|
559
|
-
background-position: -620px 0;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
.edui-default .edui-for-blockquote .edui-icon {
|
|
563
|
-
background-position: -220px 0;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.edui-default .edui-for-forecolor .edui-icon {
|
|
567
|
-
background-position: -720px 0;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.edui-default .edui-for-backcolor .edui-icon {
|
|
571
|
-
background-position: -760px 0;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
.edui-default .edui-for-inserttable .edui-icon {
|
|
575
|
-
background-position: -580px -20px;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.edui-default .edui-for-autotypeset .edui-icon {
|
|
579
|
-
background-position: -640px -40px;
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.edui-default .edui-for-justifyleft .edui-icon {
|
|
583
|
-
background-position: -460px 0;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.edui-default .edui-for-justifycenter .edui-icon {
|
|
587
|
-
background-position: -420px 0;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
.edui-default .edui-for-justifyright .edui-icon {
|
|
591
|
-
background-position: -480px 0;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.edui-default .edui-for-justifyjustify .edui-icon {
|
|
595
|
-
background-position: -440px 0;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
.edui-default .edui-for-insertorderedlist .edui-icon {
|
|
599
|
-
background-position: -80px 0;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
.edui-default .edui-for-insertunorderedlist .edui-icon {
|
|
603
|
-
background-position: -20px 0;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.edui-default .edui-for-lineheight .edui-icon {
|
|
607
|
-
background-position: -725px -40px;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.edui-default .edui-for-rowspacingbottom .edui-icon {
|
|
611
|
-
background-position: -745px -40px;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.edui-default .edui-for-rowspacingtop .edui-icon {
|
|
615
|
-
background-position: -765px -40px;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
.edui-default .edui-for-horizontal .edui-icon {
|
|
619
|
-
background-position: -360px 0;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.edui-default .edui-for-link .edui-icon {
|
|
623
|
-
background-position: -500px 0;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.edui-default .edui-for-code .edui-icon {
|
|
627
|
-
background-position: -440px -40px;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
.edui-default .edui-for-insertimage .edui-icon {
|
|
631
|
-
background-position: -726px -77px;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
.edui-default .edui-for-insertframe .edui-icon {
|
|
635
|
-
background-position: -240px -40px;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
.edui-default .edui-for-emoticon .edui-icon {
|
|
639
|
-
background-position: -60px -20px;
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
.edui-default .edui-for-spechars .edui-icon {
|
|
643
|
-
background-position: -240px 0;
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
.edui-default .edui-for-help .edui-icon {
|
|
647
|
-
background-position: -340px 0;
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
.edui-default .edui-for-print .edui-icon {
|
|
651
|
-
background-position: -440px -20px;
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
.edui-default .edui-for-preview .edui-icon {
|
|
655
|
-
background-position: -420px -20px;
|
|
656
|
-
}
|
|
657
|
-
|
|
658
|
-
.edui-default .edui-for-selectall .edui-icon {
|
|
659
|
-
background-position: -400px -20px;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
.edui-default .edui-for-searchreplace .edui-icon {
|
|
663
|
-
background-position: -520px -20px;
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
.edui-default .edui-for-map .edui-icon {
|
|
667
|
-
background-position: -40px -40px;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
.edui-default .edui-for-gmap .edui-icon {
|
|
671
|
-
background-position: -260px -40px;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.edui-default .edui-for-insertvideo .edui-icon {
|
|
675
|
-
background-position: -320px -20px;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
.edui-default .edui-for-time .edui-icon {
|
|
679
|
-
background-position: -160px -20px;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.edui-default .edui-for-date .edui-icon {
|
|
683
|
-
background-position: -140px -20px;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
.edui-default .edui-for-cut .edui-icon {
|
|
687
|
-
background-position: -680px 0;
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
.edui-default .edui-for-copy .edui-icon {
|
|
691
|
-
background-position: -700px 0;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.edui-default .edui-for-paste .edui-icon {
|
|
695
|
-
background-position: -560px 0;
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
.edui-default .edui-for-formatmatch .edui-icon {
|
|
699
|
-
background-position: -40px 0;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.edui-default .edui-for-pasteplain .edui-icon {
|
|
703
|
-
background-position: -360px -20px;
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
.edui-default .edui-for-directionalityltr .edui-icon {
|
|
707
|
-
background-position: -20px -20px;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
.edui-default .edui-for-directionalityrtl .edui-icon {
|
|
711
|
-
background-position: -40px -20px;
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
.edui-default .edui-for-source .edui-icon {
|
|
715
|
-
background-position: -261px -0px;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
.edui-default .edui-for-removeformat .edui-icon {
|
|
719
|
-
background-position: -580px 0;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
.edui-default .edui-for-unlink .edui-icon {
|
|
723
|
-
background-position: -640px 0;
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
.edui-default .edui-for-touppercase .edui-icon {
|
|
727
|
-
background-position: -786px 0;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
.edui-default .edui-for-tolowercase .edui-icon {
|
|
731
|
-
background-position: -806px 0;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
.edui-default .edui-for-insertrow .edui-icon {
|
|
735
|
-
background-position: -478px -76px;
|
|
736
|
-
}
|
|
737
|
-
|
|
738
|
-
.edui-default .edui-for-insertrownext .edui-icon {
|
|
739
|
-
background-position: -498px -76px;
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
.edui-default .edui-for-insertcol .edui-icon {
|
|
743
|
-
background-position: -455px -76px;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
.edui-default .edui-for-insertcolnext .edui-icon {
|
|
747
|
-
background-position: -429px -76px;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
.edui-default .edui-for-mergeright .edui-icon {
|
|
751
|
-
background-position: -60px -40px;
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.edui-default .edui-for-mergedown .edui-icon {
|
|
755
|
-
background-position: -80px -40px;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
.edui-default .edui-for-splittorows .edui-icon {
|
|
759
|
-
background-position: -100px -40px;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
.edui-default .edui-for-splittocols .edui-icon {
|
|
763
|
-
background-position: -120px -40px;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.edui-default .edui-for-insertparagraphbeforetable .edui-icon {
|
|
767
|
-
background-position: -140px -40px;
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
.edui-default .edui-for-deleterow .edui-icon {
|
|
771
|
-
background-position: -660px -20px;
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
.edui-default .edui-for-deletecol .edui-icon {
|
|
775
|
-
background-position: -640px -20px;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
.edui-default .edui-for-splittocells .edui-icon {
|
|
779
|
-
background-position: -800px -20px;
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
.edui-default .edui-for-mergecells .edui-icon {
|
|
783
|
-
background-position: -760px -20px;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.edui-default .edui-for-deletetable .edui-icon {
|
|
787
|
-
background-position: -620px -20px;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
.edui-default .edui-for-cleardoc .edui-icon {
|
|
791
|
-
background-position: -520px 0;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.edui-default .edui-for-fullscreen .edui-icon {
|
|
795
|
-
background-position: -100px -20px;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
.edui-default .edui-for-anchor .edui-icon {
|
|
799
|
-
background-position: -200px 0;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
.edui-default .edui-for-pagebreak .edui-icon {
|
|
803
|
-
background-position: -460px -40px;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.edui-default .edui-for-imagenone .edui-icon {
|
|
807
|
-
background-position: -480px -40px;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.edui-default .edui-for-imageleft .edui-icon {
|
|
811
|
-
background-position: -500px -40px;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.edui-default .edui-for-wordimage .edui-icon {
|
|
815
|
-
background-position: -660px -40px;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.edui-default .edui-for-imageright .edui-icon {
|
|
819
|
-
background-position: -520px -40px;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.edui-default .edui-for-imagecenter .edui-icon {
|
|
823
|
-
background-position: -540px -40px;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.edui-default .edui-for-indent .edui-icon {
|
|
827
|
-
background-position: -400px 0;
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
.edui-default .edui-for-outdent .edui-icon {
|
|
831
|
-
background-position: -540px 0;
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
.edui-default .edui-for-webapp .edui-icon {
|
|
835
|
-
background-position: -601px -40px
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
.edui-default .edui-for-table .edui-icon {
|
|
839
|
-
background-position: -580px -20px;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
.edui-default .edui-for-edittable .edui-icon {
|
|
843
|
-
background-position: -420px -40px;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
.edui-default .edui-for-template .edui-icon {
|
|
847
|
-
background-position: -339px -40px;
|
|
848
|
-
}
|
|
849
|
-
|
|
850
|
-
.edui-default .edui-for-delete .edui-icon {
|
|
851
|
-
background-position: -360px -40px;
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
.edui-default .edui-for-attachment .edui-icon {
|
|
855
|
-
background-position: -620px -40px;
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
.edui-default .edui-for-edittd .edui-icon {
|
|
859
|
-
background-position: -700px -40px;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
.edui-default .edui-for-snapscreen .edui-icon {
|
|
863
|
-
background-position: -581px -40px
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.edui-default .edui-for-scrawl .edui-icon {
|
|
867
|
-
background-position: -801px -41px
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.edui-default .edui-for-background .edui-icon {
|
|
871
|
-
background-position: -680px -40px;
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
.edui-default .edui-for-music .edui-icon {
|
|
875
|
-
background-position: -18px -40px
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.edui-default .edui-for-formula .edui-icon {
|
|
879
|
-
background-position: -200px -40px
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
.edui-default .edui-for-aligntd .edui-icon {
|
|
883
|
-
background-position: -236px -76px;
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
.edui-default .edui-for-insertparagraphtrue .edui-icon {
|
|
887
|
-
background-position: -625px -76px;
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
.edui-default .edui-for-insertparagraph .edui-icon {
|
|
891
|
-
background-position: -602px -76px;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
.edui-default .edui-for-insertcaption .edui-icon {
|
|
895
|
-
background-position: -336px -76px;
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
.edui-default .edui-for-deletecaption .edui-icon {
|
|
899
|
-
background-position: -362px -76px;
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
.edui-default .edui-for-inserttitle .edui-icon {
|
|
903
|
-
background-position: -286px -76px;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
.edui-default .edui-for-deletetitle .edui-icon {
|
|
907
|
-
background-position: -311px -76px;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
.edui-default .edui-for-aligntable .edui-icon {
|
|
911
|
-
background-position: -440px 0;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.edui-default .edui-for-tablealignment-left .edui-icon {
|
|
915
|
-
background-position: -460px 0;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
.edui-default .edui-for-tablealignment-center .edui-icon {
|
|
919
|
-
background-position: -420px 0;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.edui-default .edui-for-tablealignment-right .edui-icon {
|
|
923
|
-
background-position: -480px 0;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.edui-default .edui-for-drafts .edui-icon {
|
|
927
|
-
background-position: -560px 0;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
.edui-default .edui-for-charts .edui-icon {
|
|
931
|
-
background: url(../images/charts.png) no-repeat 2px 3px!important;
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
.edui-default .edui-for-inserttitlecol .edui-icon {
|
|
935
|
-
background-position: -673px -76px;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
.edui-default .edui-for-deletetitlecol .edui-icon {
|
|
939
|
-
background-position: -698px -76px;
|
|
940
|
-
}
|
|
941
|
-
|
|
942
|
-
.edui-default .edui-for-simpleupload .edui-icon {
|
|
943
|
-
background-position: -380px 0px;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
/*splitbutton*/
|
|
947
|
-
.edui-default .edui-toolbar .edui-splitbutton-body .edui-arrow,
|
|
948
|
-
.edui-default .edui-toolbar .edui-menubutton-body .edui-arrow {
|
|
949
|
-
background: url(../images/icons.png) -741px 0;
|
|
950
|
-
_background: url(../images/icons.gif) -741px 0;
|
|
951
|
-
height: 20px;
|
|
952
|
-
width: 9px;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.edui-default .edui-toolbar .edui-splitbutton .edui-splitbutton-body,
|
|
956
|
-
.edui-default .edui-toolbar .edui-menubutton .edui-menubutton-body {
|
|
957
|
-
padding: 1px;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
.edui-default .edui-toolbar .edui-splitborder {
|
|
961
|
-
width: 1px;
|
|
962
|
-
height: 20px;
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
.edui-default .edui-toolbar .edui-state-hover .edui-splitborder {
|
|
966
|
-
width: 1px;
|
|
967
|
-
border-left: 0px solid #dcac6c;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
.edui-default .edui-toolbar .edui-state-active .edui-splitborder {
|
|
971
|
-
width: 0;
|
|
972
|
-
border-left: 1px solid gray;
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
.edui-default .edui-toolbar .edui-state-opened .edui-splitborder {
|
|
976
|
-
width: 1px;
|
|
977
|
-
border: 0;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
.edui-default .edui-toolbar .edui-splitbutton .edui-state-hover .edui-splitbutton-body,
|
|
981
|
-
.edui-default .edui-toolbar .edui-menubutton .edui-state-hover .edui-menubutton-body {
|
|
982
|
-
background-color: #fff5d4;
|
|
983
|
-
border: 1px solid #dcac6c;
|
|
984
|
-
padding: 0;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
.edui-default .edui-toolbar .edui-splitbutton .edui-state-checked .edui-splitbutton-body,
|
|
988
|
-
.edui-default .edui-toolbar .edui-menubutton .edui-state-checked .edui-menubutton-body {
|
|
989
|
-
background-color: #FFE69F;
|
|
990
|
-
border: 1px solid #DCAC6C;
|
|
991
|
-
padding: 0;
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
.edui-default .edui-toolbar .edui-splitbutton .edui-state-active .edui-splitbutton-body,
|
|
995
|
-
.edui-default .edui-toolbar .edui-menubutton .edui-state-active .edui-menubutton-body {
|
|
996
|
-
background-color: #ffffff;
|
|
997
|
-
border: 1px solid gray;
|
|
998
|
-
padding: 0;
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
|
-
.edui-default .edui-state-disabled .edui-arrow {
|
|
1002
|
-
opacity: 0.3;
|
|
1003
|
-
_filter: alpha(opacity = 30);
|
|
1004
|
-
}
|
|
1005
|
-
|
|
1006
|
-
.edui-default .edui-toolbar .edui-splitbutton .edui-state-opened .edui-splitbutton-body,
|
|
1007
|
-
.edui-default .edui-toolbar .edui-menubutton .edui-state-opened .edui-menubutton-body {
|
|
1008
|
-
background-color: white;
|
|
1009
|
-
border: 1px solid gray;
|
|
1010
|
-
padding: 0;
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
.edui-default .edui-for-insertorderedlist .edui-bordereraser,
|
|
1014
|
-
.edui-default .edui-for-lineheight .edui-bordereraser,
|
|
1015
|
-
.edui-default .edui-for-rowspacingtop .edui-bordereraser,
|
|
1016
|
-
.edui-default .edui-for-rowspacingbottom .edui-bordereraser,
|
|
1017
|
-
.edui-default .edui-for-insertunorderedlist .edui-bordereraser {
|
|
1018
|
-
background-color: white;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
/* 解决嵌套导致的图标问题 */
|
|
1022
|
-
.edui-default .edui-for-insertorderedlist .edui-popup-body .edui-icon,
|
|
1023
|
-
.edui-default .edui-for-lineheight .edui-popup-body .edui-icon,
|
|
1024
|
-
.edui-default .edui-for-rowspacingtop .edui-popup-body .edui-icon,
|
|
1025
|
-
.edui-default .edui-for-rowspacingbottom .edui-popup-body .edui-icon,
|
|
1026
|
-
.edui-default .edui-for-insertunorderedlist .edui-popup-body .edui-icon {
|
|
1027
|
-
/*background-position: 0 -40px;*/
|
|
1028
|
-
background-image: none ;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
/* 弹出菜单 */
|
|
1032
|
-
.edui-default .edui-popup {
|
|
1033
|
-
z-index: 3000;
|
|
1034
|
-
background-color: #ffffff;
|
|
1035
|
-
width:auto;
|
|
1036
|
-
height:auto;
|
|
1037
|
-
-webkit-border-radius: 6px;
|
|
1038
|
-
-moz-border-radius: 6px;
|
|
1039
|
-
border-radius: 6px;
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
.edui-default .edui-popup .edui-shadow {
|
|
1043
|
-
left: 0;
|
|
1044
|
-
top: 0;
|
|
1045
|
-
width: 100%;
|
|
1046
|
-
height: 100%;
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
.edui-default .edui-popup-content {
|
|
1050
|
-
border:1px solid #ccc;
|
|
1051
|
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1052
|
-
*border-right-width: 2px;
|
|
1053
|
-
*border-bottom-width: 2px;
|
|
1054
|
-
-webkit-border-radius: 6px;
|
|
1055
|
-
-moz-border-radius: 6px;
|
|
1056
|
-
border-radius: 6px;
|
|
1057
|
-
-webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
|
|
1058
|
-
-moz-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
|
|
1059
|
-
box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
|
|
1060
|
-
-webkit-background-clip: padding-box;
|
|
1061
|
-
-moz-background-clip: padding;
|
|
1062
|
-
background-clip: padding-box;
|
|
1063
|
-
padding: 5px;
|
|
1064
|
-
background:#ffffff;
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
.edui-default .edui-popup .edui-bordereraser {
|
|
1068
|
-
background-color: white;
|
|
1069
|
-
height: 3px;
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
.edui-default .edui-menu .edui-bordereraser {
|
|
1073
|
-
height: 3px;
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
.edui-default .edui-anchor-topleft .edui-bordereraser {
|
|
1077
|
-
left: 1px;
|
|
1078
|
-
top: -2px;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
.edui-default .edui-anchor-topright .edui-bordereraser {
|
|
1082
|
-
right: 1px;
|
|
1083
|
-
top: -2px;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.edui-default .edui-anchor-bottomleft .edui-bordereraser {
|
|
1087
|
-
left: 0;
|
|
1088
|
-
bottom: -6px;
|
|
1089
|
-
height: 7px;
|
|
1090
|
-
border-left: 1px solid gray;
|
|
1091
|
-
border-right: 1px solid gray;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
.edui-default .edui-anchor-bottomright .edui-bordereraser {
|
|
1095
|
-
right: 0;
|
|
1096
|
-
bottom: -6px;
|
|
1097
|
-
height: 7px;
|
|
1098
|
-
border-left: 1px solid gray;
|
|
1099
|
-
border-right: 1px solid gray;
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
.edui-popup div{
|
|
1103
|
-
width:auto;
|
|
1104
|
-
height:auto;
|
|
1105
|
-
}
|
|
1106
|
-
.edui-default .edui-editor-messageholder {
|
|
1107
|
-
display: block;
|
|
1108
|
-
width: 150px;
|
|
1109
|
-
height: auto;
|
|
1110
|
-
border: 0;
|
|
1111
|
-
margin: 0;
|
|
1112
|
-
padding: 0;
|
|
1113
|
-
position: absolute;
|
|
1114
|
-
top: 28px;
|
|
1115
|
-
right: 3px;
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
.edui-default .edui-message{
|
|
1119
|
-
min-height: 10px;
|
|
1120
|
-
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
|
|
1121
|
-
padding: 0;
|
|
1122
|
-
margin-bottom: 3px;
|
|
1123
|
-
position: relative;
|
|
1124
|
-
}
|
|
1125
|
-
.edui-default .edui-message-body{
|
|
1126
|
-
border-radius: 3px;
|
|
1127
|
-
padding: 8px 15px 8px 8px;
|
|
1128
|
-
color: #c09853;
|
|
1129
|
-
background-color: #fcf8e3;
|
|
1130
|
-
border: 1px solid #fbeed5;
|
|
1131
|
-
}
|
|
1132
|
-
.edui-default .edui-message-type-info{
|
|
1133
|
-
color: #3a87ad;
|
|
1134
|
-
background-color: #d9edf7;
|
|
1135
|
-
border-color: #bce8f1
|
|
1136
|
-
}
|
|
1137
|
-
.edui-default .edui-message-type-success{
|
|
1138
|
-
color: #468847;
|
|
1139
|
-
background-color: #dff0d8;
|
|
1140
|
-
border-color: #d6e9c6
|
|
1141
|
-
}
|
|
1142
|
-
.edui-default .edui-message-type-danger,
|
|
1143
|
-
.edui-default .edui-message-type-error{
|
|
1144
|
-
color: #b94a48;
|
|
1145
|
-
background-color: #f2dede;
|
|
1146
|
-
border-color: #eed3d7
|
|
1147
|
-
}
|
|
1148
|
-
.edui-default .edui-message .edui-message-closer {
|
|
1149
|
-
display: block;
|
|
1150
|
-
width: 16px;
|
|
1151
|
-
height: 16px;
|
|
1152
|
-
line-height: 16px;
|
|
1153
|
-
position: absolute;
|
|
1154
|
-
top: 0;
|
|
1155
|
-
right: 0;
|
|
1156
|
-
padding: 0;
|
|
1157
|
-
cursor: pointer;
|
|
1158
|
-
background: transparent;
|
|
1159
|
-
border: 0;
|
|
1160
|
-
float: right;
|
|
1161
|
-
font-size: 20px;
|
|
1162
|
-
font-weight: bold;
|
|
1163
|
-
color: #999;
|
|
1164
|
-
text-shadow: 0 1px 0 #fff;
|
|
1165
|
-
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
1166
|
-
}
|
|
1167
|
-
.edui-default .edui-message .edui-message-content {
|
|
1168
|
-
font-size: 10pt;
|
|
1169
|
-
word-wrap: break-word;
|
|
1170
|
-
word-break: normal;
|
|
1171
|
-
}
|
|
1172
|
-
/* 弹出对话框按钮和对话框大小 */
|
|
1173
|
-
.edui-default .edui-dialog {
|
|
1174
|
-
z-index: 2000;
|
|
1175
|
-
position: absolute;
|
|
1176
|
-
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
.edui-dialog div{
|
|
1180
|
-
width:auto;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
.edui-default .edui-dialog-wrap {
|
|
1184
|
-
margin-right: 6px;
|
|
1185
|
-
margin-bottom: 6px;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.edui-default .edui-dialog-fullscreen-flag {
|
|
1189
|
-
margin-right: 0;
|
|
1190
|
-
margin-bottom: 0;
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
.edui-default .edui-dialog-body {
|
|
1194
|
-
position: relative;
|
|
1195
|
-
padding:2px 0 0 2px;
|
|
1196
|
-
_zoom: 1;
|
|
1197
|
-
}
|
|
1198
|
-
|
|
1199
|
-
.edui-default .edui-dialog-fullscreen-flag .edui-dialog-body {
|
|
1200
|
-
padding: 0;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.edui-default .edui-dialog-shadow {
|
|
1204
|
-
position: absolute;
|
|
1205
|
-
z-index: -1;
|
|
1206
|
-
left: 0;
|
|
1207
|
-
top: 0;
|
|
1208
|
-
width: 100%;
|
|
1209
|
-
height: 100%;
|
|
1210
|
-
background-color: #ffffff;
|
|
1211
|
-
border: 1px solid #ccc;
|
|
1212
|
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1213
|
-
*border-right-width: 2px;
|
|
1214
|
-
*border-bottom-width: 2px;
|
|
1215
|
-
-webkit-border-radius: 6px;
|
|
1216
|
-
-moz-border-radius: 6px;
|
|
1217
|
-
border-radius: 6px;
|
|
1218
|
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1219
|
-
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1220
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1221
|
-
-webkit-background-clip: padding-box;
|
|
1222
|
-
-moz-background-clip: padding;
|
|
1223
|
-
background-clip: padding-box;
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
.edui-default .edui-dialog-foot {
|
|
1227
|
-
background-color: white;
|
|
1228
|
-
}
|
|
1229
|
-
|
|
1230
|
-
.edui-default .edui-dialog-titlebar {
|
|
1231
|
-
height: 26px;
|
|
1232
|
-
border-bottom: 1px solid #c6c6c6;
|
|
1233
|
-
background: url(../images/dialog-title-bg.png) repeat-x bottom;
|
|
1234
|
-
position: relative;
|
|
1235
|
-
cursor: move;
|
|
1236
|
-
}
|
|
1237
|
-
.edui-default .edui-dialog-caption {
|
|
1238
|
-
font-weight: bold;
|
|
1239
|
-
font-size: 12px;
|
|
1240
|
-
line-height: 26px;
|
|
1241
|
-
padding-left: 5px;
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
.edui-default .edui-dialog-draghandle {
|
|
1245
|
-
height: 26px;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
.edui-default .edui-dialog-closebutton {
|
|
1249
|
-
position: absolute !important;
|
|
1250
|
-
right: 5px;
|
|
1251
|
-
top: 3px;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
.edui-default .edui-dialog-closebutton .edui-button-body {
|
|
1255
|
-
height: 20px;
|
|
1256
|
-
width: 20px;
|
|
1257
|
-
cursor: pointer;
|
|
1258
|
-
background: url("../images/icons-all.gif") no-repeat 0 -59px;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.edui-default .edui-dialog-closebutton .edui-state-hover .edui-button-body {
|
|
1262
|
-
background: url("../images/icons-all.gif") no-repeat 0 -89px;
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
|
-
.edui-default .edui-dialog-foot {
|
|
1266
|
-
height: 40px;
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
.edui-default .edui-dialog-buttons {
|
|
1270
|
-
position: absolute;
|
|
1271
|
-
right: 0;
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
.edui-default .edui-dialog-buttons .edui-button {
|
|
1275
|
-
margin-right: 10px;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.edui-default .edui-dialog-buttons .edui-button .edui-button-body {
|
|
1279
|
-
background: url("../images/icons-all.gif") no-repeat;
|
|
1280
|
-
height: 24px;
|
|
1281
|
-
width: 96px;
|
|
1282
|
-
font-size: 12px;
|
|
1283
|
-
line-height: 24px;
|
|
1284
|
-
text-align: center;
|
|
1285
|
-
cursor: default;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
.edui-default .edui-dialog-buttons .edui-button .edui-state-hover .edui-button-body {
|
|
1289
|
-
background: url("../images/icons-all.gif") no-repeat 0 -30px;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
.edui-default .edui-dialog iframe {
|
|
1293
|
-
border: 0;
|
|
1294
|
-
padding: 0;
|
|
1295
|
-
margin: 0;
|
|
1296
|
-
vertical-align: top;
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
.edui-default .edui-dialog-modalmask {
|
|
1300
|
-
opacity: 0.3;
|
|
1301
|
-
filter: alpha(opacity = 30);
|
|
1302
|
-
background-color: #ccc;
|
|
1303
|
-
position: absolute;
|
|
1304
|
-
/*z-index: 1999;*/
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
|
-
.edui-default .edui-dialog-dragmask {
|
|
1308
|
-
position: absolute;
|
|
1309
|
-
/*z-index: 2001;*/
|
|
1310
|
-
background-color: transparent;
|
|
1311
|
-
cursor: move;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
.edui-default .edui-dialog-content {
|
|
1315
|
-
position: relative;
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
.edui-default .dialogcontmask {
|
|
1319
|
-
cursor: move;
|
|
1320
|
-
visibility: hidden;
|
|
1321
|
-
display: block;
|
|
1322
|
-
position: absolute;
|
|
1323
|
-
width: 100%;
|
|
1324
|
-
height: 100%;
|
|
1325
|
-
opacity: 0;
|
|
1326
|
-
filter: alpha(opacity = 0);
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
/*link-dialog*/
|
|
1330
|
-
.edui-default .edui-for-link .edui-dialog-content {
|
|
1331
|
-
width: 420px;
|
|
1332
|
-
height: 200px;
|
|
1333
|
-
overflow: hidden;
|
|
1334
|
-
}
|
|
1335
|
-
/*background-dialog*/
|
|
1336
|
-
.edui-default .edui-for-background .edui-dialog-content {
|
|
1337
|
-
width: 440px;
|
|
1338
|
-
height: 280px;
|
|
1339
|
-
overflow: hidden;
|
|
1340
|
-
}
|
|
1341
|
-
|
|
1342
|
-
/*template-dialog*/
|
|
1343
|
-
.edui-default .edui-for-template .edui-dialog-content {
|
|
1344
|
-
width: 630px;
|
|
1345
|
-
height: 390px;
|
|
1346
|
-
overflow: hidden;
|
|
1347
|
-
}
|
|
1348
|
-
|
|
1349
|
-
/*scrawl-dialog*/
|
|
1350
|
-
.edui-default .edui-for-scrawl .edui-dialog-content {
|
|
1351
|
-
width: 515px;
|
|
1352
|
-
*width: 506px;
|
|
1353
|
-
height: 360px;
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
/*spechars-dialog*/
|
|
1357
|
-
.edui-default .edui-for-spechars .edui-dialog-content {
|
|
1358
|
-
width: 620px;
|
|
1359
|
-
height: 500px;
|
|
1360
|
-
*width: 630px;
|
|
1361
|
-
*height: 570px;
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
/*image-dialog*/
|
|
1365
|
-
.edui-default .edui-for-insertimage .edui-dialog-content {
|
|
1366
|
-
width: 650px;
|
|
1367
|
-
height: 400px;
|
|
1368
|
-
overflow: hidden;
|
|
1369
|
-
}
|
|
1370
|
-
/*webapp-dialog*/
|
|
1371
|
-
.edui-default .edui-for-webapp .edui-dialog-content {
|
|
1372
|
-
width: 560px;
|
|
1373
|
-
_width: 565px;
|
|
1374
|
-
height: 450px;
|
|
1375
|
-
overflow: hidden;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
/*image-insertframe*/
|
|
1379
|
-
.edui-default .edui-for-insertframe .edui-dialog-content {
|
|
1380
|
-
width: 350px;
|
|
1381
|
-
height: 200px;
|
|
1382
|
-
overflow: hidden;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
/*wordImage-dialog*/
|
|
1386
|
-
.edui-default .edui-for-wordimage .edui-dialog-content {
|
|
1387
|
-
width: 620px;
|
|
1388
|
-
height: 380px;
|
|
1389
|
-
overflow: hidden;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
/*attachment-dialog*/
|
|
1393
|
-
.edui-default .edui-for-attachment .edui-dialog-content {
|
|
1394
|
-
width: 650px;
|
|
1395
|
-
height: 400px;
|
|
1396
|
-
overflow: hidden;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
/*map-dialog*/
|
|
1401
|
-
.edui-default .edui-for-map .edui-dialog-content {
|
|
1402
|
-
width: 550px;
|
|
1403
|
-
height: 400px;
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
|
-
/*gmap-dialog*/
|
|
1407
|
-
.edui-default .edui-for-gmap .edui-dialog-content {
|
|
1408
|
-
width: 550px;
|
|
1409
|
-
height: 400px;
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
|
-
/*video-dialog*/
|
|
1413
|
-
.edui-default .edui-for-insertvideo .edui-dialog-content {
|
|
1414
|
-
width: 590px;
|
|
1415
|
-
height: 390px;
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
/*anchor-dialog*/
|
|
1419
|
-
.edui-default .edui-for-anchor .edui-dialog-content {
|
|
1420
|
-
width: 320px;
|
|
1421
|
-
height: 60px;
|
|
1422
|
-
overflow: hidden;
|
|
1423
|
-
}
|
|
1424
|
-
|
|
1425
|
-
/*searchreplace-dialog*/
|
|
1426
|
-
.edui-default .edui-for-searchreplace .edui-dialog-content {
|
|
1427
|
-
width: 400px;
|
|
1428
|
-
height: 220px;
|
|
1429
|
-
}
|
|
1430
|
-
|
|
1431
|
-
/*help-dialog*/
|
|
1432
|
-
.edui-default .edui-for-help .edui-dialog-content {
|
|
1433
|
-
width: 400px;
|
|
1434
|
-
height: 420px;
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
|
-
/*edittable-dialog*/
|
|
1438
|
-
.edui-default .edui-for-edittable .edui-dialog-content {
|
|
1439
|
-
width: 540px;
|
|
1440
|
-
_width:590px;
|
|
1441
|
-
height: 335px;
|
|
1442
|
-
}
|
|
1443
|
-
|
|
1444
|
-
/*edittip-dialog*/
|
|
1445
|
-
.edui-default .edui-for-edittip .edui-dialog-content {
|
|
1446
|
-
width: 225px;
|
|
1447
|
-
height: 60px;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
/*edittd-dialog*/
|
|
1451
|
-
.edui-default .edui-for-edittd .edui-dialog-content {
|
|
1452
|
-
width: 240px;
|
|
1453
|
-
height: 50px;
|
|
1454
|
-
}
|
|
1455
|
-
/*snapscreen-dialog*/
|
|
1456
|
-
.edui-default .edui-for-snapscreen .edui-dialog-content {
|
|
1457
|
-
width: 400px;
|
|
1458
|
-
height: 220px;
|
|
1459
|
-
}
|
|
1460
|
-
|
|
1461
|
-
/*music-dialog*/
|
|
1462
|
-
.edui-default .edui-for-music .edui-dialog-content {
|
|
1463
|
-
width: 515px;
|
|
1464
|
-
height: 360px;
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
/*段落弹出菜单*/
|
|
1468
|
-
.edui-default .edui-for-paragraph .edui-listitem-label {
|
|
1469
|
-
font-family: Tahoma, Verdana, Arial, Helvetica;
|
|
1470
|
-
}
|
|
1471
|
-
|
|
1472
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-p {
|
|
1473
|
-
font-size: 22px;
|
|
1474
|
-
line-height: 27px;
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h1 {
|
|
1478
|
-
font-weight: bolder;
|
|
1479
|
-
font-size: 32px;
|
|
1480
|
-
line-height: 36px;
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h2 {
|
|
1484
|
-
font-weight: bolder;
|
|
1485
|
-
font-size: 27px;
|
|
1486
|
-
line-height: 29px;
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h3 {
|
|
1490
|
-
font-weight: bolder;
|
|
1491
|
-
font-size: 19px;
|
|
1492
|
-
line-height: 23px;
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h4 {
|
|
1496
|
-
font-weight: bolder;
|
|
1497
|
-
font-size: 16px;
|
|
1498
|
-
line-height: 19px
|
|
1499
|
-
}
|
|
1500
|
-
|
|
1501
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h5 {
|
|
1502
|
-
font-weight: bolder;
|
|
1503
|
-
font-size: 13px;
|
|
1504
|
-
line-height: 16px;
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h6 {
|
|
1508
|
-
font-weight: bolder;
|
|
1509
|
-
font-size: 12px;
|
|
1510
|
-
line-height: 14px;
|
|
1511
|
-
}
|
|
1512
|
-
/* 表格弹出菜单 */
|
|
1513
|
-
.edui-default .edui-for-inserttable .edui-splitborder {
|
|
1514
|
-
display: none
|
|
1515
|
-
}
|
|
1516
|
-
.edui-default .edui-for-inserttable .edui-splitbutton-body .edui-arrow {
|
|
1517
|
-
width: 0
|
|
1518
|
-
}
|
|
1519
|
-
.edui-default .edui-toolbar .edui-for-inserttable .edui-state-active .edui-splitborder{
|
|
1520
|
-
border-left: 1px solid transparent;
|
|
1521
|
-
}
|
|
1522
|
-
.edui-default .edui-tablepicker .edui-infoarea {
|
|
1523
|
-
height: 14px;
|
|
1524
|
-
line-height: 14px;
|
|
1525
|
-
font-size: 12px;
|
|
1526
|
-
width: 220px;
|
|
1527
|
-
margin-bottom: 3px;
|
|
1528
|
-
clear: both;
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
.edui-default .edui-tablepicker .edui-infoarea .edui-label {
|
|
1532
|
-
float: left;
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
.edui-default .edui-dialog-buttons .edui-label {
|
|
1536
|
-
line-height: 24px;
|
|
1537
|
-
}
|
|
1538
|
-
|
|
1539
|
-
.edui-default .edui-tablepicker .edui-infoarea .edui-clickable {
|
|
1540
|
-
float: right;
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
|
-
.edui-default .edui-tablepicker .edui-pickarea {
|
|
1544
|
-
background: url("../images/unhighlighted.gif") repeat;
|
|
1545
|
-
height: 220px;
|
|
1546
|
-
width: 220px;
|
|
1547
|
-
}
|
|
1548
|
-
|
|
1549
|
-
.edui-default .edui-tablepicker .edui-pickarea .edui-overlay {
|
|
1550
|
-
background: url("../images/highlighted.gif") repeat;
|
|
1551
|
-
}
|
|
1552
|
-
|
|
1553
|
-
/* 颜色弹出菜单 */
|
|
1554
|
-
.edui-default .edui-colorpicker-topbar {
|
|
1555
|
-
height: 27px;
|
|
1556
|
-
width: 200px;
|
|
1557
|
-
/*border-bottom: 1px gray dashed;*/
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
.edui-default .edui-colorpicker-preview {
|
|
1561
|
-
height: 20px;
|
|
1562
|
-
border: 1px inset black;
|
|
1563
|
-
margin-left: 1px;
|
|
1564
|
-
width: 128px;
|
|
1565
|
-
float: left;
|
|
1566
|
-
}
|
|
1567
|
-
|
|
1568
|
-
.edui-default .edui-colorpicker-nocolor {
|
|
1569
|
-
float: right;
|
|
1570
|
-
margin-right: 1px;
|
|
1571
|
-
font-size: 12px;
|
|
1572
|
-
line-height: 14px;
|
|
1573
|
-
height: 14px;
|
|
1574
|
-
border: 1px solid #333;
|
|
1575
|
-
padding: 3px 5px;
|
|
1576
|
-
cursor: pointer;
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
|
-
.edui-default .edui-colorpicker-tablefirstrow {
|
|
1580
|
-
height: 30px;
|
|
1581
|
-
}
|
|
1582
|
-
|
|
1583
|
-
.edui-default .edui-colorpicker-colorcell {
|
|
1584
|
-
width: 14px;
|
|
1585
|
-
height: 14px;
|
|
1586
|
-
display: block;
|
|
1587
|
-
margin: 0;
|
|
1588
|
-
cursor: pointer;
|
|
1589
|
-
}
|
|
1590
|
-
|
|
1591
|
-
.edui-default .edui-colorpicker-colorcell:hover {
|
|
1592
|
-
width: 14px;
|
|
1593
|
-
height: 14px;
|
|
1594
|
-
margin: 0;
|
|
1595
|
-
}
|
|
1596
|
-
.edui-default .edui-colorpicker-advbtn{
|
|
1597
|
-
display: block;
|
|
1598
|
-
text-align: center;
|
|
1599
|
-
cursor: pointer;
|
|
1600
|
-
height:20px;
|
|
1601
|
-
}
|
|
1602
|
-
.arrow_down{
|
|
1603
|
-
background: white url('../images/arrow_down.png') no-repeat center;
|
|
1604
|
-
}
|
|
1605
|
-
.arrow_up{
|
|
1606
|
-
background: white url('../images/arrow_up.png') no-repeat center;
|
|
1607
|
-
}
|
|
1608
|
-
/*高级的样式*/
|
|
1609
|
-
.edui-colorpicker-adv{
|
|
1610
|
-
position: relative;
|
|
1611
|
-
overflow: hidden;
|
|
1612
|
-
height: 180px;
|
|
1613
|
-
display: none;
|
|
1614
|
-
}
|
|
1615
|
-
.edui-colorpicker-plant, .edui-colorpicker-hue {
|
|
1616
|
-
border: solid 1px #666;
|
|
1617
|
-
}
|
|
1618
|
-
.edui-colorpicker-pad {
|
|
1619
|
-
width: 150px;
|
|
1620
|
-
height: 150px;
|
|
1621
|
-
left: 14px;
|
|
1622
|
-
top: 13px;
|
|
1623
|
-
position: absolute;
|
|
1624
|
-
background: red;
|
|
1625
|
-
overflow: hidden;
|
|
1626
|
-
cursor: crosshair;
|
|
1627
|
-
}
|
|
1628
|
-
.edui-colorpicker-cover{
|
|
1629
|
-
position: absolute;
|
|
1630
|
-
top: 0;
|
|
1631
|
-
left: 0;
|
|
1632
|
-
width: 150px;
|
|
1633
|
-
height: 150px;
|
|
1634
|
-
background: url("../images/tangram-colorpicker.png") -160px -200px;
|
|
1635
|
-
}
|
|
1636
|
-
.edui-colorpicker-padDot{
|
|
1637
|
-
position: absolute;
|
|
1638
|
-
top: 0;
|
|
1639
|
-
left: 0;
|
|
1640
|
-
width: 11px;
|
|
1641
|
-
height: 11px;
|
|
1642
|
-
overflow: hidden;
|
|
1643
|
-
background: url(../images/tangram-colorpicker.png) 0px -200px repeat-x;
|
|
1644
|
-
z-index: 1000;
|
|
1645
|
-
|
|
1646
|
-
}
|
|
1647
|
-
.edui-colorpicker-sliderMain {
|
|
1648
|
-
position: absolute;
|
|
1649
|
-
left: 171px;
|
|
1650
|
-
top: 13px;
|
|
1651
|
-
width: 19px;
|
|
1652
|
-
height: 152px;
|
|
1653
|
-
background: url(../images/tangram-colorpicker.png) -179px -12px no-repeat;
|
|
1654
|
-
|
|
1655
|
-
}
|
|
1656
|
-
.edui-colorpicker-slider {
|
|
1657
|
-
width: 100%;
|
|
1658
|
-
height: 100%;
|
|
1659
|
-
cursor: pointer;
|
|
1660
|
-
}
|
|
1661
|
-
.edui-colorpicker-thumb{
|
|
1662
|
-
position: absolute;
|
|
1663
|
-
top: 0;
|
|
1664
|
-
cursor: pointer;
|
|
1665
|
-
height: 3px;
|
|
1666
|
-
left: -1px;
|
|
1667
|
-
right: -1px;
|
|
1668
|
-
border: 1px solid black;
|
|
1669
|
-
background: white;
|
|
1670
|
-
opacity: .8;
|
|
1671
|
-
}
|
|
1672
|
-
/*自动排版弹出菜单*/
|
|
1673
|
-
.edui-default .edui-autotypesetpicker .edui-autotypesetpicker-body {
|
|
1674
|
-
font-size: 12px;
|
|
1675
|
-
margin-bottom: 3px;
|
|
1676
|
-
clear: both;
|
|
1677
|
-
}
|
|
1678
|
-
|
|
1679
|
-
.edui-default .edui-autotypesetpicker-body table {
|
|
1680
|
-
border-collapse: separate;
|
|
1681
|
-
border-spacing: 2px;
|
|
1682
|
-
}
|
|
1683
|
-
|
|
1684
|
-
.edui-default .edui-autotypesetpicker-body td {
|
|
1685
|
-
font-size: 12px;
|
|
1686
|
-
word-wrap:break-word;
|
|
1687
|
-
}
|
|
1688
|
-
|
|
1689
|
-
.edui-default .edui-autotypesetpicker-body td input {
|
|
1690
|
-
margin: 3px 3px 3px 4px;
|
|
1691
|
-
*margin: 1px 0 0 0;
|
|
1692
|
-
}
|
|
1693
|
-
/*自动排版弹出菜单*/
|
|
1694
|
-
.edui-default .edui-cellalignpicker .edui-cellalignpicker-body {
|
|
1695
|
-
width: 70px;
|
|
1696
|
-
font-size: 12px;
|
|
1697
|
-
cursor: default;
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
.edui-default .edui-cellalignpicker-body table {
|
|
1701
|
-
border-collapse: separate;
|
|
1702
|
-
border-spacing: 0;
|
|
1703
|
-
}
|
|
1704
|
-
.edui-default .edui-cellalignpicker-body td{
|
|
1705
|
-
padding: 1px;
|
|
1706
|
-
}
|
|
1707
|
-
.edui-default .edui-cellalignpicker-body .edui-icon{
|
|
1708
|
-
height: 20px;
|
|
1709
|
-
width: 20px;
|
|
1710
|
-
padding: 1px;
|
|
1711
|
-
background-image: url(../images/table-cell-align.png);
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
|
-
.edui-default .edui-cellalignpicker-body .edui-left{
|
|
1715
|
-
background-position: 0 0;
|
|
1716
|
-
}
|
|
1717
|
-
|
|
1718
|
-
.edui-default .edui-cellalignpicker-body .edui-center{
|
|
1719
|
-
background-position: -25px 0;
|
|
1720
|
-
}
|
|
1721
|
-
.edui-default .edui-cellalignpicker-body .edui-right{
|
|
1722
|
-
background-position: -51px 0;
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-left{
|
|
1726
|
-
background-position: -73px 0;
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
|
-
.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-center{
|
|
1730
|
-
background-position: -98px 0;
|
|
1731
|
-
}
|
|
1732
|
-
|
|
1733
|
-
.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-right{
|
|
1734
|
-
background-position: -124px 0;
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
|
-
.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-left {
|
|
1738
|
-
background-position: -146px 0;
|
|
1739
|
-
background-color: #f1f4f5;
|
|
1740
|
-
}
|
|
1741
|
-
|
|
1742
|
-
.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-center {
|
|
1743
|
-
background-position: -245px 0;
|
|
1744
|
-
}
|
|
1745
|
-
|
|
1746
|
-
.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-right {
|
|
1747
|
-
background-position: -271px 0;
|
|
1748
|
-
}
|
|
1749
|
-
/*分隔线*/
|
|
1750
|
-
.edui-default .edui-toolbar .edui-separator {
|
|
1751
|
-
width: 2px;
|
|
1752
|
-
height: 20px;
|
|
1753
|
-
margin: 2px 4px 2px 3px;
|
|
1754
|
-
background: url(../images/icons.png) -181px 0;
|
|
1755
|
-
background: url(../images/icons.gif) -181px 0 \9;
|
|
1756
|
-
}
|
|
1757
|
-
|
|
1758
|
-
/*颜色按钮 */
|
|
1759
|
-
.edui-default .edui-toolbar .edui-colorbutton .edui-colorlump {
|
|
1760
|
-
position: absolute;
|
|
1761
|
-
overflow: hidden;
|
|
1762
|
-
bottom: 1px;
|
|
1763
|
-
left: 1px;
|
|
1764
|
-
width: 18px;
|
|
1765
|
-
height: 4px;
|
|
1766
|
-
}
|
|
1767
|
-
/*表情按钮及弹出菜单*/
|
|
1768
|
-
/*去除了表情的下拉箭头*/
|
|
1769
|
-
.edui-default .edui-for-emotion .edui-icon {
|
|
1770
|
-
background-position: -60px -20px;
|
|
1771
|
-
}
|
|
1772
|
-
.edui-default .edui-for-emotion .edui-popup-content iframe
|
|
1773
|
-
{
|
|
1774
|
-
width: 514px;
|
|
1775
|
-
height: 380px;
|
|
1776
|
-
overflow: hidden;
|
|
1777
|
-
}
|
|
1778
|
-
.edui-default .edui-for-emotion .edui-popup-content
|
|
1779
|
-
{
|
|
1780
|
-
position: relative;
|
|
1781
|
-
z-index: 555
|
|
1782
|
-
}
|
|
1783
|
-
|
|
1784
|
-
.edui-default .edui-for-emotion .edui-splitborder {
|
|
1785
|
-
display: none
|
|
1786
|
-
}
|
|
1787
|
-
|
|
1788
|
-
.edui-default .edui-for-emotion .edui-splitbutton-body .edui-arrow
|
|
1789
|
-
{
|
|
1790
|
-
width: 0
|
|
1791
|
-
}
|
|
1792
|
-
.edui-default .edui-toolbar .edui-for-emotion .edui-state-active .edui-splitborder
|
|
1793
|
-
{
|
|
1794
|
-
border-left: 1px solid transparent;
|
|
1795
|
-
}
|
|
1796
|
-
/*contextmenu*/
|
|
1797
|
-
.edui-default .edui-hassubmenu .edui-arrow {
|
|
1798
|
-
height: 20px;
|
|
1799
|
-
width: 20px;
|
|
1800
|
-
float: right;
|
|
1801
|
-
background: url("../images/icons-all.gif") no-repeat 10px -233px;
|
|
1802
|
-
}
|
|
1803
|
-
|
|
1804
|
-
.edui-default .edui-menu-body .edui-menuitem {
|
|
1805
|
-
padding: 1px;
|
|
1806
|
-
}
|
|
1807
|
-
|
|
1808
|
-
.edui-default .edui-menuseparator {
|
|
1809
|
-
margin: 2px 0;
|
|
1810
|
-
height: 1px;
|
|
1811
|
-
overflow: hidden;
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
.edui-default .edui-menuseparator-inner {
|
|
1815
|
-
border-bottom: 1px solid #e2e3e3;
|
|
1816
|
-
margin-left: 29px;
|
|
1817
|
-
margin-right: 1px;
|
|
1818
|
-
}
|
|
1819
|
-
|
|
1820
|
-
.edui-default .edui-menu-body .edui-state-hover {
|
|
1821
|
-
padding: 0 !important;
|
|
1822
|
-
background-color: #fff5d4;
|
|
1823
|
-
border: 1px solid #dcac6c;
|
|
1824
|
-
}
|
|
1825
|
-
/*弹出菜单*/
|
|
1826
|
-
.edui-default .edui-shortcutmenu {
|
|
1827
|
-
padding: 2px;
|
|
1828
|
-
width: 190px;
|
|
1829
|
-
height: 50px;
|
|
1830
|
-
background-color: #fff;
|
|
1831
|
-
border: 1px solid #ccc;
|
|
1832
|
-
border-radius: 5px;
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
/*粘贴弹出菜单*/
|
|
1836
|
-
.edui-default .edui-wordpastepop .edui-popup-content{
|
|
1837
|
-
border: none;
|
|
1838
|
-
padding: 0;
|
|
1839
|
-
width: 54px;
|
|
1840
|
-
height: 21px;
|
|
1841
|
-
}
|
|
1842
|
-
.edui-default .edui-pasteicon {
|
|
1843
|
-
width: 100%;
|
|
1844
|
-
height: 100%;
|
|
1845
|
-
background-image: url('../images/wordpaste.png');
|
|
1846
|
-
background-position: 0 0;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
.edui-default .edui-pasteicon.edui-state-opened {
|
|
1850
|
-
background-position: 0 -34px;
|
|
1851
|
-
}
|
|
1852
|
-
|
|
1853
|
-
.edui-default .edui-pastecontainer {
|
|
1854
|
-
position: relative;
|
|
1855
|
-
visibility: hidden;
|
|
1856
|
-
width: 97px;
|
|
1857
|
-
background: #fff;
|
|
1858
|
-
border: 1px solid #ccc;
|
|
1859
|
-
}
|
|
1860
|
-
|
|
1861
|
-
.edui-default .edui-pastecontainer .edui-title {
|
|
1862
|
-
font-weight: bold;
|
|
1863
|
-
background: #F8F8FF;
|
|
1864
|
-
height: 25px;
|
|
1865
|
-
line-height: 25px;
|
|
1866
|
-
font-size: 12px;
|
|
1867
|
-
padding-left: 5px;
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
.edui-default .edui-pastecontainer .edui-button {
|
|
1871
|
-
overflow: hidden;
|
|
1872
|
-
margin: 3px 0;
|
|
1873
|
-
}
|
|
1874
|
-
|
|
1875
|
-
.edui-default .edui-pastecontainer .edui-button .edui-richtxticon,
|
|
1876
|
-
.edui-default .edui-pastecontainer .edui-button .edui-tagicon,
|
|
1877
|
-
.edui-default .edui-pastecontainer .edui-button .edui-plaintxticon{
|
|
1878
|
-
float: left;
|
|
1879
|
-
cursor: pointer;
|
|
1880
|
-
width: 29px;
|
|
1881
|
-
height: 29px;
|
|
1882
|
-
margin-left: 5px;
|
|
1883
|
-
background-image: url('../images/wordpaste.png');
|
|
1884
|
-
background-repeat: no-repeat;
|
|
1885
|
-
}
|
|
1886
|
-
.edui-default .edui-pastecontainer .edui-button .edui-richtxticon {
|
|
1887
|
-
margin-left: 0;
|
|
1888
|
-
background-position: -109px 0;
|
|
1889
|
-
}
|
|
1890
|
-
.edui-default .edui-pastecontainer .edui-button .edui-tagicon {
|
|
1891
|
-
background-position: -148px 1px;
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
.edui-default .edui-pastecontainer .edui-button .edui-plaintxticon {
|
|
1895
|
-
background-position: -72px 0;
|
|
1896
|
-
}
|
|
1897
|
-
|
|
1898
|
-
.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-richtxticon {
|
|
1899
|
-
background-position: -109px -34px;
|
|
1900
|
-
}
|
|
1901
|
-
.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-tagicon{
|
|
1902
|
-
background-position: -148px -34px;
|
|
1903
|
-
}
|
|
1904
|
-
.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-plaintxticon{
|
|
1905
|
-
background-position: -72px -34px;
|
|
1
|
+
/*基础UI构建
|
|
2
|
+
*/
|
|
3
|
+
/* common layer */
|
|
4
|
+
.edui-default .edui-box {
|
|
5
|
+
border: none;
|
|
6
|
+
padding: 0;
|
|
7
|
+
margin: 0;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.edui-default a.edui-box {
|
|
12
|
+
display: block;
|
|
13
|
+
text-decoration: none;
|
|
14
|
+
color: black;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.edui-default a.edui-box:hover {
|
|
18
|
+
text-decoration: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.edui-default a.edui-box:active {
|
|
22
|
+
text-decoration: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.edui-default table.edui-box {
|
|
26
|
+
border-collapse: collapse;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.edui-default ul.edui-box {
|
|
30
|
+
list-style-type: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
div.edui-box {
|
|
34
|
+
position: relative;
|
|
35
|
+
display: -moz-inline-box !important;
|
|
36
|
+
display: inline-block !important;
|
|
37
|
+
vertical-align: top;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.edui-default .edui-clearfix {
|
|
41
|
+
zoom: 1
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.edui-default .edui-clearfix:after {
|
|
45
|
+
content: '\20';
|
|
46
|
+
display: block;
|
|
47
|
+
clear: both;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
* html div.edui-box {
|
|
51
|
+
display: inline !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
*:first-child+html div.edui-box {
|
|
55
|
+
display: inline !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* control layout */
|
|
59
|
+
.edui-default .edui-button-body, .edui-splitbutton-body, .edui-menubutton-body, .edui-combox-body {
|
|
60
|
+
position: relative;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.edui-default .edui-popup {
|
|
64
|
+
position: absolute;
|
|
65
|
+
-webkit-user-select: none;
|
|
66
|
+
-moz-user-select: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.edui-default .edui-popup .edui-shadow {
|
|
70
|
+
position: absolute;
|
|
71
|
+
z-index: -1;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.edui-default .edui-popup .edui-bordereraser {
|
|
75
|
+
position: absolute;
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.edui-default .edui-tablepicker .edui-canvas {
|
|
80
|
+
position: relative;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.edui-default .edui-tablepicker .edui-canvas .edui-overlay {
|
|
84
|
+
position: absolute;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.edui-default .edui-dialog-modalmask, .edui-dialog-dragmask {
|
|
88
|
+
position: absolute;
|
|
89
|
+
left: 0;
|
|
90
|
+
top: 0;
|
|
91
|
+
width: 100%;
|
|
92
|
+
height: 100%;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.edui-default .edui-toolbar {
|
|
96
|
+
position: relative;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/*
|
|
100
|
+
* default theme
|
|
101
|
+
*/
|
|
102
|
+
.edui-default .edui-label {
|
|
103
|
+
cursor: default;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.edui-default span.edui-clickable {
|
|
107
|
+
color: blue;
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
text-decoration: underline;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.edui-default span.edui-unclickable {
|
|
113
|
+
color: gray;
|
|
114
|
+
cursor: default;
|
|
115
|
+
}
|
|
116
|
+
/* 工具栏 */
|
|
117
|
+
.edui-default .edui-toolbar {
|
|
118
|
+
cursor: default;
|
|
119
|
+
-webkit-user-select: none;
|
|
120
|
+
-moz-user-select: none;
|
|
121
|
+
padding: 1px;
|
|
122
|
+
overflow: hidden; /*全屏下单独一行不占位*/
|
|
123
|
+
zoom: 1;
|
|
124
|
+
width:auto;
|
|
125
|
+
height:auto;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.edui-default .edui-toolbar .edui-button,
|
|
129
|
+
.edui-default .edui-toolbar .edui-splitbutton,
|
|
130
|
+
.edui-default .edui-toolbar .edui-menubutton,
|
|
131
|
+
.edui-default .edui-toolbar .edui-combox {
|
|
132
|
+
margin: 1px;
|
|
133
|
+
}
|
|
134
|
+
/*UI工具栏、编辑区域、底部*/
|
|
135
|
+
.edui-default .edui-editor {
|
|
136
|
+
border: 1px solid #d4d4d4;
|
|
137
|
+
background-color: white;
|
|
138
|
+
position: relative;
|
|
139
|
+
overflow: visible;
|
|
140
|
+
-webkit-border-radius: 4px;
|
|
141
|
+
-moz-border-radius: 4px;
|
|
142
|
+
border-radius: 4px;
|
|
143
|
+
}
|
|
144
|
+
.edui-editor div{
|
|
145
|
+
width:auto;
|
|
146
|
+
height:auto;
|
|
147
|
+
}
|
|
148
|
+
.edui-default .edui-editor-toolbarbox {
|
|
149
|
+
position: relative;
|
|
150
|
+
zoom: 1;
|
|
151
|
+
-webkit-box-shadow:0 1px 4px rgba(204, 204, 204, 0.6);
|
|
152
|
+
-moz-box-shadow:0 1px 4px rgba(204, 204, 204, 0.6);
|
|
153
|
+
box-shadow:0 1px 4px rgba(204, 204, 204, 0.6);
|
|
154
|
+
border-top-left-radius:2px;
|
|
155
|
+
border-top-right-radius:2px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.edui-default .edui-editor-toolbarboxouter {
|
|
159
|
+
border-bottom: 1px solid #d4d4d4;
|
|
160
|
+
background-color: #fafafa;
|
|
161
|
+
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
|
|
162
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
|
|
163
|
+
background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
|
|
164
|
+
background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
|
|
165
|
+
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
|
|
166
|
+
background-repeat: repeat-x;
|
|
167
|
+
/*border: 1px solid #d4d4d4;*/
|
|
168
|
+
-webkit-border-radius: 4px 4px 0 0;
|
|
169
|
+
-moz-border-radius: 4px 4px 0 0;
|
|
170
|
+
border-radius: 4px 4px 0 0;
|
|
171
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
|
|
172
|
+
*zoom: 1;
|
|
173
|
+
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
174
|
+
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
175
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.edui-default .edui-editor-toolbarboxinner {
|
|
179
|
+
padding: 2px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.edui-default .edui-editor-iframeholder {
|
|
183
|
+
position: relative;
|
|
184
|
+
/*for fix ie6 toolbarmsg under iframe bug. relative -> static */
|
|
185
|
+
/*_position: static !important;*
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.edui-default .edui-editor-iframeholder textarea {
|
|
189
|
+
font-family: consolas, "Courier New", "lucida console", monospace;
|
|
190
|
+
font-size: 12px;
|
|
191
|
+
line-height: 18px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.edui-default .edui-editor-bottombar {
|
|
195
|
+
/*border-top: 1px solid #ccc;*/
|
|
196
|
+
/*height: 20px;*/
|
|
197
|
+
/*width: 40%;*/
|
|
198
|
+
/*float: left;*/
|
|
199
|
+
/*overflow: hidden;*/
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.edui-default .edui-editor-bottomContainer {
|
|
203
|
+
overflow: hidden;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.edui-default .edui-editor-bottomContainer table {
|
|
207
|
+
width: 100%;
|
|
208
|
+
height: 0;
|
|
209
|
+
overflow: hidden;
|
|
210
|
+
border-spacing: 0;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.edui-default .edui-editor-bottomContainer td {
|
|
214
|
+
white-space: nowrap;
|
|
215
|
+
border-top: 1px solid #ccc;
|
|
216
|
+
line-height: 20px;
|
|
217
|
+
font-size: 12px;
|
|
218
|
+
font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.edui-default .edui-editor-wordcount {
|
|
222
|
+
text-align: right;
|
|
223
|
+
margin-right: 5px;
|
|
224
|
+
color: #aaa;
|
|
225
|
+
}
|
|
226
|
+
.edui-default .edui-editor-scale {
|
|
227
|
+
width: 12px;
|
|
228
|
+
}
|
|
229
|
+
.edui-default .edui-editor-scale .edui-editor-icon {
|
|
230
|
+
float: right;
|
|
231
|
+
width: 100%;
|
|
232
|
+
height: 12px;
|
|
233
|
+
margin-top: 10px;
|
|
234
|
+
background: url(../images/scale.png) no-repeat;
|
|
235
|
+
cursor: se-resize;
|
|
236
|
+
}
|
|
237
|
+
.edui-default .edui-editor-breadcrumb {
|
|
238
|
+
margin: 2px 0 0 3px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.edui-default .edui-editor-breadcrumb span {
|
|
242
|
+
cursor: pointer;
|
|
243
|
+
text-decoration: underline;
|
|
244
|
+
color: blue;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.edui-default .edui-toolbar .edui-for-fullscreen {
|
|
248
|
+
float: right;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.edui-default .edui-bubble .edui-popup-content {
|
|
252
|
+
border: 1px solid #DCAC6C;
|
|
253
|
+
background-color: #fff6d9;
|
|
254
|
+
padding: 5px;
|
|
255
|
+
font-size: 10pt;
|
|
256
|
+
font-family: "宋体";
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.edui-default .edui-bubble .edui-shadow {
|
|
260
|
+
/*box-shadow: 1px 1px 3px #818181;*/
|
|
261
|
+
/*-webkit-box-shadow: 2px 2px 3px #818181;*/
|
|
262
|
+
/*-moz-box-shadow: 2px 2px 3px #818181;*/
|
|
263
|
+
/*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius = '2', MakeShadow = 'true', ShadowOpacity = '0.5');*/
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.edui-default .edui-editor-toolbarmsg {
|
|
267
|
+
background-color: #FFF6D9;
|
|
268
|
+
border-bottom: 1px solid #ccc;
|
|
269
|
+
position: absolute;
|
|
270
|
+
bottom: -25px;
|
|
271
|
+
left: 0;
|
|
272
|
+
z-index: 1009;
|
|
273
|
+
width: 99.9%;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.edui-default .edui-editor-toolbarmsg-upload {
|
|
277
|
+
font-size: 14px;
|
|
278
|
+
color: blue;
|
|
279
|
+
width: 100px;
|
|
280
|
+
height: 16px;
|
|
281
|
+
line-height: 16px;
|
|
282
|
+
cursor: pointer;
|
|
283
|
+
position: absolute;
|
|
284
|
+
top: 5px;
|
|
285
|
+
left: 350px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.edui-default .edui-editor-toolbarmsg-label {
|
|
289
|
+
font-size: 12px;
|
|
290
|
+
line-height: 16px;
|
|
291
|
+
padding: 4px;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.edui-default .edui-editor-toolbarmsg-close {
|
|
295
|
+
float: right;
|
|
296
|
+
width: 20px;
|
|
297
|
+
height: 16px;
|
|
298
|
+
line-height: 16px;
|
|
299
|
+
cursor: pointer;
|
|
300
|
+
color: red;
|
|
301
|
+
}
|
|
302
|
+
/*可选中菜单按钮*/
|
|
303
|
+
.edui-default .edui-list .edui-bordereraser {
|
|
304
|
+
display: none;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.edui-default .edui-listitem {
|
|
308
|
+
padding: 1px;
|
|
309
|
+
white-space: nowrap;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.edui-default .edui-list .edui-state-hover {
|
|
313
|
+
position: relative;
|
|
314
|
+
background-color: #fff5d4;
|
|
315
|
+
border: 1px solid #dcac6c;
|
|
316
|
+
padding: 0;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.edui-default .edui-for-fontfamily .edui-listitem-label {
|
|
320
|
+
min-width: 130px;
|
|
321
|
+
_width: 120px;
|
|
322
|
+
font-size: 12px;
|
|
323
|
+
height: 22px;
|
|
324
|
+
line-height: 22px;
|
|
325
|
+
padding-left: 5px;
|
|
326
|
+
}
|
|
327
|
+
.edui-default .edui-for-insertcode .edui-listitem-label {
|
|
328
|
+
min-width: 120px;
|
|
329
|
+
_width: 120px;
|
|
330
|
+
font-size: 12px;
|
|
331
|
+
height: 22px;
|
|
332
|
+
line-height: 22px;
|
|
333
|
+
padding-left: 5px;
|
|
334
|
+
}
|
|
335
|
+
.edui-default .edui-for-underline .edui-listitem-label {
|
|
336
|
+
min-width: 120px;
|
|
337
|
+
_width: 120px;
|
|
338
|
+
padding: 3px 5px;
|
|
339
|
+
font-size: 12px;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.edui-default .edui-for-fontsize .edui-listitem-label {
|
|
343
|
+
min-width: 120px;
|
|
344
|
+
_width: 120px;
|
|
345
|
+
padding: 3px 5px;
|
|
346
|
+
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.edui-default .edui-for-paragraph .edui-listitem-label {
|
|
350
|
+
min-width: 200px;
|
|
351
|
+
_width: 200px;
|
|
352
|
+
padding: 2px 5px;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.edui-default .edui-for-rowspacingtop .edui-listitem-label,
|
|
356
|
+
.edui-default .edui-for-rowspacingbottom .edui-listitem-label {
|
|
357
|
+
min-width: 53px;
|
|
358
|
+
_width: 53px;
|
|
359
|
+
padding: 2px 5px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.edui-default .edui-for-lineheight .edui-listitem-label {
|
|
363
|
+
min-width: 53px;
|
|
364
|
+
_width: 53px;
|
|
365
|
+
padding: 2px 5px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.edui-default .edui-for-customstyle .edui-listitem-label {
|
|
369
|
+
min-width: 200px;
|
|
370
|
+
_width: 200px;
|
|
371
|
+
width: 200px !important;
|
|
372
|
+
padding: 2px 5px;
|
|
373
|
+
}
|
|
374
|
+
/* 可选中按钮弹出菜单*/
|
|
375
|
+
.edui-default .edui-menu {
|
|
376
|
+
z-index: 3000;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.edui-default .edui-menu .edui-popup-content {
|
|
380
|
+
padding: 3px;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.edui-default .edui-menu-body {
|
|
384
|
+
_width: 150px;
|
|
385
|
+
min-width: 170px;
|
|
386
|
+
background: url("../images/sparator_v.png") repeat-y 25px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.edui-default .edui-menuitem-body {
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.edui-default .edui-menuitem {
|
|
393
|
+
height: 20px;
|
|
394
|
+
cursor: default;
|
|
395
|
+
vertical-align: top;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.edui-default .edui-menuitem .edui-icon {
|
|
399
|
+
width: 20px !important;
|
|
400
|
+
height: 20px !important;
|
|
401
|
+
background: url(../images/icons.png) 0 -4000px;
|
|
402
|
+
background: url(../images/icons.gif) 0 -4000px\9;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.edui-default .edui-menuitem .edui-label {
|
|
406
|
+
font-size: 12px;
|
|
407
|
+
line-height: 20px;
|
|
408
|
+
height: 20px;
|
|
409
|
+
padding-left: 10px;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.edui-default .edui-state-checked .edui-menuitem-body {
|
|
413
|
+
background: url("../images/icons-all.gif") no-repeat 6px -205px;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.edui-default .edui-state-disabled .edui-menuitem-label {
|
|
417
|
+
color: gray;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
/*不可选中菜单按钮 */
|
|
422
|
+
.edui-default .edui-toolbar .edui-combox-body .edui-button-body {
|
|
423
|
+
width: 60px;
|
|
424
|
+
font-size: 12px;
|
|
425
|
+
height: 20px;
|
|
426
|
+
line-height: 20px;
|
|
427
|
+
padding-left: 5px;
|
|
428
|
+
white-space: nowrap;
|
|
429
|
+
margin: 0 3px 0 0;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
|
|
433
|
+
background: url(../images/icons.png) -741px 0;
|
|
434
|
+
_background: url(../images/icons.gif) -741px 0;
|
|
435
|
+
height: 20px;
|
|
436
|
+
width: 9px;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.edui-default .edui-toolbar .edui-combox .edui-combox-body {
|
|
440
|
+
border: 1px solid #CCC;
|
|
441
|
+
background-color: white;
|
|
442
|
+
border-radius: 2px;
|
|
443
|
+
-webkit-border-radius: 2px;
|
|
444
|
+
-moz-border-radius: 2px;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.edui-default .edui-toolbar .edui-combox-body .edui-splitborder {
|
|
448
|
+
display: none;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
|
|
452
|
+
border-left: 1px solid #CCC;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.edui-default .edui-toolbar .edui-state-hover .edui-combox-body {
|
|
456
|
+
background-color: #fff5d4;
|
|
457
|
+
border: 1px solid #dcac6c;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.edui-default .edui-toolbar .edui-state-hover .edui-combox-body .edui-arrow {
|
|
461
|
+
border-left: 1px solid #dcac6c;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.edui-default .edui-toolbar .edui-state-checked .edui-combox-body {
|
|
465
|
+
background-color: #FFE69F;
|
|
466
|
+
border: 1px solid #DCAC6C;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.edui-toolbar .edui-state-checked .edui-combox-body .edui-arrow {
|
|
470
|
+
border-left: 1px solid #DCAC6C;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.edui-toolbar .edui-state-disabled .edui-combox-body {
|
|
474
|
+
background-color: #F0F0EE;
|
|
475
|
+
opacity: 0.3;
|
|
476
|
+
filter: alpha(opacity = 30);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.edui-toolbar .edui-state-opened .edui-combox-body {
|
|
480
|
+
background-color: white;
|
|
481
|
+
border: 1px solid gray;
|
|
482
|
+
}
|
|
483
|
+
/*普通按钮样式及状态*/
|
|
484
|
+
.edui-default .edui-toolbar .edui-button .edui-icon,
|
|
485
|
+
.edui-default .edui-toolbar .edui-menubutton .edui-icon,
|
|
486
|
+
.edui-default .edui-toolbar .edui-splitbutton .edui-icon {
|
|
487
|
+
height: 20px !important;
|
|
488
|
+
width: 20px !important;
|
|
489
|
+
background-image: url(../images/icons.png);
|
|
490
|
+
background-image: url(../images/icons.gif) \9;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.edui-default .edui-toolbar .edui-button .edui-button-wrap {
|
|
494
|
+
padding: 1px;
|
|
495
|
+
position: relative;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.edui-default .edui-toolbar .edui-button .edui-state-hover .edui-button-wrap {
|
|
499
|
+
background-color: #fff5d4;
|
|
500
|
+
padding: 0;
|
|
501
|
+
border: 1px solid #dcac6c;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.edui-default .edui-toolbar .edui-button .edui-state-checked .edui-button-wrap {
|
|
505
|
+
background-color: #ffe69f;
|
|
506
|
+
padding: 0;
|
|
507
|
+
border: 1px solid #dcac6c;
|
|
508
|
+
border-radius: 2px;
|
|
509
|
+
-webkit-border-radius: 2px;
|
|
510
|
+
-moz-border-radius: 2px;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.edui-default .edui-toolbar .edui-button .edui-state-active .edui-button-wrap {
|
|
514
|
+
background-color: #ffffff;
|
|
515
|
+
padding: 0;
|
|
516
|
+
border: 1px solid gray;
|
|
517
|
+
}
|
|
518
|
+
.edui-default .edui-toolbar .edui-state-disabled .edui-label {
|
|
519
|
+
color: #ccc;
|
|
520
|
+
}
|
|
521
|
+
.edui-default .edui-toolbar .edui-state-disabled .edui-icon {
|
|
522
|
+
opacity: 0.3;
|
|
523
|
+
filter: alpha(opacity = 30);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
/* toolbar icons */
|
|
527
|
+
.edui-default .edui-for-undo .edui-icon {
|
|
528
|
+
background-position: -160px 0;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.edui-default .edui-for-redo .edui-icon {
|
|
532
|
+
background-position: -100px 0;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.edui-default .edui-for-bold .edui-icon {
|
|
536
|
+
background-position: 0 0;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.edui-default .edui-for-italic .edui-icon {
|
|
540
|
+
background-position: -60px 0;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.edui-default .edui-for-fontborder .edui-icon {
|
|
544
|
+
background-position:-160px -40px;
|
|
545
|
+
}
|
|
546
|
+
.edui-default .edui-for-underline .edui-icon {
|
|
547
|
+
background-position: -140px 0;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.edui-default .edui-for-strikethrough .edui-icon {
|
|
551
|
+
background-position: -120px 0;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.edui-default .edui-for-subscript .edui-icon {
|
|
555
|
+
background-position: -600px 0;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.edui-default .edui-for-superscript .edui-icon {
|
|
559
|
+
background-position: -620px 0;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.edui-default .edui-for-blockquote .edui-icon {
|
|
563
|
+
background-position: -220px 0;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.edui-default .edui-for-forecolor .edui-icon {
|
|
567
|
+
background-position: -720px 0;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.edui-default .edui-for-backcolor .edui-icon {
|
|
571
|
+
background-position: -760px 0;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.edui-default .edui-for-inserttable .edui-icon {
|
|
575
|
+
background-position: -580px -20px;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.edui-default .edui-for-autotypeset .edui-icon {
|
|
579
|
+
background-position: -640px -40px;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.edui-default .edui-for-justifyleft .edui-icon {
|
|
583
|
+
background-position: -460px 0;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.edui-default .edui-for-justifycenter .edui-icon {
|
|
587
|
+
background-position: -420px 0;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.edui-default .edui-for-justifyright .edui-icon {
|
|
591
|
+
background-position: -480px 0;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.edui-default .edui-for-justifyjustify .edui-icon {
|
|
595
|
+
background-position: -440px 0;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.edui-default .edui-for-insertorderedlist .edui-icon {
|
|
599
|
+
background-position: -80px 0;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.edui-default .edui-for-insertunorderedlist .edui-icon {
|
|
603
|
+
background-position: -20px 0;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.edui-default .edui-for-lineheight .edui-icon {
|
|
607
|
+
background-position: -725px -40px;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.edui-default .edui-for-rowspacingbottom .edui-icon {
|
|
611
|
+
background-position: -745px -40px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.edui-default .edui-for-rowspacingtop .edui-icon {
|
|
615
|
+
background-position: -765px -40px;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.edui-default .edui-for-horizontal .edui-icon {
|
|
619
|
+
background-position: -360px 0;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.edui-default .edui-for-link .edui-icon {
|
|
623
|
+
background-position: -500px 0;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.edui-default .edui-for-code .edui-icon {
|
|
627
|
+
background-position: -440px -40px;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.edui-default .edui-for-insertimage .edui-icon {
|
|
631
|
+
background-position: -726px -77px;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.edui-default .edui-for-insertframe .edui-icon {
|
|
635
|
+
background-position: -240px -40px;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.edui-default .edui-for-emoticon .edui-icon {
|
|
639
|
+
background-position: -60px -20px;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.edui-default .edui-for-spechars .edui-icon {
|
|
643
|
+
background-position: -240px 0;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.edui-default .edui-for-help .edui-icon {
|
|
647
|
+
background-position: -340px 0;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.edui-default .edui-for-print .edui-icon {
|
|
651
|
+
background-position: -440px -20px;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.edui-default .edui-for-preview .edui-icon {
|
|
655
|
+
background-position: -420px -20px;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.edui-default .edui-for-selectall .edui-icon {
|
|
659
|
+
background-position: -400px -20px;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.edui-default .edui-for-searchreplace .edui-icon {
|
|
663
|
+
background-position: -520px -20px;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.edui-default .edui-for-map .edui-icon {
|
|
667
|
+
background-position: -40px -40px;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.edui-default .edui-for-gmap .edui-icon {
|
|
671
|
+
background-position: -260px -40px;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.edui-default .edui-for-insertvideo .edui-icon {
|
|
675
|
+
background-position: -320px -20px;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.edui-default .edui-for-time .edui-icon {
|
|
679
|
+
background-position: -160px -20px;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.edui-default .edui-for-date .edui-icon {
|
|
683
|
+
background-position: -140px -20px;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.edui-default .edui-for-cut .edui-icon {
|
|
687
|
+
background-position: -680px 0;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.edui-default .edui-for-copy .edui-icon {
|
|
691
|
+
background-position: -700px 0;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.edui-default .edui-for-paste .edui-icon {
|
|
695
|
+
background-position: -560px 0;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.edui-default .edui-for-formatmatch .edui-icon {
|
|
699
|
+
background-position: -40px 0;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.edui-default .edui-for-pasteplain .edui-icon {
|
|
703
|
+
background-position: -360px -20px;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.edui-default .edui-for-directionalityltr .edui-icon {
|
|
707
|
+
background-position: -20px -20px;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.edui-default .edui-for-directionalityrtl .edui-icon {
|
|
711
|
+
background-position: -40px -20px;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.edui-default .edui-for-source .edui-icon {
|
|
715
|
+
background-position: -261px -0px;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.edui-default .edui-for-removeformat .edui-icon {
|
|
719
|
+
background-position: -580px 0;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.edui-default .edui-for-unlink .edui-icon {
|
|
723
|
+
background-position: -640px 0;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.edui-default .edui-for-touppercase .edui-icon {
|
|
727
|
+
background-position: -786px 0;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.edui-default .edui-for-tolowercase .edui-icon {
|
|
731
|
+
background-position: -806px 0;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.edui-default .edui-for-insertrow .edui-icon {
|
|
735
|
+
background-position: -478px -76px;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.edui-default .edui-for-insertrownext .edui-icon {
|
|
739
|
+
background-position: -498px -76px;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.edui-default .edui-for-insertcol .edui-icon {
|
|
743
|
+
background-position: -455px -76px;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.edui-default .edui-for-insertcolnext .edui-icon {
|
|
747
|
+
background-position: -429px -76px;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.edui-default .edui-for-mergeright .edui-icon {
|
|
751
|
+
background-position: -60px -40px;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.edui-default .edui-for-mergedown .edui-icon {
|
|
755
|
+
background-position: -80px -40px;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.edui-default .edui-for-splittorows .edui-icon {
|
|
759
|
+
background-position: -100px -40px;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.edui-default .edui-for-splittocols .edui-icon {
|
|
763
|
+
background-position: -120px -40px;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.edui-default .edui-for-insertparagraphbeforetable .edui-icon {
|
|
767
|
+
background-position: -140px -40px;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.edui-default .edui-for-deleterow .edui-icon {
|
|
771
|
+
background-position: -660px -20px;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.edui-default .edui-for-deletecol .edui-icon {
|
|
775
|
+
background-position: -640px -20px;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.edui-default .edui-for-splittocells .edui-icon {
|
|
779
|
+
background-position: -800px -20px;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.edui-default .edui-for-mergecells .edui-icon {
|
|
783
|
+
background-position: -760px -20px;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.edui-default .edui-for-deletetable .edui-icon {
|
|
787
|
+
background-position: -620px -20px;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.edui-default .edui-for-cleardoc .edui-icon {
|
|
791
|
+
background-position: -520px 0;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.edui-default .edui-for-fullscreen .edui-icon {
|
|
795
|
+
background-position: -100px -20px;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.edui-default .edui-for-anchor .edui-icon {
|
|
799
|
+
background-position: -200px 0;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.edui-default .edui-for-pagebreak .edui-icon {
|
|
803
|
+
background-position: -460px -40px;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.edui-default .edui-for-imagenone .edui-icon {
|
|
807
|
+
background-position: -480px -40px;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.edui-default .edui-for-imageleft .edui-icon {
|
|
811
|
+
background-position: -500px -40px;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.edui-default .edui-for-wordimage .edui-icon {
|
|
815
|
+
background-position: -660px -40px;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.edui-default .edui-for-imageright .edui-icon {
|
|
819
|
+
background-position: -520px -40px;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.edui-default .edui-for-imagecenter .edui-icon {
|
|
823
|
+
background-position: -540px -40px;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.edui-default .edui-for-indent .edui-icon {
|
|
827
|
+
background-position: -400px 0;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.edui-default .edui-for-outdent .edui-icon {
|
|
831
|
+
background-position: -540px 0;
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
.edui-default .edui-for-webapp .edui-icon {
|
|
835
|
+
background-position: -601px -40px
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.edui-default .edui-for-table .edui-icon {
|
|
839
|
+
background-position: -580px -20px;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.edui-default .edui-for-edittable .edui-icon {
|
|
843
|
+
background-position: -420px -40px;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.edui-default .edui-for-template .edui-icon {
|
|
847
|
+
background-position: -339px -40px;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.edui-default .edui-for-delete .edui-icon {
|
|
851
|
+
background-position: -360px -40px;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.edui-default .edui-for-attachment .edui-icon {
|
|
855
|
+
background-position: -620px -40px;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.edui-default .edui-for-edittd .edui-icon {
|
|
859
|
+
background-position: -700px -40px;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.edui-default .edui-for-snapscreen .edui-icon {
|
|
863
|
+
background-position: -581px -40px
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.edui-default .edui-for-scrawl .edui-icon {
|
|
867
|
+
background-position: -801px -41px
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.edui-default .edui-for-background .edui-icon {
|
|
871
|
+
background-position: -680px -40px;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.edui-default .edui-for-music .edui-icon {
|
|
875
|
+
background-position: -18px -40px
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.edui-default .edui-for-formula .edui-icon {
|
|
879
|
+
background-position: -200px -40px
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.edui-default .edui-for-aligntd .edui-icon {
|
|
883
|
+
background-position: -236px -76px;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.edui-default .edui-for-insertparagraphtrue .edui-icon {
|
|
887
|
+
background-position: -625px -76px;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.edui-default .edui-for-insertparagraph .edui-icon {
|
|
891
|
+
background-position: -602px -76px;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.edui-default .edui-for-insertcaption .edui-icon {
|
|
895
|
+
background-position: -336px -76px;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.edui-default .edui-for-deletecaption .edui-icon {
|
|
899
|
+
background-position: -362px -76px;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.edui-default .edui-for-inserttitle .edui-icon {
|
|
903
|
+
background-position: -286px -76px;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.edui-default .edui-for-deletetitle .edui-icon {
|
|
907
|
+
background-position: -311px -76px;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.edui-default .edui-for-aligntable .edui-icon {
|
|
911
|
+
background-position: -440px 0;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.edui-default .edui-for-tablealignment-left .edui-icon {
|
|
915
|
+
background-position: -460px 0;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.edui-default .edui-for-tablealignment-center .edui-icon {
|
|
919
|
+
background-position: -420px 0;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.edui-default .edui-for-tablealignment-right .edui-icon {
|
|
923
|
+
background-position: -480px 0;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.edui-default .edui-for-drafts .edui-icon {
|
|
927
|
+
background-position: -560px 0;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.edui-default .edui-for-charts .edui-icon {
|
|
931
|
+
background: url(../images/charts.png) no-repeat 2px 3px!important;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.edui-default .edui-for-inserttitlecol .edui-icon {
|
|
935
|
+
background-position: -673px -76px;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.edui-default .edui-for-deletetitlecol .edui-icon {
|
|
939
|
+
background-position: -698px -76px;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.edui-default .edui-for-simpleupload .edui-icon {
|
|
943
|
+
background-position: -380px 0px;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
/*splitbutton*/
|
|
947
|
+
.edui-default .edui-toolbar .edui-splitbutton-body .edui-arrow,
|
|
948
|
+
.edui-default .edui-toolbar .edui-menubutton-body .edui-arrow {
|
|
949
|
+
background: url(../images/icons.png) -741px 0;
|
|
950
|
+
_background: url(../images/icons.gif) -741px 0;
|
|
951
|
+
height: 20px;
|
|
952
|
+
width: 9px;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.edui-default .edui-toolbar .edui-splitbutton .edui-splitbutton-body,
|
|
956
|
+
.edui-default .edui-toolbar .edui-menubutton .edui-menubutton-body {
|
|
957
|
+
padding: 1px;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.edui-default .edui-toolbar .edui-splitborder {
|
|
961
|
+
width: 1px;
|
|
962
|
+
height: 20px;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.edui-default .edui-toolbar .edui-state-hover .edui-splitborder {
|
|
966
|
+
width: 1px;
|
|
967
|
+
border-left: 0px solid #dcac6c;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.edui-default .edui-toolbar .edui-state-active .edui-splitborder {
|
|
971
|
+
width: 0;
|
|
972
|
+
border-left: 1px solid gray;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.edui-default .edui-toolbar .edui-state-opened .edui-splitborder {
|
|
976
|
+
width: 1px;
|
|
977
|
+
border: 0;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.edui-default .edui-toolbar .edui-splitbutton .edui-state-hover .edui-splitbutton-body,
|
|
981
|
+
.edui-default .edui-toolbar .edui-menubutton .edui-state-hover .edui-menubutton-body {
|
|
982
|
+
background-color: #fff5d4;
|
|
983
|
+
border: 1px solid #dcac6c;
|
|
984
|
+
padding: 0;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.edui-default .edui-toolbar .edui-splitbutton .edui-state-checked .edui-splitbutton-body,
|
|
988
|
+
.edui-default .edui-toolbar .edui-menubutton .edui-state-checked .edui-menubutton-body {
|
|
989
|
+
background-color: #FFE69F;
|
|
990
|
+
border: 1px solid #DCAC6C;
|
|
991
|
+
padding: 0;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.edui-default .edui-toolbar .edui-splitbutton .edui-state-active .edui-splitbutton-body,
|
|
995
|
+
.edui-default .edui-toolbar .edui-menubutton .edui-state-active .edui-menubutton-body {
|
|
996
|
+
background-color: #ffffff;
|
|
997
|
+
border: 1px solid gray;
|
|
998
|
+
padding: 0;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.edui-default .edui-state-disabled .edui-arrow {
|
|
1002
|
+
opacity: 0.3;
|
|
1003
|
+
_filter: alpha(opacity = 30);
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.edui-default .edui-toolbar .edui-splitbutton .edui-state-opened .edui-splitbutton-body,
|
|
1007
|
+
.edui-default .edui-toolbar .edui-menubutton .edui-state-opened .edui-menubutton-body {
|
|
1008
|
+
background-color: white;
|
|
1009
|
+
border: 1px solid gray;
|
|
1010
|
+
padding: 0;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.edui-default .edui-for-insertorderedlist .edui-bordereraser,
|
|
1014
|
+
.edui-default .edui-for-lineheight .edui-bordereraser,
|
|
1015
|
+
.edui-default .edui-for-rowspacingtop .edui-bordereraser,
|
|
1016
|
+
.edui-default .edui-for-rowspacingbottom .edui-bordereraser,
|
|
1017
|
+
.edui-default .edui-for-insertunorderedlist .edui-bordereraser {
|
|
1018
|
+
background-color: white;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
/* 解决嵌套导致的图标问题 */
|
|
1022
|
+
.edui-default .edui-for-insertorderedlist .edui-popup-body .edui-icon,
|
|
1023
|
+
.edui-default .edui-for-lineheight .edui-popup-body .edui-icon,
|
|
1024
|
+
.edui-default .edui-for-rowspacingtop .edui-popup-body .edui-icon,
|
|
1025
|
+
.edui-default .edui-for-rowspacingbottom .edui-popup-body .edui-icon,
|
|
1026
|
+
.edui-default .edui-for-insertunorderedlist .edui-popup-body .edui-icon {
|
|
1027
|
+
/*background-position: 0 -40px;*/
|
|
1028
|
+
background-image: none ;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
/* 弹出菜单 */
|
|
1032
|
+
.edui-default .edui-popup {
|
|
1033
|
+
z-index: 3000;
|
|
1034
|
+
background-color: #ffffff;
|
|
1035
|
+
width:auto;
|
|
1036
|
+
height:auto;
|
|
1037
|
+
-webkit-border-radius: 6px;
|
|
1038
|
+
-moz-border-radius: 6px;
|
|
1039
|
+
border-radius: 6px;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.edui-default .edui-popup .edui-shadow {
|
|
1043
|
+
left: 0;
|
|
1044
|
+
top: 0;
|
|
1045
|
+
width: 100%;
|
|
1046
|
+
height: 100%;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.edui-default .edui-popup-content {
|
|
1050
|
+
border:1px solid #ccc;
|
|
1051
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1052
|
+
*border-right-width: 2px;
|
|
1053
|
+
*border-bottom-width: 2px;
|
|
1054
|
+
-webkit-border-radius: 6px;
|
|
1055
|
+
-moz-border-radius: 6px;
|
|
1056
|
+
border-radius: 6px;
|
|
1057
|
+
-webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
|
|
1058
|
+
-moz-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
|
|
1059
|
+
box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
|
|
1060
|
+
-webkit-background-clip: padding-box;
|
|
1061
|
+
-moz-background-clip: padding;
|
|
1062
|
+
background-clip: padding-box;
|
|
1063
|
+
padding: 5px;
|
|
1064
|
+
background:#ffffff;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.edui-default .edui-popup .edui-bordereraser {
|
|
1068
|
+
background-color: white;
|
|
1069
|
+
height: 3px;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.edui-default .edui-menu .edui-bordereraser {
|
|
1073
|
+
height: 3px;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.edui-default .edui-anchor-topleft .edui-bordereraser {
|
|
1077
|
+
left: 1px;
|
|
1078
|
+
top: -2px;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.edui-default .edui-anchor-topright .edui-bordereraser {
|
|
1082
|
+
right: 1px;
|
|
1083
|
+
top: -2px;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.edui-default .edui-anchor-bottomleft .edui-bordereraser {
|
|
1087
|
+
left: 0;
|
|
1088
|
+
bottom: -6px;
|
|
1089
|
+
height: 7px;
|
|
1090
|
+
border-left: 1px solid gray;
|
|
1091
|
+
border-right: 1px solid gray;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.edui-default .edui-anchor-bottomright .edui-bordereraser {
|
|
1095
|
+
right: 0;
|
|
1096
|
+
bottom: -6px;
|
|
1097
|
+
height: 7px;
|
|
1098
|
+
border-left: 1px solid gray;
|
|
1099
|
+
border-right: 1px solid gray;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.edui-popup div{
|
|
1103
|
+
width:auto;
|
|
1104
|
+
height:auto;
|
|
1105
|
+
}
|
|
1106
|
+
.edui-default .edui-editor-messageholder {
|
|
1107
|
+
display: block;
|
|
1108
|
+
width: 150px;
|
|
1109
|
+
height: auto;
|
|
1110
|
+
border: 0;
|
|
1111
|
+
margin: 0;
|
|
1112
|
+
padding: 0;
|
|
1113
|
+
position: absolute;
|
|
1114
|
+
top: 28px;
|
|
1115
|
+
right: 3px;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.edui-default .edui-message{
|
|
1119
|
+
min-height: 10px;
|
|
1120
|
+
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
|
|
1121
|
+
padding: 0;
|
|
1122
|
+
margin-bottom: 3px;
|
|
1123
|
+
position: relative;
|
|
1124
|
+
}
|
|
1125
|
+
.edui-default .edui-message-body{
|
|
1126
|
+
border-radius: 3px;
|
|
1127
|
+
padding: 8px 15px 8px 8px;
|
|
1128
|
+
color: #c09853;
|
|
1129
|
+
background-color: #fcf8e3;
|
|
1130
|
+
border: 1px solid #fbeed5;
|
|
1131
|
+
}
|
|
1132
|
+
.edui-default .edui-message-type-info{
|
|
1133
|
+
color: #3a87ad;
|
|
1134
|
+
background-color: #d9edf7;
|
|
1135
|
+
border-color: #bce8f1
|
|
1136
|
+
}
|
|
1137
|
+
.edui-default .edui-message-type-success{
|
|
1138
|
+
color: #468847;
|
|
1139
|
+
background-color: #dff0d8;
|
|
1140
|
+
border-color: #d6e9c6
|
|
1141
|
+
}
|
|
1142
|
+
.edui-default .edui-message-type-danger,
|
|
1143
|
+
.edui-default .edui-message-type-error{
|
|
1144
|
+
color: #b94a48;
|
|
1145
|
+
background-color: #f2dede;
|
|
1146
|
+
border-color: #eed3d7
|
|
1147
|
+
}
|
|
1148
|
+
.edui-default .edui-message .edui-message-closer {
|
|
1149
|
+
display: block;
|
|
1150
|
+
width: 16px;
|
|
1151
|
+
height: 16px;
|
|
1152
|
+
line-height: 16px;
|
|
1153
|
+
position: absolute;
|
|
1154
|
+
top: 0;
|
|
1155
|
+
right: 0;
|
|
1156
|
+
padding: 0;
|
|
1157
|
+
cursor: pointer;
|
|
1158
|
+
background: transparent;
|
|
1159
|
+
border: 0;
|
|
1160
|
+
float: right;
|
|
1161
|
+
font-size: 20px;
|
|
1162
|
+
font-weight: bold;
|
|
1163
|
+
color: #999;
|
|
1164
|
+
text-shadow: 0 1px 0 #fff;
|
|
1165
|
+
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
1166
|
+
}
|
|
1167
|
+
.edui-default .edui-message .edui-message-content {
|
|
1168
|
+
font-size: 10pt;
|
|
1169
|
+
word-wrap: break-word;
|
|
1170
|
+
word-break: normal;
|
|
1171
|
+
}
|
|
1172
|
+
/* 弹出对话框按钮和对话框大小 */
|
|
1173
|
+
.edui-default .edui-dialog {
|
|
1174
|
+
z-index: 2000;
|
|
1175
|
+
position: absolute;
|
|
1176
|
+
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
.edui-dialog div{
|
|
1180
|
+
width:auto;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.edui-default .edui-dialog-wrap {
|
|
1184
|
+
margin-right: 6px;
|
|
1185
|
+
margin-bottom: 6px;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.edui-default .edui-dialog-fullscreen-flag {
|
|
1189
|
+
margin-right: 0;
|
|
1190
|
+
margin-bottom: 0;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.edui-default .edui-dialog-body {
|
|
1194
|
+
position: relative;
|
|
1195
|
+
padding:2px 0 0 2px;
|
|
1196
|
+
_zoom: 1;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.edui-default .edui-dialog-fullscreen-flag .edui-dialog-body {
|
|
1200
|
+
padding: 0;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.edui-default .edui-dialog-shadow {
|
|
1204
|
+
position: absolute;
|
|
1205
|
+
z-index: -1;
|
|
1206
|
+
left: 0;
|
|
1207
|
+
top: 0;
|
|
1208
|
+
width: 100%;
|
|
1209
|
+
height: 100%;
|
|
1210
|
+
background-color: #ffffff;
|
|
1211
|
+
border: 1px solid #ccc;
|
|
1212
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1213
|
+
*border-right-width: 2px;
|
|
1214
|
+
*border-bottom-width: 2px;
|
|
1215
|
+
-webkit-border-radius: 6px;
|
|
1216
|
+
-moz-border-radius: 6px;
|
|
1217
|
+
border-radius: 6px;
|
|
1218
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1219
|
+
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1220
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1221
|
+
-webkit-background-clip: padding-box;
|
|
1222
|
+
-moz-background-clip: padding;
|
|
1223
|
+
background-clip: padding-box;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.edui-default .edui-dialog-foot {
|
|
1227
|
+
background-color: white;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.edui-default .edui-dialog-titlebar {
|
|
1231
|
+
height: 26px;
|
|
1232
|
+
border-bottom: 1px solid #c6c6c6;
|
|
1233
|
+
background: url(../images/dialog-title-bg.png) repeat-x bottom;
|
|
1234
|
+
position: relative;
|
|
1235
|
+
cursor: move;
|
|
1236
|
+
}
|
|
1237
|
+
.edui-default .edui-dialog-caption {
|
|
1238
|
+
font-weight: bold;
|
|
1239
|
+
font-size: 12px;
|
|
1240
|
+
line-height: 26px;
|
|
1241
|
+
padding-left: 5px;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.edui-default .edui-dialog-draghandle {
|
|
1245
|
+
height: 26px;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.edui-default .edui-dialog-closebutton {
|
|
1249
|
+
position: absolute !important;
|
|
1250
|
+
right: 5px;
|
|
1251
|
+
top: 3px;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.edui-default .edui-dialog-closebutton .edui-button-body {
|
|
1255
|
+
height: 20px;
|
|
1256
|
+
width: 20px;
|
|
1257
|
+
cursor: pointer;
|
|
1258
|
+
background: url("../images/icons-all.gif") no-repeat 0 -59px;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.edui-default .edui-dialog-closebutton .edui-state-hover .edui-button-body {
|
|
1262
|
+
background: url("../images/icons-all.gif") no-repeat 0 -89px;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.edui-default .edui-dialog-foot {
|
|
1266
|
+
height: 40px;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.edui-default .edui-dialog-buttons {
|
|
1270
|
+
position: absolute;
|
|
1271
|
+
right: 0;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.edui-default .edui-dialog-buttons .edui-button {
|
|
1275
|
+
margin-right: 10px;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.edui-default .edui-dialog-buttons .edui-button .edui-button-body {
|
|
1279
|
+
background: url("../images/icons-all.gif") no-repeat;
|
|
1280
|
+
height: 24px;
|
|
1281
|
+
width: 96px;
|
|
1282
|
+
font-size: 12px;
|
|
1283
|
+
line-height: 24px;
|
|
1284
|
+
text-align: center;
|
|
1285
|
+
cursor: default;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
.edui-default .edui-dialog-buttons .edui-button .edui-state-hover .edui-button-body {
|
|
1289
|
+
background: url("../images/icons-all.gif") no-repeat 0 -30px;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.edui-default .edui-dialog iframe {
|
|
1293
|
+
border: 0;
|
|
1294
|
+
padding: 0;
|
|
1295
|
+
margin: 0;
|
|
1296
|
+
vertical-align: top;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.edui-default .edui-dialog-modalmask {
|
|
1300
|
+
opacity: 0.3;
|
|
1301
|
+
filter: alpha(opacity = 30);
|
|
1302
|
+
background-color: #ccc;
|
|
1303
|
+
position: absolute;
|
|
1304
|
+
/*z-index: 1999;*/
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.edui-default .edui-dialog-dragmask {
|
|
1308
|
+
position: absolute;
|
|
1309
|
+
/*z-index: 2001;*/
|
|
1310
|
+
background-color: transparent;
|
|
1311
|
+
cursor: move;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.edui-default .edui-dialog-content {
|
|
1315
|
+
position: relative;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.edui-default .dialogcontmask {
|
|
1319
|
+
cursor: move;
|
|
1320
|
+
visibility: hidden;
|
|
1321
|
+
display: block;
|
|
1322
|
+
position: absolute;
|
|
1323
|
+
width: 100%;
|
|
1324
|
+
height: 100%;
|
|
1325
|
+
opacity: 0;
|
|
1326
|
+
filter: alpha(opacity = 0);
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
/*link-dialog*/
|
|
1330
|
+
.edui-default .edui-for-link .edui-dialog-content {
|
|
1331
|
+
width: 420px;
|
|
1332
|
+
height: 200px;
|
|
1333
|
+
overflow: hidden;
|
|
1334
|
+
}
|
|
1335
|
+
/*background-dialog*/
|
|
1336
|
+
.edui-default .edui-for-background .edui-dialog-content {
|
|
1337
|
+
width: 440px;
|
|
1338
|
+
height: 280px;
|
|
1339
|
+
overflow: hidden;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
/*template-dialog*/
|
|
1343
|
+
.edui-default .edui-for-template .edui-dialog-content {
|
|
1344
|
+
width: 630px;
|
|
1345
|
+
height: 390px;
|
|
1346
|
+
overflow: hidden;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
/*scrawl-dialog*/
|
|
1350
|
+
.edui-default .edui-for-scrawl .edui-dialog-content {
|
|
1351
|
+
width: 515px;
|
|
1352
|
+
*width: 506px;
|
|
1353
|
+
height: 360px;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
/*spechars-dialog*/
|
|
1357
|
+
.edui-default .edui-for-spechars .edui-dialog-content {
|
|
1358
|
+
width: 620px;
|
|
1359
|
+
height: 500px;
|
|
1360
|
+
*width: 630px;
|
|
1361
|
+
*height: 570px;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
/*image-dialog*/
|
|
1365
|
+
.edui-default .edui-for-insertimage .edui-dialog-content {
|
|
1366
|
+
width: 650px;
|
|
1367
|
+
height: 400px;
|
|
1368
|
+
overflow: hidden;
|
|
1369
|
+
}
|
|
1370
|
+
/*webapp-dialog*/
|
|
1371
|
+
.edui-default .edui-for-webapp .edui-dialog-content {
|
|
1372
|
+
width: 560px;
|
|
1373
|
+
_width: 565px;
|
|
1374
|
+
height: 450px;
|
|
1375
|
+
overflow: hidden;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
/*image-insertframe*/
|
|
1379
|
+
.edui-default .edui-for-insertframe .edui-dialog-content {
|
|
1380
|
+
width: 350px;
|
|
1381
|
+
height: 200px;
|
|
1382
|
+
overflow: hidden;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
/*wordImage-dialog*/
|
|
1386
|
+
.edui-default .edui-for-wordimage .edui-dialog-content {
|
|
1387
|
+
width: 620px;
|
|
1388
|
+
height: 380px;
|
|
1389
|
+
overflow: hidden;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
/*attachment-dialog*/
|
|
1393
|
+
.edui-default .edui-for-attachment .edui-dialog-content {
|
|
1394
|
+
width: 650px;
|
|
1395
|
+
height: 400px;
|
|
1396
|
+
overflow: hidden;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
|
|
1400
|
+
/*map-dialog*/
|
|
1401
|
+
.edui-default .edui-for-map .edui-dialog-content {
|
|
1402
|
+
width: 550px;
|
|
1403
|
+
height: 400px;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
/*gmap-dialog*/
|
|
1407
|
+
.edui-default .edui-for-gmap .edui-dialog-content {
|
|
1408
|
+
width: 550px;
|
|
1409
|
+
height: 400px;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
/*video-dialog*/
|
|
1413
|
+
.edui-default .edui-for-insertvideo .edui-dialog-content {
|
|
1414
|
+
width: 590px;
|
|
1415
|
+
height: 390px;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
/*anchor-dialog*/
|
|
1419
|
+
.edui-default .edui-for-anchor .edui-dialog-content {
|
|
1420
|
+
width: 320px;
|
|
1421
|
+
height: 60px;
|
|
1422
|
+
overflow: hidden;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
/*searchreplace-dialog*/
|
|
1426
|
+
.edui-default .edui-for-searchreplace .edui-dialog-content {
|
|
1427
|
+
width: 400px;
|
|
1428
|
+
height: 220px;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
/*help-dialog*/
|
|
1432
|
+
.edui-default .edui-for-help .edui-dialog-content {
|
|
1433
|
+
width: 400px;
|
|
1434
|
+
height: 420px;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
/*edittable-dialog*/
|
|
1438
|
+
.edui-default .edui-for-edittable .edui-dialog-content {
|
|
1439
|
+
width: 540px;
|
|
1440
|
+
_width:590px;
|
|
1441
|
+
height: 335px;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
/*edittip-dialog*/
|
|
1445
|
+
.edui-default .edui-for-edittip .edui-dialog-content {
|
|
1446
|
+
width: 225px;
|
|
1447
|
+
height: 60px;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
/*edittd-dialog*/
|
|
1451
|
+
.edui-default .edui-for-edittd .edui-dialog-content {
|
|
1452
|
+
width: 240px;
|
|
1453
|
+
height: 50px;
|
|
1454
|
+
}
|
|
1455
|
+
/*snapscreen-dialog*/
|
|
1456
|
+
.edui-default .edui-for-snapscreen .edui-dialog-content {
|
|
1457
|
+
width: 400px;
|
|
1458
|
+
height: 220px;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
/*music-dialog*/
|
|
1462
|
+
.edui-default .edui-for-music .edui-dialog-content {
|
|
1463
|
+
width: 515px;
|
|
1464
|
+
height: 360px;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
/*段落弹出菜单*/
|
|
1468
|
+
.edui-default .edui-for-paragraph .edui-listitem-label {
|
|
1469
|
+
font-family: Tahoma, Verdana, Arial, Helvetica;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-p {
|
|
1473
|
+
font-size: 22px;
|
|
1474
|
+
line-height: 27px;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h1 {
|
|
1478
|
+
font-weight: bolder;
|
|
1479
|
+
font-size: 32px;
|
|
1480
|
+
line-height: 36px;
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h2 {
|
|
1484
|
+
font-weight: bolder;
|
|
1485
|
+
font-size: 27px;
|
|
1486
|
+
line-height: 29px;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h3 {
|
|
1490
|
+
font-weight: bolder;
|
|
1491
|
+
font-size: 19px;
|
|
1492
|
+
line-height: 23px;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h4 {
|
|
1496
|
+
font-weight: bolder;
|
|
1497
|
+
font-size: 16px;
|
|
1498
|
+
line-height: 19px
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h5 {
|
|
1502
|
+
font-weight: bolder;
|
|
1503
|
+
font-size: 13px;
|
|
1504
|
+
line-height: 16px;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h6 {
|
|
1508
|
+
font-weight: bolder;
|
|
1509
|
+
font-size: 12px;
|
|
1510
|
+
line-height: 14px;
|
|
1511
|
+
}
|
|
1512
|
+
/* 表格弹出菜单 */
|
|
1513
|
+
.edui-default .edui-for-inserttable .edui-splitborder {
|
|
1514
|
+
display: none
|
|
1515
|
+
}
|
|
1516
|
+
.edui-default .edui-for-inserttable .edui-splitbutton-body .edui-arrow {
|
|
1517
|
+
width: 0
|
|
1518
|
+
}
|
|
1519
|
+
.edui-default .edui-toolbar .edui-for-inserttable .edui-state-active .edui-splitborder{
|
|
1520
|
+
border-left: 1px solid transparent;
|
|
1521
|
+
}
|
|
1522
|
+
.edui-default .edui-tablepicker .edui-infoarea {
|
|
1523
|
+
height: 14px;
|
|
1524
|
+
line-height: 14px;
|
|
1525
|
+
font-size: 12px;
|
|
1526
|
+
width: 220px;
|
|
1527
|
+
margin-bottom: 3px;
|
|
1528
|
+
clear: both;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
.edui-default .edui-tablepicker .edui-infoarea .edui-label {
|
|
1532
|
+
float: left;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
.edui-default .edui-dialog-buttons .edui-label {
|
|
1536
|
+
line-height: 24px;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.edui-default .edui-tablepicker .edui-infoarea .edui-clickable {
|
|
1540
|
+
float: right;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
.edui-default .edui-tablepicker .edui-pickarea {
|
|
1544
|
+
background: url("../images/unhighlighted.gif") repeat;
|
|
1545
|
+
height: 220px;
|
|
1546
|
+
width: 220px;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.edui-default .edui-tablepicker .edui-pickarea .edui-overlay {
|
|
1550
|
+
background: url("../images/highlighted.gif") repeat;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
/* 颜色弹出菜单 */
|
|
1554
|
+
.edui-default .edui-colorpicker-topbar {
|
|
1555
|
+
height: 27px;
|
|
1556
|
+
width: 200px;
|
|
1557
|
+
/*border-bottom: 1px gray dashed;*/
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
.edui-default .edui-colorpicker-preview {
|
|
1561
|
+
height: 20px;
|
|
1562
|
+
border: 1px inset black;
|
|
1563
|
+
margin-left: 1px;
|
|
1564
|
+
width: 128px;
|
|
1565
|
+
float: left;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.edui-default .edui-colorpicker-nocolor {
|
|
1569
|
+
float: right;
|
|
1570
|
+
margin-right: 1px;
|
|
1571
|
+
font-size: 12px;
|
|
1572
|
+
line-height: 14px;
|
|
1573
|
+
height: 14px;
|
|
1574
|
+
border: 1px solid #333;
|
|
1575
|
+
padding: 3px 5px;
|
|
1576
|
+
cursor: pointer;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.edui-default .edui-colorpicker-tablefirstrow {
|
|
1580
|
+
height: 30px;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.edui-default .edui-colorpicker-colorcell {
|
|
1584
|
+
width: 14px;
|
|
1585
|
+
height: 14px;
|
|
1586
|
+
display: block;
|
|
1587
|
+
margin: 0;
|
|
1588
|
+
cursor: pointer;
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.edui-default .edui-colorpicker-colorcell:hover {
|
|
1592
|
+
width: 14px;
|
|
1593
|
+
height: 14px;
|
|
1594
|
+
margin: 0;
|
|
1595
|
+
}
|
|
1596
|
+
.edui-default .edui-colorpicker-advbtn{
|
|
1597
|
+
display: block;
|
|
1598
|
+
text-align: center;
|
|
1599
|
+
cursor: pointer;
|
|
1600
|
+
height:20px;
|
|
1601
|
+
}
|
|
1602
|
+
.arrow_down{
|
|
1603
|
+
background: white url('../images/arrow_down.png') no-repeat center;
|
|
1604
|
+
}
|
|
1605
|
+
.arrow_up{
|
|
1606
|
+
background: white url('../images/arrow_up.png') no-repeat center;
|
|
1607
|
+
}
|
|
1608
|
+
/*高级的样式*/
|
|
1609
|
+
.edui-colorpicker-adv{
|
|
1610
|
+
position: relative;
|
|
1611
|
+
overflow: hidden;
|
|
1612
|
+
height: 180px;
|
|
1613
|
+
display: none;
|
|
1614
|
+
}
|
|
1615
|
+
.edui-colorpicker-plant, .edui-colorpicker-hue {
|
|
1616
|
+
border: solid 1px #666;
|
|
1617
|
+
}
|
|
1618
|
+
.edui-colorpicker-pad {
|
|
1619
|
+
width: 150px;
|
|
1620
|
+
height: 150px;
|
|
1621
|
+
left: 14px;
|
|
1622
|
+
top: 13px;
|
|
1623
|
+
position: absolute;
|
|
1624
|
+
background: red;
|
|
1625
|
+
overflow: hidden;
|
|
1626
|
+
cursor: crosshair;
|
|
1627
|
+
}
|
|
1628
|
+
.edui-colorpicker-cover{
|
|
1629
|
+
position: absolute;
|
|
1630
|
+
top: 0;
|
|
1631
|
+
left: 0;
|
|
1632
|
+
width: 150px;
|
|
1633
|
+
height: 150px;
|
|
1634
|
+
background: url("../images/tangram-colorpicker.png") -160px -200px;
|
|
1635
|
+
}
|
|
1636
|
+
.edui-colorpicker-padDot{
|
|
1637
|
+
position: absolute;
|
|
1638
|
+
top: 0;
|
|
1639
|
+
left: 0;
|
|
1640
|
+
width: 11px;
|
|
1641
|
+
height: 11px;
|
|
1642
|
+
overflow: hidden;
|
|
1643
|
+
background: url(../images/tangram-colorpicker.png) 0px -200px repeat-x;
|
|
1644
|
+
z-index: 1000;
|
|
1645
|
+
|
|
1646
|
+
}
|
|
1647
|
+
.edui-colorpicker-sliderMain {
|
|
1648
|
+
position: absolute;
|
|
1649
|
+
left: 171px;
|
|
1650
|
+
top: 13px;
|
|
1651
|
+
width: 19px;
|
|
1652
|
+
height: 152px;
|
|
1653
|
+
background: url(../images/tangram-colorpicker.png) -179px -12px no-repeat;
|
|
1654
|
+
|
|
1655
|
+
}
|
|
1656
|
+
.edui-colorpicker-slider {
|
|
1657
|
+
width: 100%;
|
|
1658
|
+
height: 100%;
|
|
1659
|
+
cursor: pointer;
|
|
1660
|
+
}
|
|
1661
|
+
.edui-colorpicker-thumb{
|
|
1662
|
+
position: absolute;
|
|
1663
|
+
top: 0;
|
|
1664
|
+
cursor: pointer;
|
|
1665
|
+
height: 3px;
|
|
1666
|
+
left: -1px;
|
|
1667
|
+
right: -1px;
|
|
1668
|
+
border: 1px solid black;
|
|
1669
|
+
background: white;
|
|
1670
|
+
opacity: .8;
|
|
1671
|
+
}
|
|
1672
|
+
/*自动排版弹出菜单*/
|
|
1673
|
+
.edui-default .edui-autotypesetpicker .edui-autotypesetpicker-body {
|
|
1674
|
+
font-size: 12px;
|
|
1675
|
+
margin-bottom: 3px;
|
|
1676
|
+
clear: both;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
.edui-default .edui-autotypesetpicker-body table {
|
|
1680
|
+
border-collapse: separate;
|
|
1681
|
+
border-spacing: 2px;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.edui-default .edui-autotypesetpicker-body td {
|
|
1685
|
+
font-size: 12px;
|
|
1686
|
+
word-wrap:break-word;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.edui-default .edui-autotypesetpicker-body td input {
|
|
1690
|
+
margin: 3px 3px 3px 4px;
|
|
1691
|
+
*margin: 1px 0 0 0;
|
|
1692
|
+
}
|
|
1693
|
+
/*自动排版弹出菜单*/
|
|
1694
|
+
.edui-default .edui-cellalignpicker .edui-cellalignpicker-body {
|
|
1695
|
+
width: 70px;
|
|
1696
|
+
font-size: 12px;
|
|
1697
|
+
cursor: default;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.edui-default .edui-cellalignpicker-body table {
|
|
1701
|
+
border-collapse: separate;
|
|
1702
|
+
border-spacing: 0;
|
|
1703
|
+
}
|
|
1704
|
+
.edui-default .edui-cellalignpicker-body td{
|
|
1705
|
+
padding: 1px;
|
|
1706
|
+
}
|
|
1707
|
+
.edui-default .edui-cellalignpicker-body .edui-icon{
|
|
1708
|
+
height: 20px;
|
|
1709
|
+
width: 20px;
|
|
1710
|
+
padding: 1px;
|
|
1711
|
+
background-image: url(../images/table-cell-align.png);
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.edui-default .edui-cellalignpicker-body .edui-left{
|
|
1715
|
+
background-position: 0 0;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.edui-default .edui-cellalignpicker-body .edui-center{
|
|
1719
|
+
background-position: -25px 0;
|
|
1720
|
+
}
|
|
1721
|
+
.edui-default .edui-cellalignpicker-body .edui-right{
|
|
1722
|
+
background-position: -51px 0;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-left{
|
|
1726
|
+
background-position: -73px 0;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-center{
|
|
1730
|
+
background-position: -98px 0;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-right{
|
|
1734
|
+
background-position: -124px 0;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-left {
|
|
1738
|
+
background-position: -146px 0;
|
|
1739
|
+
background-color: #f1f4f5;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-center {
|
|
1743
|
+
background-position: -245px 0;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-right {
|
|
1747
|
+
background-position: -271px 0;
|
|
1748
|
+
}
|
|
1749
|
+
/*分隔线*/
|
|
1750
|
+
.edui-default .edui-toolbar .edui-separator {
|
|
1751
|
+
width: 2px;
|
|
1752
|
+
height: 20px;
|
|
1753
|
+
margin: 2px 4px 2px 3px;
|
|
1754
|
+
background: url(../images/icons.png) -181px 0;
|
|
1755
|
+
background: url(../images/icons.gif) -181px 0 \9;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
/*颜色按钮 */
|
|
1759
|
+
.edui-default .edui-toolbar .edui-colorbutton .edui-colorlump {
|
|
1760
|
+
position: absolute;
|
|
1761
|
+
overflow: hidden;
|
|
1762
|
+
bottom: 1px;
|
|
1763
|
+
left: 1px;
|
|
1764
|
+
width: 18px;
|
|
1765
|
+
height: 4px;
|
|
1766
|
+
}
|
|
1767
|
+
/*表情按钮及弹出菜单*/
|
|
1768
|
+
/*去除了表情的下拉箭头*/
|
|
1769
|
+
.edui-default .edui-for-emotion .edui-icon {
|
|
1770
|
+
background-position: -60px -20px;
|
|
1771
|
+
}
|
|
1772
|
+
.edui-default .edui-for-emotion .edui-popup-content iframe
|
|
1773
|
+
{
|
|
1774
|
+
width: 514px;
|
|
1775
|
+
height: 380px;
|
|
1776
|
+
overflow: hidden;
|
|
1777
|
+
}
|
|
1778
|
+
.edui-default .edui-for-emotion .edui-popup-content
|
|
1779
|
+
{
|
|
1780
|
+
position: relative;
|
|
1781
|
+
z-index: 555
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
.edui-default .edui-for-emotion .edui-splitborder {
|
|
1785
|
+
display: none
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.edui-default .edui-for-emotion .edui-splitbutton-body .edui-arrow
|
|
1789
|
+
{
|
|
1790
|
+
width: 0
|
|
1791
|
+
}
|
|
1792
|
+
.edui-default .edui-toolbar .edui-for-emotion .edui-state-active .edui-splitborder
|
|
1793
|
+
{
|
|
1794
|
+
border-left: 1px solid transparent;
|
|
1795
|
+
}
|
|
1796
|
+
/*contextmenu*/
|
|
1797
|
+
.edui-default .edui-hassubmenu .edui-arrow {
|
|
1798
|
+
height: 20px;
|
|
1799
|
+
width: 20px;
|
|
1800
|
+
float: right;
|
|
1801
|
+
background: url("../images/icons-all.gif") no-repeat 10px -233px;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.edui-default .edui-menu-body .edui-menuitem {
|
|
1805
|
+
padding: 1px;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.edui-default .edui-menuseparator {
|
|
1809
|
+
margin: 2px 0;
|
|
1810
|
+
height: 1px;
|
|
1811
|
+
overflow: hidden;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.edui-default .edui-menuseparator-inner {
|
|
1815
|
+
border-bottom: 1px solid #e2e3e3;
|
|
1816
|
+
margin-left: 29px;
|
|
1817
|
+
margin-right: 1px;
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.edui-default .edui-menu-body .edui-state-hover {
|
|
1821
|
+
padding: 0 !important;
|
|
1822
|
+
background-color: #fff5d4;
|
|
1823
|
+
border: 1px solid #dcac6c;
|
|
1824
|
+
}
|
|
1825
|
+
/*弹出菜单*/
|
|
1826
|
+
.edui-default .edui-shortcutmenu {
|
|
1827
|
+
padding: 2px;
|
|
1828
|
+
width: 190px;
|
|
1829
|
+
height: 50px;
|
|
1830
|
+
background-color: #fff;
|
|
1831
|
+
border: 1px solid #ccc;
|
|
1832
|
+
border-radius: 5px;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
/*粘贴弹出菜单*/
|
|
1836
|
+
.edui-default .edui-wordpastepop .edui-popup-content{
|
|
1837
|
+
border: none;
|
|
1838
|
+
padding: 0;
|
|
1839
|
+
width: 54px;
|
|
1840
|
+
height: 21px;
|
|
1841
|
+
}
|
|
1842
|
+
.edui-default .edui-pasteicon {
|
|
1843
|
+
width: 100%;
|
|
1844
|
+
height: 100%;
|
|
1845
|
+
background-image: url('../images/wordpaste.png');
|
|
1846
|
+
background-position: 0 0;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.edui-default .edui-pasteicon.edui-state-opened {
|
|
1850
|
+
background-position: 0 -34px;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.edui-default .edui-pastecontainer {
|
|
1854
|
+
position: relative;
|
|
1855
|
+
visibility: hidden;
|
|
1856
|
+
width: 97px;
|
|
1857
|
+
background: #fff;
|
|
1858
|
+
border: 1px solid #ccc;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.edui-default .edui-pastecontainer .edui-title {
|
|
1862
|
+
font-weight: bold;
|
|
1863
|
+
background: #F8F8FF;
|
|
1864
|
+
height: 25px;
|
|
1865
|
+
line-height: 25px;
|
|
1866
|
+
font-size: 12px;
|
|
1867
|
+
padding-left: 5px;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.edui-default .edui-pastecontainer .edui-button {
|
|
1871
|
+
overflow: hidden;
|
|
1872
|
+
margin: 3px 0;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.edui-default .edui-pastecontainer .edui-button .edui-richtxticon,
|
|
1876
|
+
.edui-default .edui-pastecontainer .edui-button .edui-tagicon,
|
|
1877
|
+
.edui-default .edui-pastecontainer .edui-button .edui-plaintxticon{
|
|
1878
|
+
float: left;
|
|
1879
|
+
cursor: pointer;
|
|
1880
|
+
width: 29px;
|
|
1881
|
+
height: 29px;
|
|
1882
|
+
margin-left: 5px;
|
|
1883
|
+
background-image: url('../images/wordpaste.png');
|
|
1884
|
+
background-repeat: no-repeat;
|
|
1885
|
+
}
|
|
1886
|
+
.edui-default .edui-pastecontainer .edui-button .edui-richtxticon {
|
|
1887
|
+
margin-left: 0;
|
|
1888
|
+
background-position: -109px 0;
|
|
1889
|
+
}
|
|
1890
|
+
.edui-default .edui-pastecontainer .edui-button .edui-tagicon {
|
|
1891
|
+
background-position: -148px 1px;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.edui-default .edui-pastecontainer .edui-button .edui-plaintxticon {
|
|
1895
|
+
background-position: -72px 0;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-richtxticon {
|
|
1899
|
+
background-position: -109px -34px;
|
|
1900
|
+
}
|
|
1901
|
+
.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-tagicon{
|
|
1902
|
+
background-position: -148px -34px;
|
|
1903
|
+
}
|
|
1904
|
+
.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-plaintxticon{
|
|
1905
|
+
background-position: -72px -34px;
|
|
1906
1906
|
}
|