Revision 8d67627b
Von Sven Schöling vor etwa 7 Jahren hinzugefügt
css/kivitendo/main.css | ||
---|---|---|
21 | 21 |
/* Input elements */ |
22 | 22 |
input, |
23 | 23 |
textarea, |
24 |
select { |
|
24 |
select, |
|
25 |
div.cke_textarea_inline { |
|
25 | 26 |
-moz-border-radius: 0; |
26 | 27 |
-webkit-border-radius: 0; |
27 | 28 |
-khtml-border-radius: 0; |
... | ... | |
50 | 51 |
|
51 | 52 |
input:focus, |
52 | 53 |
textarea:focus, |
53 |
select:focus { |
|
54 |
select:focus, |
|
55 |
div.cke_textarea_inline:focus { |
|
54 | 56 |
background-color: #ffffa0; |
55 | 57 |
border: 1px solid #fe5f14; |
56 | 58 |
} |
... | ... | |
583 | 585 |
body > div.admin { |
584 | 586 |
padding-top: 24px; |
585 | 587 |
} |
588 |
|
|
589 |
/* cke editor */ |
|
590 |
.cke_top { |
|
591 |
padding: 0 !important; |
|
592 |
} |
|
593 |
.cke_toolgroup { |
|
594 |
margin-bottom: 0 !important; |
|
595 |
margin-top: 0 !important; |
|
596 |
} |
|
597 |
.cke_button { |
|
598 |
padding: 0px; 6px !important; |
|
599 |
} |
css/lx-office-erp/main.css | ||
---|---|---|
10 | 10 |
text-decoration: none; |
11 | 11 |
} |
12 | 12 |
|
13 |
input, textarea, select { |
|
13 |
input, textarea, select, div.cke_textarea_inline {
|
|
14 | 14 |
border: 1px; |
15 | 15 |
border-color: darkgray lightgray lightgray; |
16 | 16 |
border-style: solid; |
... | ... | |
27 | 27 |
padding: 0 14px 0 0; |
28 | 28 |
} |
29 | 29 |
|
30 |
input:focus, textarea:focus, select:focus { |
|
30 |
input:focus, textarea:focus, select:focus, div.cke_textarea_inline:focus {
|
|
31 | 31 |
background-color: whitesmoke; |
32 | 32 |
border: 1px; |
33 | 33 |
border-color: gray lightgray lightgray; |
34 | 34 |
border-style: solid; |
35 | 35 |
} |
36 | 36 |
|
37 |
input:hover, textarea:hover, select:hover { |
|
37 |
input:hover, textarea:hover, select:hover, div.cke_textarea_inline:hover {
|
|
38 | 38 |
border-color: dimgray darkgray darkgray; |
39 | 39 |
} |
40 | 40 |
|
... | ... | |
587 | 587 |
div.layout-actionbar .layout-actionbar-default-action { |
588 | 588 |
font-weight: bold; |
589 | 589 |
} |
590 |
|
|
591 |
/* cke editor */ |
|
592 |
.cke_top { |
|
593 |
padding: 0 !important; |
|
594 |
} |
|
595 |
.cke_toolgroup { |
|
596 |
margin-bottom: 0 !important; |
|
597 |
margin-top: 0 !important; |
|
598 |
} |
|
599 |
.cke_button { |
|
600 |
padding: 0px; 6px !important; |
|
601 |
} |
Auch abrufbar als: Unified diff
CKEditor: Styleanpassungen für kivi Integration
- <textarea> Rahmen, hover, active Effekte auch für den Inline Editor
- padding in der Toolbar reduziert, so dass das bei normalem Spacing
so groß ist wie das Element dadrüber. Ähnlich dem inline button
Styling.