-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor.css
129 lines (106 loc) · 2.33 KB
/
editor.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#wys-embedded-editor {
border: none; width: 100%; height: 100%;
}
#wys-editor-container {
position: fixed;
top: 0; right: 0;
width: 0;
z-index: 99999980;
}
.editor-actions-wrapper {
width: 38px; float: right;
background: #fff;
border-color: #ddd;
border-style: solid;
border-width: 0px 0px 1px 1px;
}
#wys-editor-trigger {
float: right;
position: absolute;
top: 0; right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 20px 20px 0;
border-color: transparent #007bff transparent transparent;
opacity: 0.5;
z-index: 99999982;
}
#wys-editor-toolbar {
float: right;
position: absolute;
top: 0; right: 0;
width: 0;
overflow: hidden;
z-index: 99999981;
}
#wys-editor-toolbar .editor-actions {
padding: 10px 0 0 0;
width: 22px;
margin: 0 auto;
}
#wys-editor-toolbar a {
margin: 8px 0 ;
display: block;
}
#wys-editor-toolbar a i {
font-size: 22px;
}
#wys-editor-toolbar hr {
margin: 15px 0 5px 0;
}
#wys-cms-shortcuts-wrapper {
position: absolute;
top: 0; left: 0;
border-color: #ddd;
background-color: #fff;
border-style: solid;
border-width: 1px 0px 1px 1px;
padding: 0 10px;
}
#wys-cms-shortcuts-wrapper a {
white-space: nowrap;
}
.editable.edit-mode-on {
outline: 2px dashed #ddd;
}
.editable.inline,
.editable.inline:focus {
display: inline-block;
}
.wys-quick-edit-area-example {
outline: 2px dashed #ddd;
}
.wys-quick-edit-area-example .editor {
width: 100%;
margin-top: 10px;
padding: 5px;
}
.popover.tour { max-width: 450px; }
.popover.tour h3,
.popover.tour div { font-family: sans-serif; }
.loader-wrapper .loading {
width: 160px;
height: 50px;
margin: 0px auto;
overflow: hidden;
}
.loader-wrapper .error,
.loader-wrapper .success {
display: none;
text-align: center;
padding-bottom: 10px;
}
.loader-wrapper .error { color: #a30000; }
.loader-wrapper .success { color: #00a31b; }
.loader-text {
float: left;
margin-top: 7px;
}
/* customize vex */
.vex.cms-in-modal.vex-theme-top .vex-content { width: 90%; height: 90%; }
.vex.cms-in-modal.vex-theme-top .vex-dialog-form,
.vex.cms-in-modal.vex-theme-top .vex-dialog-input { height: 100%; }
.vex .vex-dialog-buttons { display: none; }
.vex.xhr-loader.vex-theme-top .vex-content { width: 350px; padding: 0.5em; }
.vex.xhr-loader.vex-theme-top .vex-dialog-input { margin-bottom: 0; }